admin.scss 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583
  1. @charset "UTF-8";
  2. @use "sass:math";
  3. @font-face {
  4. font-family: 'AudiType';
  5. src: url('/fonts/AudiTypeVF.woff2') format('woff2-variations');
  6. font-display: swap;
  7. font-style: normal;
  8. font-stretch: 130%;
  9. }
  10. // Utility classes for padding and margin (1-100)
  11. @for $i from 1 through 200 {
  12. // Padding
  13. .pt--#{$i} { padding-top: #{$i}px !important; }
  14. .pr--#{$i} { padding-right: #{$i}px !important; }
  15. .pb--#{$i} { padding-bottom: #{$i}px !important; }
  16. .pl--#{$i} { padding-left: #{$i}px !important; }
  17. .p--#{$i} { padding: #{$i}px !important; }
  18. // Margin
  19. .mt--#{$i} { margin-top: #{$i}px !important; }
  20. .mr--#{$i} { margin-right: #{$i}px !important; }
  21. .mb--#{$i} { margin-bottom: #{$i}px !important; }
  22. .ml--#{$i} { margin-left: #{$i}px !important; }
  23. .m--#{$i} { margin: #{$i}px !important; }
  24. @media (max-width: 720px) {
  25. .pt--#{$i} { padding-top: #{math.div($i, 2)}px !important; }
  26. .pr--#{$i} { padding-right: #{math.div($i, 2)}px !important; }
  27. .pb--#{$i} { padding-bottom: #{math.div($i, 2)}px !important; }
  28. .pl--#{$i} { padding-left: #{math.div($i, 2)}px !important; }
  29. .p--#{$i} { padding: #{math.div($i, 2)}px !important; }
  30. .mt--#{$i} { margin-top: #{math.div($i, 2)}px !important; }
  31. .mr--#{$i} { margin-right: #{math.div($i, 2)}px !important; }
  32. .mb--#{$i} { margin-bottom: #{math.div($i, 2)}px !important; }
  33. .ml--#{$i} { margin-left: #{math.div($i, 2)}px !important; }
  34. .m--#{$i} { margin: #{math.div($i, 2)}px !important; }
  35. }
  36. }
  37. @for $i from 14 through 40 {
  38. .ft--#{$i} {font-size : #{$i}px !important;}
  39. }
  40. html {
  41. scroll-behavior: smooth;
  42. }
  43. :root {
  44. --max-content-width: 1920px;
  45. --page-margin: 16px;
  46. @media (min-width: 375px) {
  47. --page-margin: 28px;
  48. }
  49. @media (min-width: 768px) {
  50. --page-margin: 40px;
  51. }
  52. @media (min-width: 1024px) {
  53. --page-margin: 60px;
  54. }
  55. @media (min-width: 1440px) {
  56. --page-margin: 96px;
  57. }
  58. @media (min-width: 1920px) {
  59. --page-margin: 96px;
  60. }
  61. @property --gradient-start {
  62. syntax: '<color>';
  63. initial-value: transparent;
  64. inherits: false;
  65. }
  66. @property --gradient-end {
  67. syntax: '<color>';
  68. initial-value: transparent;
  69. inherits: false;
  70. }
  71. --spacing-relative-2xs: 4px;
  72. --spacing-relative-xs: 8px;
  73. --spacing-relative-sm: 12px;
  74. --spacing-relative-md: 16px;
  75. --spacing-relative-lg: 24px;
  76. --spacing-relative-xl: 28px;
  77. --spacing-relative-2xl: 36px;
  78. --spacing-relative-3xl: 40px;
  79. --spacing-relative-4xl: 48px;
  80. --spacing-relative-5xl: 64px;
  81. --spacing-relative-6xl: 80px;
  82. --spacing-relative-7xl: 96px;
  83. --spacing-relative-8xl: 120px;
  84. @media (min-width: 768px) {
  85. --spacing-relative-3xl: 48px;
  86. --spacing-relative-4xl: 64px;
  87. --spacing-relative-5xl: 72px;
  88. --spacing-relative-6xl: 88px;
  89. --spacing-relative-7xl: 104px;
  90. --spacing-relative-8xl: 136px;
  91. }
  92. @media (min-width: 1024px) {
  93. --spacing-relative-2xl: 40px;
  94. --spacing-relative-3xl: 56px;
  95. --spacing-relative-4xl: 72px;
  96. --spacing-relative-5xl: 88px;
  97. --spacing-relative-6xl: 104px;
  98. --spacing-relative-7xl: 128px;
  99. --spacing-relative-8xl: 168px;
  100. }
  101. @media (min-width: 1440px) {
  102. --spacing-relative-xl: 32px;
  103. --spacing-relative-2xl: 56px;
  104. --spacing-relative-3xl: 72px;
  105. --spacing-relative-4xl: 88px;
  106. --spacing-relative-5xl: 104px;
  107. --spacing-relative-6xl: 120px;
  108. --spacing-relative-7xl: 160px;
  109. --spacing-relative-8xl: 216px;
  110. }
  111. @media (min-width: 1920px) {
  112. --spacing-relative-xl: 40px;
  113. --spacing-relative-2xl: 72px;
  114. --spacing-relative-3xl: 88px;
  115. --spacing-relative-4xl: 104px;
  116. --spacing-relative-5xl: 120px;
  117. --spacing-relative-6xl: 136px;
  118. --spacing-relative-7xl: 176px;
  119. --spacing-relative-8xl: 248px;
  120. }
  121. }
  122. //풀사이즈 레이아웃 구성
  123. .detail--container--full{
  124. max-width:1920px;
  125. margin:0 auto;
  126. .thumb--solo{
  127. overflow: hidden;
  128. border-radius: 20px;
  129. img{
  130. width:100%;
  131. max-width:100%;
  132. }
  133. }
  134. .inner--wrapper{
  135. padding:0 var(--spacing-relative-3xl);
  136. .service--detail{
  137. padding:45px 0px;
  138. h1{
  139. margin: 0 0 var(--spacing-relative-md) 0;
  140. color: rgb(252, 252, 253);
  141. letter-spacing: 0px;
  142. font-weight: 400;
  143. text-decoration: none;
  144. font-size: 28px;
  145. line-height: 40px;
  146. font-stretch: 130%;
  147. @media (min-width: 1024px) {
  148. font-size: 36px;
  149. line-height: 52px;
  150. }
  151. @media (min-width: 1440px) {
  152. font-size: 40px;
  153. line-height: 60px;
  154. }
  155. @media (min-width: 1920px) {
  156. font-size: 44px;
  157. line-height: 64px;
  158. }
  159. }
  160. h2{
  161. margin: 0 0 var(--spacing-relative-md) 0;
  162. color: rgb(252, 252, 253);
  163. font-family: AudiType, sans-serif;
  164. letter-spacing: 0px;
  165. font-weight: 400;
  166. text-decoration: none;
  167. font-size: 24px;
  168. line-height: 36px;
  169. font-stretch: 130%;
  170. &.middle{
  171. font-size:26px;
  172. }
  173. @media (min-width: 1024px) {
  174. font-size: 28px;
  175. line-height: 40px;
  176. }
  177. @media (min-width: 1440px) {
  178. font-size: 32px;
  179. line-height: 44px;
  180. }
  181. @media (min-width: 1920px) {
  182. font-size: 36px;
  183. line-height: 52px;
  184. }
  185. }
  186. h3{
  187. margin: 20px 0 var(--spacing-relative-md) 0;
  188. color: rgba(252, 252, 253, 0.7);
  189. letter-spacing: 0px;
  190. font-weight: 400;
  191. text-decoration: none;
  192. font-size: 16px;
  193. line-height: 24px;
  194. font-stretch: 105%;
  195. }
  196. >h4{
  197. margin: 0 0 var(--spacing-relative-md) 0;
  198. color: rgb(252, 252, 253);
  199. letter-spacing: 0px;
  200. font-weight: 400;
  201. text-decoration: none;
  202. font-size: 16px;
  203. line-height: 24px;
  204. font-stretch: 130%;
  205. @media (min-width: 1440px) {
  206. font-size: 18px;
  207. line-height: 28px;
  208. }
  209. @media (min-width: 1920px) {
  210. font-size: 20px;
  211. line-height: 32px;
  212. }
  213. }
  214. >p{
  215. margin: 0px;
  216. color: rgba(252, 252, 253, 0.7);
  217. letter-spacing: 0px;
  218. font-weight: 400;
  219. text-decoration: none;
  220. font-size: 16px;
  221. line-height: 24px;
  222. font-stretch: 105%;
  223. }
  224. .service--process--list{
  225. padding-top:80px;
  226. >li{
  227. position: relative;
  228. padding-left:20px;
  229. margin-bottom:80px;
  230. &.not--before{
  231. padding-left:0px;
  232. &::before{
  233. display: none;
  234. }
  235. }
  236. &::before{
  237. content: ">";
  238. display: block;
  239. width: 100%;
  240. height: 100%;
  241. background-size: contain;
  242. position: absolute;
  243. top: 0;
  244. left: 0;
  245. }
  246. >p{
  247. margin: 0 0 var(--spacing-relative-md) 0;
  248. color: rgba(252, 252, 253, 0.7);
  249. font-family: AudiType, sans-serif;
  250. letter-spacing: 0px;
  251. font-weight: 400;
  252. }
  253. }
  254. }
  255. .data--table--wrap{
  256. @media (min-width: 768px) {
  257. table tbody tr:first-child th,
  258. table tbody tr:first-child td {
  259. border-top: 1px solid rgb(255, 255, 255) !important;
  260. border-right-color: rgb(255, 255, 255) !important;
  261. border-bottom-color: rgb(255, 255, 255) !important;
  262. border-left-color: rgb(255, 255, 255) !important;
  263. }
  264. }
  265. table{
  266. display: block;
  267. width: 100%;
  268. border-spacing: 8px 0px;
  269. border-collapse: separate;
  270. @media (min-width: 768px) {
  271. width: 100%;
  272. }
  273. @media (min-width: 768px) {
  274. display: table;
  275. }
  276. tbody{
  277. @media (min-width: 768px) {
  278. display: table-row-group;
  279. thead{
  280. display: table-header-group;
  281. }
  282. }
  283. td{
  284. letter-spacing: 0px;
  285. font-weight: 400;
  286. text-decoration: none;
  287. font-size: 16px;
  288. line-height: 24px;
  289. font-stretch: 105%;
  290. color: rgba(252, 252, 253, 0.7);
  291. padding: 16px 4px 8px;
  292. vertical-align: top;
  293. display: table-cell;
  294. border-bottom: 1px solid rgb(252, 252, 253);
  295. @media (min-width: 768px) {
  296. padding: 12px 4px 24px;
  297. }
  298. &:not(:last-child) {
  299. margin-bottom: 4px;
  300. }
  301. }
  302. }
  303. }
  304. }
  305. .desc--caution--text{
  306. margin: 0px;
  307. color: rgba(252, 252, 253, 0.7);
  308. letter-spacing: 0px;
  309. font-weight: 400;
  310. text-decoration: none;
  311. font-size: 16px;
  312. line-height: 24px;
  313. font-stretch: 105%;
  314. }
  315. }
  316. }
  317. }
  318. /*=================================================
  319. |컴포넌트 별 css
  320. |START
  321. =================================================*/
  322. //풀사이즈 배너 텍스트1 형
  323. .img--section--full{
  324. width:100%;
  325. position: relative;
  326. &.mask--hidden{
  327. &:before{
  328. display: none;
  329. }
  330. }
  331. &[data-type="cover"] {
  332. >div {
  333. position: relative;
  334. overflow: hidden;
  335. &:nth-of-type(1){
  336. height:100vh;
  337. }
  338. }
  339. img{
  340. object-fit: cover;
  341. height:100%;
  342. position: absolute;
  343. top:50%;
  344. transform: translateY(-50%);
  345. }
  346. }
  347. &:before{
  348. content:'';
  349. display: block;
  350. width:100%;
  351. height:100%;
  352. position: absolute;
  353. z-index: 2;
  354. pointer-events: none;
  355. inset: 0px;
  356. z-index: 1;
  357. background: linear-gradient(rgba(0, 0, 0, 0) 46.66%, rgb(0, 0, 0) 100%);
  358. }
  359. img{
  360. width:100%;
  361. max-width:100%;
  362. height:100vh;
  363. object-fit: cover;
  364. }
  365. &[data-text-location="topright"]{
  366. &:before{
  367. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  368. }
  369. .alt--text{
  370. bottom:auto;
  371. left:auto;
  372. right:0px;
  373. top:40px;
  374. }
  375. .sub--title{
  376. bottom:auto;
  377. left:auto;
  378. right:0px;
  379. top:90px;
  380. }
  381. .btn--wrapper{
  382. bottom:auto;
  383. left:auto;
  384. right:0px;
  385. top:150px;
  386. }
  387. }
  388. &[data-text-location="top"]{
  389. &:before{
  390. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  391. }
  392. .alt--text{
  393. bottom:auto;
  394. top:40px;
  395. }
  396. .sub--title{
  397. bottom:auto;
  398. top:90px;
  399. }
  400. .btn--wrapper{
  401. bottom:auto;
  402. top:150px;
  403. }
  404. }
  405. &[data-text-location="topleft"]{
  406. .alt--text{
  407. bottom:auto;
  408. top:40px;
  409. }
  410. .btn--wrapper{
  411. bottom:auto;
  412. top:120px;
  413. }
  414. }
  415. &[data-text-location="bottomleft"]{
  416. &:before{
  417. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  418. }
  419. .alt--text{
  420. bottom:auto;
  421. top:40px;
  422. }
  423. .sub--title{
  424. bottom:auto;
  425. top:90px;
  426. }
  427. .btn--wrapper{
  428. bottom:auto;
  429. top:150px;
  430. }
  431. }
  432. &[data-text-location="bottomleft2"]{
  433. &:before{
  434. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  435. }
  436. .alt--text{
  437. top:auto;
  438. bottom:120px;
  439. }
  440. .sub--title{
  441. top:auto;
  442. bottom:90px;
  443. }
  444. .btn--wrapper{
  445. top:auto;
  446. bottom:40px;
  447. .default--round--btn{
  448. background: rgb(101, 112, 129);
  449. color: rgb(252, 252, 253);
  450. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  451. transition-property: color, background, box-shadow;
  452. &:hover{
  453. background: rgb(44, 52, 63);
  454. color: rgb(252, 252, 253);
  455. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  456. }
  457. &.reverse{
  458. background-color: rgb(24, 29, 37);
  459. color: rgb(252, 252, 253);
  460. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  461. transition-property: color, box-shadow, background-color;
  462. &:hover{
  463. background-color: rgb(44, 52, 63);
  464. color: rgb(252, 252, 253);
  465. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  466. }
  467. }
  468. }
  469. }
  470. }
  471. .caution--text--small{
  472. margin: 0px;
  473. color: rgba(252, 252, 253, 0.7);
  474. letter-spacing: 0px;
  475. font-weight: 400;
  476. text-decoration: none;
  477. font-size: 12px;
  478. line-height: 20px;
  479. font-stretch: 105%;
  480. padding: 0 var(--page-margin) var(--spacing-relative-xl) var(--page-margin);
  481. @media (min-width: 768px) {
  482. background: transparent;
  483. pointer-events: auto;
  484. padding: var(--spacing-relative-lg) var(--page-margin) var(--spacing-relative-xl) var(--page-margin);
  485. }
  486. }
  487. .alt--text{
  488. color: rgb(252, 252, 253);
  489. letter-spacing: 0px;
  490. font-weight: 400;
  491. text-decoration: none;
  492. font-size: 28px;
  493. line-height: 40px;
  494. position: absolute;
  495. bottom:40px;
  496. left:0px;
  497. overflow: hidden;
  498. padding: 0 96px;
  499. white-space: pre-wrap;
  500. z-index: 2;
  501. }
  502. .sub--title{
  503. position: absolute;
  504. bottom:40px;
  505. left:0px;
  506. margin: 0px;
  507. color: rgb(252, 252, 253);
  508. letter-spacing: 0px;
  509. font-weight: 400;
  510. text-decoration: none;
  511. font-size: 16px;
  512. line-height: 24px;
  513. font-stretch: 130%;
  514. padding: 0 96px;
  515. z-index: 2;
  516. @media (min-width: 1440px) {
  517. font-size: 18px;
  518. line-height: 28px;
  519. }
  520. @media (min-width: 1920px) {
  521. font-size: 20px;
  522. line-height: 32px;
  523. }
  524. }
  525. .btn--wrapper{
  526. position: absolute;
  527. bottom:150px;
  528. left:0px;
  529. padding: 0 96px;
  530. z-index: 2;
  531. display: flex;
  532. gap:10px;
  533. }
  534. &.video{
  535. &[data-text-location="bottomleft2"]{
  536. &:before{
  537. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  538. }
  539. .alt--text{
  540. top:auto;
  541. bottom:120px;
  542. }
  543. .sub--title{
  544. top:auto;
  545. bottom:90px;
  546. }
  547. .btn--wrapper{
  548. top:auto;
  549. bottom:40px;
  550. .default--round--btn{
  551. background: rgb(101, 112, 129);
  552. color: rgb(252, 252, 253);
  553. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  554. transition-property: color, background, box-shadow;
  555. &:hover{
  556. background: rgb(44, 52, 63);
  557. color: rgb(252, 252, 253);
  558. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  559. }
  560. &.reverse{
  561. background-color: rgb(24, 29, 37);
  562. color: rgb(252, 252, 253);
  563. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  564. transition-property: color, box-shadow, background-color;
  565. &:hover{
  566. background-color: rgb(44, 52, 63);
  567. color: rgb(252, 252, 253);
  568. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  569. }
  570. }
  571. }
  572. }
  573. }
  574. &[data-text-location="bottomleft"]{
  575. &:before{
  576. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  577. }
  578. .alt--text{
  579. top:auto;
  580. bottom:330px;
  581. }
  582. .sub--title{
  583. top:auto;
  584. bottom:90px;
  585. }
  586. .btn--wrapper{
  587. top:auto;
  588. bottom:250px;
  589. .default--round--btn{
  590. background: rgb(101, 112, 129);
  591. color: rgb(252, 252, 253);
  592. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  593. transition-property: color, background, box-shadow;
  594. &:hover{
  595. background: rgb(44, 52, 63);
  596. color: rgb(252, 252, 253);
  597. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  598. }
  599. &.reverse{
  600. background-color: rgb(24, 29, 37);
  601. color: rgb(252, 252, 253);
  602. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  603. transition-property: color, box-shadow, background-color;
  604. &:hover{
  605. background-color: rgb(44, 52, 63);
  606. color: rgb(252, 252, 253);
  607. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  608. }
  609. }
  610. }
  611. }
  612. }
  613. }
  614. }
  615. //풀사이즈 패럴렉스 1형
  616. .prallax--banner--wrappers{
  617. width:100%;
  618. .prallax--banner--wrapper{
  619. position: relative;
  620. overflow: hidden;
  621. width:100%;
  622. height:1000px;
  623. .prallax--banner{
  624. width: 100%;
  625. height: 120%;
  626. transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
  627. -webkit-transform: translate3d(0, 0, 0);
  628. backface-visibility: hidden;
  629. -webkit-backface-visibility: hidden;
  630. //perspective: 1000px;
  631. //-webkit-perspective: 1000px;
  632. position: absolute;
  633. top: -17%;
  634. left: 50%;
  635. will-change: transform;
  636. backface-visibility: hidden;
  637. picture {
  638. width: 100%;
  639. height: 100%;
  640. display: block;
  641. }
  642. img {
  643. width: 100%;
  644. height: 100%;
  645. object-fit: cover;
  646. object-position: center;
  647. transform: translateZ(0); // GPU 가속
  648. -webkit-transform: translateZ(0);
  649. }
  650. }
  651. .text--box--wrapper{
  652. position: absolute;
  653. backface-visibility: hidden;
  654. -webkit-backface-visibility: hidden;
  655. width: 100%;
  656. top:147px;
  657. left: 0px;
  658. z-index: 1;
  659. will-change: transform, opacity;
  660. transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
  661. -webkit-transform: translate3d(0, 0, 0);
  662. display: flex;
  663. -webkit-box-pack: center;
  664. justify-content: center;
  665. transition: opacity 0.1s ease-out;
  666. perspective: 1000px;
  667. -webkit-perspective: 1000px;
  668. .text--container{
  669. max-width:50%;
  670. position: relative;
  671. box-sizing: border-box;
  672. background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
  673. backdrop-filter: blur(60px);
  674. display: flex;
  675. flex-direction: column;
  676. gap: 24px;
  677. flex-shrink: 0;
  678. flex-basis: 86%;
  679. margin: 88px auto 0 auto;
  680. padding: 40px;
  681. border-radius: 20px;
  682. left: 4%;
  683. flex-basis: 44%;
  684. h2{
  685. margin: 0px;
  686. color: rgb(252, 252, 253);
  687. letter-spacing: 0px;
  688. font-weight: 400;
  689. text-decoration: none;
  690. font-size: 24px;
  691. line-height: 36px;
  692. font-stretch: 130%;
  693. }
  694. p{
  695. margin: 0px;
  696. color: rgba(252, 252, 253, 0.7);
  697. font-family: AudiType, sans-serif;
  698. letter-spacing: 0px;
  699. font-weight: 400;
  700. text-decoration: none;
  701. font-size: 16px;
  702. line-height: 24px;
  703. font-stretch: 105%;
  704. }
  705. a{
  706. transition-timing-function:
  707. cubic-bezier(0.75, 0.02, 0.5, 1);
  708. transition-duration: 250ms;
  709. transition-property: color, text-decoration-color;
  710. display: inline-flex ;
  711. -webkit-box-align: center;
  712. align-items: center;
  713. font-family: AudiType, sans-serif;
  714. letter-spacing: 0px;
  715. font-weight: 400;
  716. text-decoration: underline 1px rgb(252, 252, 253);
  717. font-size: 16px;
  718. line-height: 24px;
  719. font-stretch: 105%;
  720. color: rgb(252, 252, 253);
  721. box-sizing: border-box;
  722. text-underline-offset: 7px;
  723. padding-bottom: 2px;
  724. min-height: 24px;
  725. }
  726. }
  727. }
  728. }
  729. .caution--text{
  730. padding:0 var(--spacing-relative-3xl);
  731. margin: 0px;
  732. margin: var(--spacing-relative-md) 0 var(--spacing-relative-xl) 0;
  733. color: rgba(252, 252, 253, 0.7);
  734. letter-spacing: 0px;
  735. font-weight: 400;
  736. text-decoration: none;
  737. font-size: 14px;
  738. line-height: 24px;
  739. font-stretch: 105%;
  740. }
  741. }
  742. //Swiper 배너 컴포넌트 (30% + 70% 레이아웃)
  743. .swiper--banner--wrapper {
  744. width: 100%;
  745. padding: 40px 96px;
  746. &[data-fit="contain"]{
  747. .swiper--banner--container{
  748. .swiper--banner--section{
  749. .swiper--container{
  750. .swiper-slide{
  751. .slide--image{
  752. img{
  753. object-fit: contain;
  754. }
  755. }
  756. }
  757. }
  758. }
  759. }
  760. }
  761. &[data-type="vertical"]{
  762. padding:0px;
  763. .swiper--banner--container{
  764. flex-direction: column-reverse;
  765. height:auto;
  766. .swiper--controls--section{
  767. flex-direction: row-reverse;
  768. @media(min-width:768px){
  769. padding: 0px 96px;
  770. }
  771. @media(min-width:1024px){
  772. padding: 0px 96px;
  773. }
  774. @media(min-width:1440px){
  775. padding: 0px 96px;
  776. }
  777. @media(min-width:1920px){
  778. padding:24px 96px;
  779. }
  780. .text--content{
  781. width:100%;
  782. .main--title{
  783. margin: 0px;
  784. color: rgb(252, 252, 253);
  785. font-family: AudiType, sans-serif;
  786. letter-spacing: 0px;
  787. font-weight: 400;
  788. text-decoration: none;
  789. font-size: 20px;
  790. line-height: 32px;
  791. font-stretch: 130%;
  792. @media(min-width:1440px){
  793. font-size: 24px;
  794. line-height: 36px;
  795. }
  796. }
  797. .sub--title{
  798. margin: 0px;
  799. color: rgba(252, 252, 253, 0.7);
  800. letter-spacing: 0px;
  801. font-weight: 400;
  802. text-decoration: none;
  803. font-size: 16px;
  804. line-height: 24px;
  805. font-stretch: 105%;
  806. }
  807. }
  808. }
  809. > div{
  810. width:100%;
  811. max-height:100vh;
  812. .swiper--container {
  813. .swiper-slide {
  814. .slide--image {
  815. border-radius: 0px;
  816. }
  817. }
  818. }
  819. }
  820. }
  821. }
  822. .swiper--banner--container {
  823. max-width: 1920px;
  824. height: 70vh;
  825. margin: 0 auto;
  826. display: flex;
  827. min-height: 600px;
  828. // 30% 영역: 컨트롤 및 텍스트
  829. .swiper--controls--section {
  830. width: 30%;
  831. padding: 40px;
  832. display: flex;
  833. flex-direction: column;
  834. justify-content: flex-end;
  835. .controls--top {
  836. margin-bottom: 40px;
  837. .pagination--nav--wrapper {
  838. display: flex;
  839. align-items: flex-start;
  840. justify-content: flex-start;
  841. flex-direction: column;
  842. gap: 20px;
  843. .swiper-pagination {
  844. position: relative;
  845. width: auto;
  846. display: flex;
  847. justify-content: center;
  848. align-items: center;
  849. gap: 12px;
  850. .swiper-pagination-bullet {
  851. width: 24px;
  852. height: 24px;
  853. background: transparent;
  854. border-radius: 50%;
  855. color: rgba(255, 255, 255, 0.6);
  856. font-size: 14px;
  857. font-weight: 400;
  858. display: flex;
  859. align-items: center;
  860. justify-content: center;
  861. cursor: pointer;
  862. transition: all 0.3s ease;
  863. opacity: 1;
  864. margin:0px;
  865. &:hover {
  866. background:rgba(252,252,253,.3)!important;
  867. color: rgba(255, 255, 255, 0.8);
  868. }
  869. &.swiper-pagination-bullet-active {
  870. background: transparent;
  871. color: #fff;
  872. font-weight: 600;
  873. }
  874. }
  875. }
  876. .navigation--buttons {
  877. display: flex;
  878. align-items: center;
  879. justify-content: center;
  880. gap: 16px;
  881. .swiper-pagination{
  882. top:0px;
  883. bottom:0px;
  884. }
  885. .swiper-button-prev{
  886. background: url(/img/ico--back--s.svg) no-repeat center;
  887. }
  888. .swiper-button-next{
  889. background: url(/img/ico--forward--s.svg) no-repeat center;
  890. }
  891. .swiper-button-prev,
  892. .swiper-button-next {
  893. position: relative;
  894. width: 24px;
  895. height: 24px;
  896. border-radius: 50%;
  897. color: white;
  898. margin: 0;
  899. transition: all 0.3s ease;
  900. cursor: pointer;
  901. &:hover{
  902. background:rgba(252,252,253,.3) ;
  903. }
  904. &.swiper-button-disabled {
  905. opacity: 0.3;
  906. cursor: not-allowed;
  907. &:hover {
  908. transform: none;
  909. }
  910. }
  911. }
  912. }
  913. }
  914. }
  915. .text--content {
  916. text-align: center;
  917. height:60%;
  918. .text--slider {
  919. position: relative;
  920. overflow: hidden;
  921. height:100%;
  922. .text--slide {
  923. position: absolute;
  924. top: 0;
  925. left: 0;
  926. width: 100%;
  927. opacity: 0;
  928. transform: translateX(-100%);
  929. transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  930. text-align: left;
  931. visibility: hidden;
  932. &.active {
  933. opacity: 1;
  934. transform: translateX(0);
  935. visibility: visible;
  936. position: relative; // 활성 슬라이드는 relative로 높이 확보
  937. }
  938. // 이전 슬라이드는 오른쪽으로 사라짐
  939. &:not(.active) {
  940. transform: translateX(-100%);
  941. position: absolute; // 비활성 슬라이드는 absolute로 겹침
  942. }
  943. }
  944. }
  945. .main--title {
  946. margin:0px;
  947. color: rgb(252, 252, 253);
  948. letter-spacing: 0px;
  949. font-weight: 400;
  950. text-decoration: none;
  951. font-size: 20px;
  952. line-height: 32px;
  953. font-stretch: 130%;
  954. padding-bottom:12px;
  955. }
  956. .sub--title {
  957. margin: 0px;
  958. color: rgba(252, 252, 253, 0.7);
  959. letter-spacing: 0px;
  960. font-weight: 400;
  961. text-decoration: none;
  962. font-size: 16px;
  963. line-height: 24px;
  964. font-stretch: 105%;
  965. }
  966. .desc--title{
  967. margin-top:25px;
  968. color: rgba(252, 252, 253, 0.7);
  969. letter-spacing: 0px;
  970. font-weight: 400;
  971. text-decoration: none;
  972. font-size: 15px;
  973. line-height: 24px;
  974. font-stretch: 105%;
  975. }
  976. .caution--title{
  977. margin-top:25px;
  978. color: rgba(252, 252, 253, 0.7);
  979. letter-spacing: 0px;
  980. font-weight: 400;
  981. text-decoration: none;
  982. font-size: 12px;
  983. line-height: 24px;
  984. font-stretch: 105%;
  985. }
  986. .notice--text {
  987. margin-top: 40px;
  988. padding-top: 20px;
  989. // border-top: 1px solid rgba(255, 255, 255, 0.1);
  990. text-align: left;
  991. p {
  992. margin: 0;
  993. color: rgba(252, 252, 253, 0.5);
  994. font-size: 14px;
  995. line-height: 20px;
  996. font-style: italic;
  997. }
  998. }
  999. }
  1000. }
  1001. // 70% 영역: 단일 배너
  1002. .swiper--banner--section {
  1003. width: 70%;
  1004. position: relative;
  1005. overflow: hidden;
  1006. .swiper--container {
  1007. width: 100%;
  1008. height: 100%;
  1009. .swiper-slide {
  1010. .slide--image {
  1011. width: 100%;
  1012. height: 100%;
  1013. border-radius: 20px;
  1014. overflow: hidden;
  1015. img {
  1016. width: 100%;
  1017. height: 100%;
  1018. max-height:100vh;
  1019. object-fit: cover;
  1020. object-position: center;
  1021. transition: transform 0.8s ease;
  1022. }
  1023. }
  1024. &.swiper-slide-active {
  1025. .slide--image img {
  1026. //transform: scale(1.02);
  1027. }
  1028. }
  1029. }
  1030. }
  1031. }
  1032. }
  1033. // 반응형 처리
  1034. @media (max-width: 1024px) {
  1035. .swiper--banner--container {
  1036. flex-direction: column;
  1037. .swiper--controls--section {
  1038. width: 100%;
  1039. order: 2;
  1040. padding: 30px 20px;
  1041. }
  1042. .swiper--banner--section {
  1043. width: 100%;
  1044. height: 400px;
  1045. order: 1;
  1046. }
  1047. }
  1048. }
  1049. @media (max-width: 768px) {
  1050. padding: 40px 0;
  1051. .swiper--banner--container {
  1052. .swiper--controls--section {
  1053. padding: 20px;
  1054. .text--content {
  1055. .text--slider {
  1056. height: 100px; // 모바일에서는 높이 조정
  1057. }
  1058. .main--title {
  1059. font-size: 24px;
  1060. line-height: 32px;
  1061. }
  1062. .sub--title {
  1063. font-size: 16px;
  1064. line-height: 22px;
  1065. }
  1066. }
  1067. }
  1068. .swiper--banner--section {
  1069. height: 300px;
  1070. }
  1071. }
  1072. }
  1073. }
  1074. .title--visual {
  1075. position: relative;
  1076. width: 100%;
  1077. overflow: hidden;
  1078. padding:40px 0px;
  1079. &[data-type="small"] {
  1080. .title--visual--wrapper{
  1081. max-width:100%;
  1082. padding:0px 96px;
  1083. .title--visual--content{
  1084. h2{
  1085. color: rgb(252, 252, 253);
  1086. letter-spacing: 0px;
  1087. font-weight: 400;
  1088. text-decoration: none;
  1089. font-size: 24px;
  1090. line-height: 36px;
  1091. font-stretch: 130%;
  1092. @media (max-width: 1024px) {
  1093. font-size: 20px;
  1094. line-height: 40px;
  1095. }
  1096. }
  1097. }
  1098. }
  1099. }
  1100. &[data-type="middle"] {
  1101. .title--visual--wrapper{
  1102. max-width:100%;
  1103. padding:0px 96px;
  1104. .title--visual--content{
  1105. h2{
  1106. color: rgb(252, 252, 253);
  1107. letter-spacing: 0px;
  1108. font-weight: 400;
  1109. text-decoration: none;
  1110. font-size: 24px;
  1111. line-height: 36px;
  1112. font-stretch: 130%;
  1113. @media (min-width: 1024px) {
  1114. font-size: 28px;
  1115. line-height: 40px;
  1116. }
  1117. @media (min-width: 1440px) {
  1118. font-size: 32px;
  1119. line-height: 44px;
  1120. }
  1121. @media (min-width: 1920px) {
  1122. font-size: 36px;
  1123. line-height: 52px;
  1124. }
  1125. }
  1126. }
  1127. }
  1128. }
  1129. &[data-type="middle2"] {
  1130. .title--visual--wrapper{
  1131. padding:0px 96px;
  1132. .title--visual--content{
  1133. h2{
  1134. color: rgb(252, 252, 253);
  1135. letter-spacing: 0px;
  1136. font-weight: 400;
  1137. text-decoration: none;
  1138. font-size: 24px;
  1139. line-height: 36px;
  1140. font-stretch: 130%;
  1141. @media (min-width: 1024px) {
  1142. font-size: 28px;
  1143. line-height: 40px;
  1144. }
  1145. @media (min-width: 1440px) {
  1146. font-size: 32px;
  1147. line-height: 44px;
  1148. }
  1149. @media (min-width: 1920px) {
  1150. font-size: 36px;
  1151. line-height: 52px;
  1152. }
  1153. }
  1154. }
  1155. }
  1156. }
  1157. // 테마별 스타일
  1158. &[data-theme="dark"] {
  1159. color: rgb(252, 252, 253);
  1160. .title--description {
  1161. color: rgba(252, 252, 253, 0.8);
  1162. }
  1163. }
  1164. &[data-theme="light"] {
  1165. background: rgb(252, 252, 253);
  1166. color: #000;
  1167. .title--description {
  1168. color: rgba(0, 0, 0, 0.7);
  1169. }
  1170. }
  1171. .title--visual--wrapper {
  1172. margin: 0 auto;
  1173. padding: 0 60px;
  1174. align-content: center;
  1175. box-sizing: content-box;
  1176. display: grid;
  1177. grid-template-columns: 100%;
  1178. padding-bottom: 0px;
  1179. padding-top: 0px;
  1180. @media (min-width:1920px){
  1181. margin: 0 auto;
  1182. max-width:1248px;
  1183. }
  1184. @media (max-width: 1024px) {
  1185. padding: 0 40px;
  1186. }
  1187. @media (max-width: 768px) {
  1188. padding: 0 20px;
  1189. }
  1190. }
  1191. .title--visual--content {
  1192. margin: 0 auto;
  1193. &[data-align="left"] {
  1194. margin-left: 0;
  1195. text-align: left;
  1196. .title--main{
  1197. text-align: left;
  1198. }
  1199. }
  1200. &[data-align="center"] {
  1201. text-align: center;
  1202. }
  1203. &[data-align="right"] {
  1204. margin-right: 0;
  1205. margin-left: auto;
  1206. text-align: right;
  1207. .title--main{
  1208. text-align: right;
  1209. }
  1210. }
  1211. // 애니메이션 상태
  1212. &[data-animated="true"] {
  1213. opacity: 0;
  1214. transform: translateY(40px);
  1215. transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  1216. &.visible {
  1217. opacity: 1;
  1218. transform: translateY(0);
  1219. }
  1220. }
  1221. }
  1222. .title--main {
  1223. margin: 0 0 24px 0;
  1224. color: rgb(252, 252, 253);
  1225. letter-spacing: 0px;
  1226. font-weight: 400;
  1227. text-decoration: none;
  1228. font-size: 36px;
  1229. line-height: 52px;
  1230. font-stretch: 130%;
  1231. overflow-wrap: break-word;
  1232. text-align: center;
  1233. @media (max-width: 1920px) {
  1234. font-size: 72px;
  1235. line-height: 100px;
  1236. }
  1237. @media (max-width: 1440px) {
  1238. font-size: 60px;
  1239. line-height: 84px;
  1240. }
  1241. @media (max-width: 1024px) {
  1242. font-size: 52px;
  1243. line-height: 76px;
  1244. }
  1245. @media (max-width: 768px) {
  1246. font-size: 44px;
  1247. line-height: 60px;
  1248. }
  1249. }
  1250. .sub--title{
  1251. margin: 0 0 var(--spacing-relative-md) 0;
  1252. color: rgb(252, 252, 253);
  1253. letter-spacing: 0px;
  1254. font-weight: 400;
  1255. text-decoration: none;
  1256. font-size: 16px;
  1257. line-height: 24px;
  1258. font-stretch: 130%;
  1259. display: flex;
  1260. padding-bottom:20px;
  1261. @media (min-width: 1440px) {
  1262. font-size: 18px;
  1263. line-height: 28px;
  1264. }
  1265. @media (min-width: 1920px) {
  1266. font-size: 20px;
  1267. line-height: 32px;
  1268. }
  1269. }
  1270. .title--description {
  1271. margin: 0;
  1272. color: rgba(252, 252, 253, 0.7);
  1273. letter-spacing: 0px;
  1274. font-weight: 400;
  1275. text-decoration: none;
  1276. font-size: 16px;
  1277. line-height: 24px;
  1278. font-stretch: 105%;
  1279. }
  1280. .title--additional {
  1281. margin-top: 40px;
  1282. @media (max-width: 768px) {
  1283. margin-top: 32px;
  1284. }
  1285. }
  1286. }
  1287. .caution--text--wrapper{
  1288. padding:120px 96px;
  1289. p{
  1290. margin: 0 0 26px 0;
  1291. color: rgba(252, 252, 253, 0.7);
  1292. font-family: AudiType, sans-serif;
  1293. letter-spacing: 0px;
  1294. font-weight: 400;
  1295. text-decoration: none;
  1296. font-size: 16px;
  1297. line-height: 24px;
  1298. font-stretch: 105%;
  1299. }
  1300. }
  1301. //좌우 2배열 배너
  1302. .grid--banner--type2{
  1303. width: 100%;
  1304. padding:0 var(--spacing-relative-3xl);
  1305. @media(min-width:1024px){
  1306. padding:0 var(--spacing-relative-xl);
  1307. }
  1308. @media(min-width:1440px){
  1309. padding:0 var(--spacing-relative-2xl);
  1310. }
  1311. @media(min-width:1920px){
  1312. padding:0 var(--spacing-relative-3xl);
  1313. }
  1314. >ul{
  1315. width:100%;
  1316. display: flex;
  1317. flex-wrap: wrap;
  1318. gap:16px;
  1319. >li{
  1320. width:calc( (100% - 16px)/2);
  1321. padding-bottom:40px;
  1322. @media(max-width:720px){
  1323. width:100%;
  1324. }
  1325. .thumb{
  1326. border-radius: 20px;
  1327. overflow: hidden;
  1328. img{
  1329. width: 100%;;
  1330. object-fit: cover;
  1331. }
  1332. }
  1333. .desc--wrapper{
  1334. @media screen and (min-width: 768px) {
  1335. padding-block-start: var(--spacing-relative-lg);
  1336. padding-inline-end: var(--spacing-relative-xl);
  1337. }
  1338. @media screen and (min-width: 1920px) {
  1339. padding-block-start: var(--spacing-relative-lg);
  1340. padding-inline-end: var(--spacing-relative-xl);
  1341. }
  1342. h2{
  1343. margin: 0px;
  1344. color: rgb(252, 252, 253);
  1345. letter-spacing: 0px;
  1346. font-weight: 400;
  1347. text-decoration: none;
  1348. font-size: 20px;
  1349. line-height: 32px;
  1350. font-stretch: 130%;
  1351. @media(min-width:1440px){
  1352. font-size: 24px;
  1353. line-height: 36px;
  1354. }
  1355. }
  1356. h3{
  1357. margin: var(--spacing-relative-xs) 0 0 0;
  1358. color: rgba(252, 252, 253, 0.7);
  1359. letter-spacing: 0px;
  1360. font-weight: 400;
  1361. text-decoration: none;
  1362. font-size: 16px;
  1363. line-height: 24px;
  1364. font-stretch: 105%;
  1365. }
  1366. h4{
  1367. margin: var(--spacing-relative-md) 0 0 0;
  1368. color: rgba(252, 252, 253, 0.7);
  1369. letter-spacing: 0px;
  1370. font-weight: 400;
  1371. text-decoration: none;
  1372. font-size: 12px;
  1373. line-height: 24px;
  1374. font-stretch: 105%;
  1375. }
  1376. }
  1377. }
  1378. }
  1379. &[data-type="asymmetry"]{
  1380. >ul{
  1381. @media (min-width: 1024px) {
  1382. flex-direction: row;
  1383. }
  1384. gap:0px;
  1385. display: flex;
  1386. flex-direction: row;
  1387. >li{
  1388. &:nth-of-type(1){
  1389. flex: 1 1 0px;
  1390. height: auto;
  1391. max-width:570px;
  1392. }
  1393. &:nth-of-type(2){
  1394. flex: 2 1 0px;
  1395. height: auto;
  1396. margin-left: var(--spacing-relative-md);
  1397. }
  1398. width:100%;
  1399. .thumb{
  1400. height:100%;
  1401. max-height:720px;
  1402. }
  1403. img{
  1404. height:100%;
  1405. }
  1406. }
  1407. }
  1408. }
  1409. &[data-type="symmetry"]{
  1410. >ul{
  1411. gap:20px;
  1412. display: flex;
  1413. >li{
  1414. width:calc( (100% - 20px) / 2 );
  1415. flex: 1 1 0px;
  1416. display: flex;
  1417. flex-direction: column;
  1418. .thumb{
  1419. height:100%;
  1420. max-height:100vh;
  1421. img{
  1422. height:100%;
  1423. }
  1424. }
  1425. .desc--wrapper{
  1426. height:auto;
  1427. display: flex;
  1428. flex-direction: column;
  1429. }
  1430. }
  1431. }
  1432. }
  1433. }
  1434. .row--block--wrapper{
  1435. &[data-type-row="3"]{
  1436. >div{
  1437. >ul{
  1438. > li{
  1439. width:calc( (100% - 40px) / 3);
  1440. .thumb{
  1441. img{
  1442. width:100%;
  1443. object-fit: cover;
  1444. }
  1445. }
  1446. }
  1447. }
  1448. }
  1449. }
  1450. > div{
  1451. padding:0 var(--spacing-relative-3xl);
  1452. >ul {
  1453. display: flex;
  1454. flex-wrap: wrap;
  1455. gap:20px;
  1456. &.center{
  1457. justify-content: center;
  1458. }
  1459. > li{
  1460. width:calc(50% - 10px);
  1461. padding-bottom:40px;
  1462. .thumb{
  1463. border-radius: 20px;
  1464. position: relative;
  1465. height:0px;
  1466. overflow: hidden;
  1467. padding-top:56.25%;
  1468. img{
  1469. position: absolute;
  1470. height:100%;
  1471. inset: 0px;
  1472. }
  1473. }
  1474. .desc--wrap{
  1475. @media screen and (min-width: 768px) {
  1476. padding-block-start: var(--spacing-relative-lg);
  1477. padding-inline-end: var(--spacing-relative-xl);
  1478. }
  1479. @media screen and (min-width: 1920px) {
  1480. padding-block-start: var(--spacing-relative-lg);
  1481. padding-inline-end: var(--spacing-relative-xl);
  1482. }
  1483. .title{
  1484. margin: 0px;
  1485. color: rgb(252, 252, 253);
  1486. letter-spacing: 0px;
  1487. font-weight: 400;
  1488. text-decoration: none;
  1489. font-size: 20px;
  1490. line-height: 32px;
  1491. font-stretch: 130%;
  1492. @media (min-width: 1440px) {
  1493. font-size: 24px;
  1494. line-height: 36px;
  1495. }
  1496. }
  1497. .captions{
  1498. margin: var(--spacing-relative-xs) 0 0 0;
  1499. color: rgba(252, 252, 253, 0.7);
  1500. letter-spacing: 0px;
  1501. font-weight: 400;
  1502. text-decoration: none;
  1503. font-size: 16px;
  1504. line-height: 24px;
  1505. font-stretch: 105%;
  1506. }
  1507. .small--text{
  1508. color: rgba(252, 252, 253, 0.7);
  1509. font-size:12px;
  1510. white-space: pre-line;
  1511. padding-top:20px;
  1512. }
  1513. .captions--text{
  1514. padding-top:30px;
  1515. font-weight: 400;
  1516. text-decoration: none;
  1517. font-size: 16px;
  1518. line-height: 24px;
  1519. font-stretch: 105%;
  1520. color: rgba(252, 252, 253, 0.7);
  1521. }
  1522. }
  1523. }
  1524. }
  1525. }
  1526. }
  1527. // FAQ Accordion Styles
  1528. .faq--accordion--wrapper {
  1529. max-width: 1920px;
  1530. margin: 0 auto;
  1531. padding: 40px 96px;
  1532. @media (max-width: 1024px) {
  1533. padding: 32px 60px;
  1534. }
  1535. @media (max-width: 768px) {
  1536. padding: 24px 40px;
  1537. }
  1538. @media (max-width: 375px) {
  1539. padding: 20px 28px;
  1540. }
  1541. }
  1542. .faq--accordion--container {
  1543. display: flex;
  1544. flex-direction: column;
  1545. border-top: 1px solid rgba(101, 112, 129, 0.3);
  1546. }
  1547. .faq--accordion--item {
  1548. border-bottom: 1px solid rgba(101, 112, 129, 0.3);
  1549. }
  1550. .faq--accordion--header {
  1551. width: 100%;
  1552. display: flex;
  1553. justify-content: space-between;
  1554. align-items: center;
  1555. padding: 12px 0;
  1556. background: transparent;
  1557. border: none;
  1558. cursor: pointer;
  1559. transition: all 0.3s ease;
  1560. &:hover {
  1561. .faq--question {
  1562. color: rgba(252, 252, 253, 0.8);
  1563. }
  1564. }
  1565. &.active {
  1566. background-color: rgb(64, 74, 89);
  1567. color: rgba(252, 252, 253, 0.7);
  1568. .faq--question {
  1569. color: rgb(252, 252, 253);
  1570. font-weight: 500;
  1571. }
  1572. .faq--toggle--icon {
  1573. color: rgb(252, 252, 253);
  1574. }
  1575. }
  1576. }
  1577. .faq--question {
  1578. flex: 1;
  1579. text-align: left;
  1580. font-size: 18px;
  1581. line-height: 1.5;
  1582. color: rgba(252, 252, 253, 0.7);
  1583. transition: all 0.3s ease;
  1584. padding-right: 24px;
  1585. padding-left:20px;
  1586. @media (max-width: 768px) {
  1587. font-size: 16px;
  1588. }
  1589. }
  1590. .faq--toggle--icon {
  1591. font-size: 28px;
  1592. font-weight: 300;
  1593. color: rgba(252, 252, 253, 0.5);
  1594. transition: all 0.3s ease;
  1595. min-width: 32px;
  1596. text-align: center;
  1597. margin-right:20px;
  1598. }
  1599. .faq--accordion--content {
  1600. overflow: hidden;
  1601. animation: slideDown 0.3s ease;
  1602. }
  1603. .faq--answer {
  1604. padding: 20px 50px 32px 20px;
  1605. font-size: 16px;
  1606. line-height: 1.7;
  1607. color: rgba(252, 252, 253, 0.8);
  1608. @media (max-width: 768px) {
  1609. font-size: 14px;
  1610. padding: 0 0 24px 0;
  1611. }
  1612. }
  1613. @keyframes slideDown {
  1614. from {
  1615. opacity: 0;
  1616. transform: translateY(-10px);
  1617. }
  1618. to {
  1619. opacity: 1;
  1620. transform: translateY(0);
  1621. }
  1622. }
  1623. .etronms--thumb--wrap{
  1624. padding:0 var(--spacing-relative-3xl);
  1625. .thumb{
  1626. overflow: hidden;
  1627. border-radius: 20px;
  1628. }
  1629. .small--text{
  1630. margin: 0px;
  1631. color: rgb(255, 255, 255);
  1632. letter-spacing: 0px;
  1633. font-weight: 400;
  1634. text-decoration: none;
  1635. font-size: 12px;
  1636. line-height: 32px;
  1637. font-stretch: 130%;
  1638. }
  1639. .caution--text{
  1640. margin: 0 0 var(--spacing-relative-md) 0;
  1641. color: rgba(252, 252, 253, 0.7);
  1642. letter-spacing: 0px;
  1643. font-weight: 400;
  1644. text-decoration: none;
  1645. font-size: 16px;
  1646. line-height: 24px;
  1647. font-stretch: 105%;
  1648. }
  1649. .btn--wrapper{
  1650. display: flex;
  1651. align-items: center;
  1652. justify-content: center;
  1653. }
  1654. }
  1655. .etron--card{
  1656. padding:0 var(--spacing-relative-3xl);
  1657. > ul{
  1658. display: flex;
  1659. flex-wrap:wrap;
  1660. gap:20px;
  1661. li{
  1662. width:calc( (100% - 40px) / 3);
  1663. .thumb{
  1664. position: relative;
  1665. height: 0px;
  1666. overflow: hidden;
  1667. border-radius: 20px;
  1668. padding-top: 56.25%;
  1669. img{
  1670. position: absolute;
  1671. inset: 0px;
  1672. height: 100%;
  1673. }
  1674. }
  1675. .desc--wrap{
  1676. padding-top:30px;
  1677. h2{
  1678. margin: 0px;
  1679. color: rgb(252, 252, 253);
  1680. letter-spacing: 0px;
  1681. font-weight: 400;
  1682. text-decoration: none;
  1683. font-size: 20px;
  1684. line-height: 32px;
  1685. font-stretch: 130%;
  1686. @media (min-width: 1440px) {
  1687. font-size: 24px;
  1688. line-height: 36px;
  1689. }
  1690. }
  1691. h3{
  1692. margin: var(--spacing-relative-xs) 0 0 0;
  1693. color: rgba(252, 252, 253, 0.7);
  1694. letter-spacing: 0px;
  1695. font-weight: 400;
  1696. text-decoration: none;
  1697. font-size: 16px;
  1698. line-height: 24px;
  1699. font-stretch: 105%;
  1700. }
  1701. }
  1702. }
  1703. }
  1704. }
  1705. /*=================================================
  1706. |컴포넌트 별 css
  1707. |END
  1708. =================================================*/
  1709. // 로그인 폼 기본 디폴트 디자인
  1710. .admin--login {
  1711. min-height: 100vh;
  1712. background: #000000;
  1713. display: flex;
  1714. align-items: center;
  1715. justify-content: center;
  1716. font-family: 'AudiType', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  1717. .login--container {
  1718. width: 100%;
  1719. max-width: 480px;
  1720. padding: 20px;
  1721. }
  1722. .login--box {
  1723. background: #0a0a0a;
  1724. border: 1px solid rgba(255, 255, 255, 0.1);
  1725. border-radius: 12px;
  1726. padding: 60px 40px;
  1727. box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  1728. }
  1729. .login--logo {
  1730. text-align: center;
  1731. margin-bottom: 50px;
  1732. h1 {
  1733. font-size: 48px;
  1734. font-weight: 700;
  1735. color: #ffffff;
  1736. letter-spacing: 8px;
  1737. margin: 0;
  1738. font-stretch: 130%;
  1739. }
  1740. .subtitle {
  1741. color: rgba(255, 255, 255, 0.4);
  1742. font-size: 14px;
  1743. text-transform: uppercase;
  1744. letter-spacing: 3px;
  1745. margin-top: 10px;
  1746. }
  1747. }
  1748. .login--form {
  1749. .form--group {
  1750. margin-bottom: 24px;
  1751. }
  1752. .form--input {
  1753. width: 100%;
  1754. height: 52px;
  1755. background: #000000;
  1756. border: 1px solid rgba(255, 255, 255, 0.15);
  1757. border-radius: 8px;
  1758. padding: 0 20px;
  1759. font-size: 15px;
  1760. color: #ffffff;
  1761. transition: all 0.3s ease;
  1762. &::placeholder {
  1763. color: rgba(255, 255, 255, 0.6);
  1764. }
  1765. &:focus {
  1766. outline: none;
  1767. border-color: rgba(255, 255, 255, 0.4);
  1768. background: rgba(255, 255, 255, 0.02);
  1769. }
  1770. &:hover {
  1771. border-color: rgba(255, 255, 255, 0.25);
  1772. }
  1773. }
  1774. .form--options {
  1775. display: flex;
  1776. justify-content: space-between;
  1777. align-items: center;
  1778. margin-bottom: 32px;
  1779. .checkbox--label {
  1780. display: flex;
  1781. align-items: center;
  1782. cursor: pointer;
  1783. color: rgba(255, 255, 255, 0.6);
  1784. font-size: 14px;
  1785. input[type="checkbox"] {
  1786. width: 18px;
  1787. height: 18px;
  1788. margin-right: 10px;
  1789. background: #000000;
  1790. border: 1px solid rgba(255, 255, 255, 0.3);
  1791. border-radius: 4px;
  1792. cursor: pointer;
  1793. accent-color: #ffffff;
  1794. }
  1795. &:hover {
  1796. color: rgba(255, 255, 255, 0.8);
  1797. }
  1798. }
  1799. .forgot--password {
  1800. color: rgba(255, 255, 255, 0.6);
  1801. font-size: 14px;
  1802. text-decoration: none;
  1803. transition: color 0.3s ease;
  1804. &:hover {
  1805. color: #ffffff;
  1806. }
  1807. }
  1808. }
  1809. .login--button {
  1810. width: 100%;
  1811. height: 52px;
  1812. background: #ffffff;
  1813. color: #000000;
  1814. border: none;
  1815. border-radius: 8px;
  1816. font-size: 16px;
  1817. font-weight: 600;
  1818. letter-spacing: 1px;
  1819. cursor: pointer;
  1820. transition: all 0.3s ease;
  1821. &:hover {
  1822. background: rgba(255, 255, 255, 0.9);
  1823. transform: translateY(-2px);
  1824. box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  1825. }
  1826. &:active {
  1827. transform: translateY(0);
  1828. }
  1829. }
  1830. }
  1831. .login--footer {
  1832. text-align: center;
  1833. margin-top: 40px;
  1834. p {
  1835. color: rgba(255, 255, 255, 0.3);
  1836. font-size: 12px;
  1837. letter-spacing: 0.5px;
  1838. }
  1839. }
  1840. }
  1841. //자세히 보기
  1842. .more--detail--href{
  1843. display: inline-flex;
  1844. align-items: center;
  1845. position: relative;
  1846. letter-spacing: 0px;
  1847. font-weight: 400;
  1848. font-size: 14px;
  1849. min-height:24px;
  1850. &:after{
  1851. content:'';
  1852. display: block;
  1853. width:calc(100% - 24px);
  1854. height:1px;
  1855. background: rgb(252, 252, 253);
  1856. position: absolute;
  1857. bottom:0px;
  1858. left:0px;
  1859. }
  1860. .ico{
  1861. width: 24px;
  1862. height: 24px;
  1863. background-image: url(/img/ico--arrow.svg);
  1864. }
  1865. }
  1866. //탭 링크
  1867. .text--tab--layout{
  1868. display: flex;
  1869. background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
  1870. position: sticky;
  1871. top: 0;
  1872. z-index: 100;
  1873. @media(min-width:1440px){
  1874. display: grid;
  1875. grid-auto-flow: column;
  1876. grid-template-columns: max-content 1fr auto;
  1877. gap: 28px;
  1878. width: 100%;
  1879. box-sizing: border-box;
  1880. overflow: hidden;
  1881. }
  1882. @media(min-width:1025px){
  1883. padding-block:12px;
  1884. }
  1885. ul{
  1886. display: flex;
  1887. position: relative;
  1888. padding-inline:96px;
  1889. -webkit-box-align: center;
  1890. align-items: center;
  1891. -webkit-box-pack: justify;
  1892. justify-content: space-between;
  1893. li {
  1894. &.anch--location{
  1895. a{
  1896. margin-left:-12px;
  1897. pointer-events: inherit!important;
  1898. }
  1899. }
  1900. &:first-child{
  1901. &.link--force{
  1902. a{
  1903. pointer-events: inherit!important;
  1904. }
  1905. }
  1906. a{
  1907. margin-left:-12px;
  1908. pointer-events: none;
  1909. }
  1910. }
  1911. a{
  1912. cursor: pointer;
  1913. display: flex;
  1914. -webkit-box-align: center;
  1915. align-items: center;
  1916. -webkit-box-pack: center;
  1917. justify-content: center;
  1918. text-decoration: none;
  1919. border-radius: 10px;
  1920. background: rgba(44, 52, 63, 0);
  1921. box-shadow: rgba(219, 223, 230, 0) 0px 0px 0px 1px inset;
  1922. outline-offset: -3px;
  1923. box-sizing: border-box;
  1924. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1925. transition-duration: 250ms;
  1926. transition-property: color, background, box-shadow;
  1927. min-height: 48px;
  1928. min-width: 64px;
  1929. color: rgba(252, 252, 253, 0.7);
  1930. padding: 0px 16px;
  1931. text-align: center;
  1932. letter-spacing: 0px;
  1933. font-weight: 400;
  1934. text-decoration: none;
  1935. font-size: 14px;
  1936. line-height: 20px;
  1937. font-stretch: 105%;
  1938. &.actv,
  1939. &:hover{
  1940. color:rgb(252,252,253)!important;
  1941. background-color: rgb(44,52,63)!important;
  1942. box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset!important;
  1943. }
  1944. }
  1945. }
  1946. }
  1947. }
  1948. .inner--link--contents {
  1949. width: 100%;
  1950. padding: 40px 0;
  1951. ul {
  1952. list-style: none;
  1953. margin: 0;
  1954. padding: 0;
  1955. display: flex;
  1956. flex-wrap: wrap;
  1957. gap: 24px;
  1958. width: 100%;
  1959. padding:0 96px;
  1960. li {
  1961. width:calc( (100% - 48px) / 3);
  1962. --gradient-start: hsla(216, 20%, 17%, 1);
  1963. --gradient-end: hsla(216, 21%, 12%, 1);
  1964. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1965. transition-duration: 250ms;
  1966. transition-property: --gradient-start, --gradient-end, box-shadow;
  1967. padding:28px 16px;
  1968. overflow: hidden;
  1969. border-radius: 20px;
  1970. border: none;
  1971. cursor: pointer;
  1972. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  1973. backdrop-filter: blur(40px);
  1974. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  1975. display: flex;
  1976. text-decoration: none;
  1977. &:hover{
  1978. --gradient-start: hsla(216, 18%, 21%, 1);
  1979. --gradient-end: hsla(216, 18%, 21%, 1);
  1980. box-shadow: rgb(42,57,64) 0px 0px 0px 1px inset;
  1981. }
  1982. a {
  1983. display: inline-flex;
  1984. align-items: center;
  1985. color: rgba(252, 252, 253, 0.7);;
  1986. letter-spacing: 0px;
  1987. font-weight: 400;
  1988. text-decoration: none;
  1989. font-size: 12px;
  1990. line-height: 24px;
  1991. font-stretch: 105%;
  1992. padding-left:40px;
  1993. position: relative;
  1994. width:100%;
  1995. >span{
  1996. position: absolute;
  1997. top:50%;
  1998. left:0px;
  1999. transform: translateY(-50%);
  2000. }
  2001. > svg{
  2002. position: absolute;
  2003. top:50%;
  2004. transform: translateY(-50%);
  2005. right:0px;
  2006. }
  2007. }
  2008. }
  2009. }
  2010. }
  2011. .product--card--wrapper{
  2012. margin: auto;
  2013. max-width: var(--max-content-width);
  2014. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  2015. padding-inline: var(--page-margin);
  2016. padding-block-end: var(--spacing-relative-2xl);
  2017. @media (min-width: 375px) {
  2018. padding-inline: var(--page-margin);
  2019. }
  2020. @media (min-width: 768px) {
  2021. padding-inline: var(--page-margin);
  2022. }
  2023. @media (min-width: 1024px) {
  2024. padding-inline: var(--spacing-relative-3xl);
  2025. padding-block-end: var(--spacing-relative-2xl);
  2026. }
  2027. @media (min-width: 1440px) {
  2028. padding-inline: var(--page-margin);
  2029. padding-block-end: var(--spacing-relative-2xl);
  2030. }
  2031. &[data-type="square"] {
  2032. max-height:100%!important;
  2033. .product--card{
  2034. max-height:100%!important;
  2035. .product--card--thumb{
  2036. max-height: 100%!important;
  2037. padding-top:50%;
  2038. .product--card--thumb--inner{
  2039. position: absolute;
  2040. inset: 0px;
  2041. height: 100%;
  2042. img{
  2043. position: relative;
  2044. }
  2045. }
  2046. }
  2047. }
  2048. }
  2049. .product--card {
  2050. display: flex;
  2051. overflow: hidden;
  2052. max-height: 50vh;
  2053. // 가로 레이아웃
  2054. &[data-layout="horizontal"] {
  2055. flex-direction: row;
  2056. align-items: center;
  2057. .product--card--thumb {
  2058. flex: 0 0 40%;
  2059. max-width: 600px;
  2060. }
  2061. .product--card--content {
  2062. flex: 1;
  2063. }
  2064. // 이미지 오른쪽 배치
  2065. &[data-image-position="right"] {
  2066. flex-direction: row-reverse;
  2067. }
  2068. @media (max-width: 1024px) {
  2069. flex-direction: column;
  2070. .product--card--thumb {
  2071. flex: 1;
  2072. max-width: 100%;
  2073. }
  2074. .product--card--content {
  2075. padding-left: 0;
  2076. padding-right: 0;
  2077. padding-top: 20px;
  2078. }
  2079. // 모바일에서는 이미지 위치 상관없이 세로 배치
  2080. &[data-image-position="right"] {
  2081. flex-direction: column;
  2082. .product--card--content {
  2083. padding-right: 0;
  2084. padding-top: 20px;
  2085. }
  2086. }
  2087. }
  2088. }
  2089. // 세로 레이아웃
  2090. &[data-layout="vertical"] {
  2091. flex-direction: column;
  2092. max-width: 600px;
  2093. .product--card--thumb {
  2094. width: 100%;
  2095. }
  2096. .product--card--content {
  2097. padding-top: 24px;
  2098. }
  2099. }
  2100. .product--card--thumb {
  2101. background: rgba(255, 255, 255, 0.05);
  2102. min-width:50%;
  2103. position: relative;
  2104. max-height: 50vh;
  2105. border-radius: 20px;
  2106. position: relative;
  2107. overflow: hidden;
  2108. .product--card--thumb--inner{
  2109. height:100%;
  2110. min-height:50vh;
  2111. img {
  2112. width: 100%;
  2113. height: 100%;
  2114. object-fit: cover;
  2115. display: block;
  2116. transition: transform 0.6s ease;
  2117. position: absolute;
  2118. height: 100%;
  2119. }
  2120. &:hover img {
  2121. transform: scale(1.05);
  2122. }
  2123. }
  2124. }
  2125. .product--card--content {
  2126. display: flex;
  2127. flex-direction: column;
  2128. gap: 16px;
  2129. @media screen and (min-width: 320px) {
  2130. padding-block-start: var(--spacing-relative-lg);
  2131. }
  2132. @media screen and (min-width: 1024px) {
  2133. -webkit-box-pack: center;
  2134. justify-content: center;
  2135. align-items: flex-start;
  2136. padding-inline-start: var(--spacing-relative-2xl);
  2137. padding-inline-end: var(--spacing-relative-2xl);
  2138. padding-block-start: 0px;
  2139. }
  2140. }
  2141. .product--card--title {
  2142. margin: 0px;
  2143. color: rgb(252, 252, 253);
  2144. letter-spacing: 0px;
  2145. font-weight: 400;
  2146. text-decoration: none;
  2147. font-size: 24px;
  2148. line-height: 36px;
  2149. font-stretch: 130%;
  2150. @media (min-width: 1024px) {
  2151. font-size: 28px;
  2152. line-height: 40px;
  2153. }
  2154. @media (min-width: 1440px) {
  2155. font-size: 32px;
  2156. line-height: 44px;
  2157. }
  2158. @media (min-width: 1920px) {
  2159. font-size: 36px;
  2160. line-height: 52px;
  2161. }
  2162. }
  2163. .product--card--smalltitle {
  2164. margin: 0px;
  2165. color: rgb(252, 252, 253);
  2166. letter-spacing: 0px;
  2167. font-weight: 400;
  2168. text-decoration: none;
  2169. font-size: 20px;
  2170. line-height: 32px;
  2171. font-stretch: 130%;
  2172. @media (min-width: 1440px) {
  2173. font-size: 24px;
  2174. line-height: 36px;
  2175. }
  2176. }
  2177. .product--card--subtitle {
  2178. margin: 0;
  2179. color: rgba(252, 252, 253, 0.8);
  2180. font-size: 16px;
  2181. line-height: 24px;
  2182. }
  2183. .product--card--description {
  2184. margin-top: 8px;
  2185. p {
  2186. margin: 0px;
  2187. color: rgba(252, 252, 253, 0.7);
  2188. letter-spacing: 0px;
  2189. font-weight: 400;
  2190. text-decoration: none;
  2191. font-size: 16px;
  2192. line-height: 24px;
  2193. font-stretch: 105%;
  2194. }
  2195. }
  2196. .product--card--small--description{
  2197. margin-top:20px;
  2198. p {
  2199. margin: 0px;
  2200. color: rgba(252, 252, 253, 0.7);
  2201. letter-spacing: 0px;
  2202. font-weight: 400;
  2203. text-decoration: none;
  2204. font-size: 12px;
  2205. line-height: 20px;
  2206. font-stretch: 105%;
  2207. }
  2208. }
  2209. .product--card--actions {
  2210. margin-top: 24px;
  2211. display: flex;
  2212. gap: 16px;
  2213. flex-wrap: wrap;
  2214. }
  2215. @media (max-width: 768px) {
  2216. padding: 24px;
  2217. gap: 24px;
  2218. }
  2219. }
  2220. }
  2221. .radius--img--wrap{
  2222. overflow: hidden;
  2223. border-radius: 20px;
  2224. }
  2225. // 딜러 검색 드롭다운 스타일
  2226. .dealer--search--section {
  2227. width: 100%;
  2228. max-width: 1920px;
  2229. margin: 0 auto;
  2230. padding: 80px 96px;
  2231. background-color: hsla(216, 23%, 8%, 1);
  2232. }
  2233. .dealer--search--container {
  2234. display: flex;
  2235. flex-direction: column;
  2236. gap: 48px;
  2237. border-top: 1px solid rgba(252, 252, 253, 0.15);
  2238. }
  2239. .dealer--category--wrap {
  2240. display: flex;
  2241. flex-direction: column;
  2242. }
  2243. .dealer--category--title {
  2244. font-size: 28px;
  2245. font-weight: 600;
  2246. margin: 0 0 24px 0;
  2247. color: rgb(252, 252, 253);
  2248. padding-bottom: 16px;
  2249. border-bottom: 2px solid rgba(252, 252, 253, 0.3);
  2250. }
  2251. .dealer--region--item {
  2252. border-bottom: 1px solid rgba(252, 252, 253, 0.15);
  2253. }
  2254. .dealer--region--header {
  2255. width: 100%;
  2256. display: flex;
  2257. justify-content: space-between;
  2258. align-items: center;
  2259. padding: 20px 24px;
  2260. background-color: transparent;
  2261. border: none;
  2262. color: rgb(252, 252, 253);
  2263. cursor: pointer;
  2264. transition: all 0.3s ease;
  2265. &:hover {
  2266. background-color: rgba(252, 252, 253, 0.05);
  2267. }
  2268. &.active {
  2269. background-color: rgba(252, 252, 253, 0.08);
  2270. }
  2271. }
  2272. .dealer--region--name {
  2273. font-size: 18px;
  2274. font-weight: 500;
  2275. }
  2276. .dealer--toggle--icon {
  2277. font-size: 28px;
  2278. line-height: 1;
  2279. transition: transform 0.3s ease;
  2280. }
  2281. .dealer--list--content {
  2282. padding: 0 24px 24px;
  2283. animation: slideDown 0.3s ease;
  2284. }
  2285. @keyframes slideDown {
  2286. from {
  2287. opacity: 0;
  2288. transform: translateY(-10px);
  2289. }
  2290. to {
  2291. opacity: 1;
  2292. transform: translateY(0);
  2293. }
  2294. }
  2295. .dealer--list {
  2296. list-style: none;
  2297. padding: 0;
  2298. padding-left:10px;
  2299. margin: 0;
  2300. display: flex;
  2301. flex-direction: column;
  2302. gap: 0px;
  2303. li {
  2304. margin: 0;
  2305. position: relative;
  2306. &:before{
  2307. content:'>';
  2308. font-size:12px;
  2309. margin-right:10px;
  2310. }
  2311. a{
  2312. text-decoration: underline;
  2313. }
  2314. }
  2315. }
  2316. .dealer--link {
  2317. display: inline-block;
  2318. color: rgba(252, 252, 253, 0.7);
  2319. text-decoration: none;
  2320. font-size: 16px;
  2321. transition: all 0.2s ease;
  2322. padding: 8px 0;
  2323. &:hover {
  2324. color: rgb(252, 252, 253);
  2325. text-decoration: underline;
  2326. }
  2327. }
  2328. // 반응형 처리
  2329. @media (max-width: 1024px) {
  2330. .dealer--search--section {
  2331. padding: 60px 48px;
  2332. }
  2333. .dealer--search--container {
  2334. gap: 40px;
  2335. }
  2336. .dealer--category--title {
  2337. font-size: 24px;
  2338. margin-bottom: 20px;
  2339. padding-bottom: 12px;
  2340. }
  2341. .dealer--region--header {
  2342. padding: 16px 20px;
  2343. }
  2344. .dealer--region--name {
  2345. font-size: 16px;
  2346. }
  2347. .dealer--list--content {
  2348. padding: 0 20px 20px;
  2349. }
  2350. .dealer--list {
  2351. gap: 6px;
  2352. }
  2353. }
  2354. @media (max-width: 768px) {
  2355. .dealer--search--section {
  2356. padding: 40px 24px;
  2357. }
  2358. .dealer--search--container {
  2359. gap: 32px;
  2360. }
  2361. .dealer--category--title {
  2362. font-size: 20px;
  2363. margin-bottom: 16px;
  2364. padding-bottom: 10px;
  2365. }
  2366. .dealer--region--header {
  2367. padding: 14px 16px;
  2368. }
  2369. .dealer--region--name {
  2370. font-size: 15px;
  2371. }
  2372. .dealer--toggle--icon {
  2373. font-size: 24px;
  2374. }
  2375. .dealer--list--content {
  2376. padding: 0 16px 16px;
  2377. }
  2378. .dealer--list {
  2379. gap: 6px;
  2380. }
  2381. .dealer--link {
  2382. font-size: 14px;
  2383. padding: 6px 0;
  2384. }
  2385. }
  2386. // 딜러 검색 페이지 스타일
  2387. .dealer--search--section{
  2388. padding: 64px 96px;
  2389. .dealer--search--container{
  2390. margin: 0 auto;
  2391. }
  2392. .dealer--category--wrap{
  2393. display: flex;
  2394. flex-direction: column;
  2395. //gap: 16px;
  2396. }
  2397. .dealer--region--item{
  2398. border-bottom: 1px solid rgba(252, 252, 253, 0.1);
  2399. }
  2400. .dealer--region--header{
  2401. width: 100%;
  2402. display: flex;
  2403. justify-content: space-between;
  2404. align-items: center;
  2405. padding: 24px 0;
  2406. background: transparent;
  2407. border: none;
  2408. color: #fcfcfd;
  2409. font-size: 24px;
  2410. font-family: 'AudiType';
  2411. font-weight: 400;
  2412. transition: all 0.3s;
  2413. &:hover{
  2414. color: rgba(252, 252, 253, 0.7);
  2415. }
  2416. &.active{
  2417. color: #fcfcfd;
  2418. }
  2419. }
  2420. .dealer--region--name{
  2421. font-size: 24px;
  2422. }
  2423. .dealer--toggle--icon{
  2424. font-size: 32px;
  2425. line-height: 1;
  2426. font-weight: 300;
  2427. }
  2428. .dealer--list--content{
  2429. padding-bottom: 24px;
  2430. }
  2431. .dealer--list{
  2432. display: flex;
  2433. flex-direction: column;
  2434. gap: 16px;
  2435. >li{
  2436. list-style: none;
  2437. }
  2438. }
  2439. .dealer--link{
  2440. display: inline-block;
  2441. color: rgba(252, 252, 253, 0.7);
  2442. font-size: 16px;
  2443. text-decoration: underline;
  2444. text-underline-offset: 4px;
  2445. transition: all 0.3s;
  2446. background: transparent;
  2447. border: none;
  2448. font-family: 'AudiType';
  2449. font-weight: 400;
  2450. padding: 0;
  2451. cursor: pointer;
  2452. &:hover{
  2453. color: #fcfcfd;
  2454. }
  2455. }
  2456. }
  2457. // 딜러 팝업 스타일
  2458. .dealer--popup--overlay{
  2459. position: fixed;
  2460. top: 0;
  2461. left: 0;
  2462. width: 100%;
  2463. height: 100%;
  2464. background-color: rgba(2, 2, 3, 0.85);
  2465. display: flex;
  2466. justify-content: center;
  2467. align-items: center;
  2468. z-index: 9999;
  2469. padding: 20px;
  2470. }
  2471. .dealer--popup--container{
  2472. position: relative;
  2473. background-color: #1a1d23;
  2474. border-radius: 20px;
  2475. max-width: 1024px;
  2476. width: 100%;
  2477. max-height: 90vh;
  2478. overflow-y: auto;
  2479. box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  2480. &::-webkit-scrollbar{
  2481. width: 8px;
  2482. }
  2483. &::-webkit-scrollbar-track{
  2484. background: transparent;
  2485. }
  2486. &::-webkit-scrollbar-thumb{
  2487. background: rgba(252, 252, 253, 0.2);
  2488. border-radius: 4px;
  2489. &:hover{
  2490. background: rgba(252, 252, 253, 0.3);
  2491. }
  2492. }
  2493. @media (min-width: 320px) {
  2494. padding: 16px;
  2495. }
  2496. @media (min-width: 375px) {
  2497. padding: 28px;
  2498. }
  2499. @media (min-width: 768px) {
  2500. padding: 48px;
  2501. }
  2502. @media (min-width: 1024px) {
  2503. padding: 56px;
  2504. }
  2505. @media (min-width: 1440px) {
  2506. padding: 64px;
  2507. }
  2508. }
  2509. .dealer--popup--close{
  2510. position: absolute;
  2511. top: 24px;
  2512. right: 24px;
  2513. width: 40px;
  2514. height: 40px;
  2515. background: transparent;
  2516. border: none;
  2517. cursor: pointer;
  2518. z-index: 1;
  2519. display: flex;
  2520. justify-content: center;
  2521. align-items: center;
  2522. border-radius: 50%;
  2523. transition: all 0.3s;
  2524. &:hover{
  2525. background-color: rgba(252, 252, 253, 0.1);
  2526. }
  2527. .close--icon{
  2528. width: 24px;
  2529. height: 24px;
  2530. position: relative;
  2531. &::before,
  2532. &::after{
  2533. content: '';
  2534. position: absolute;
  2535. top: 50%;
  2536. left: 50%;
  2537. width: 20px;
  2538. height: 2px;
  2539. background-color: #fcfcfd;
  2540. }
  2541. &::before{
  2542. transform: translate(-50%, -50%) rotate(45deg);
  2543. }
  2544. &::after{
  2545. transform: translate(-50%, -50%) rotate(-45deg);
  2546. }
  2547. }
  2548. }
  2549. .dealer--popup--content{
  2550. margin: auto;
  2551. max-width: var(--max-content-width);
  2552. display: grid;
  2553. grid-template-columns: 1fr;
  2554. grid-template-rows: 1fr;
  2555. grid-template-areas:"media" "textarea";
  2556. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  2557. @media (min-width: 1024px) {
  2558. grid-template-columns: 1fr 1fr;
  2559. grid-template-areas: "media textarea";
  2560. }
  2561. @media (min-width: 1440px) {
  2562. grid-template-columns: 1fr 1fr;
  2563. grid-template-areas: "media textarea";
  2564. }
  2565. .dealer--thumb--wrap{
  2566. border-radius: 20px;
  2567. overflow: hidden;
  2568. }
  2569. .dealer--infos--wrap{
  2570. grid-area: textarea;
  2571. align-self: center;
  2572. @media screen and (min-width: 320px) {
  2573. padding-block-start: var(--spacing-relative-lg);
  2574. }
  2575. @media screen and (min-width: 1024px) {
  2576. display: flex;
  2577. flex-direction: column;
  2578. -webkit-box-pack: center;
  2579. justify-content: center;
  2580. align-items: flex-start;
  2581. padding-inline-start: var(--spacing-relative-2xl);
  2582. padding-inline-end: var(--spacing-relative-2xl);
  2583. padding-block-start: 0px;
  2584. }
  2585. }
  2586. }
  2587. .dealer--popup--header{
  2588. .dealer--name{
  2589. margin: 0px;
  2590. color: rgb(252, 252, 253);
  2591. font-family: AudiType, sans-serif;
  2592. letter-spacing: 0px;
  2593. font-weight: 400;
  2594. text-decoration: none;
  2595. font-size: 24px;
  2596. line-height: 36px;
  2597. font-stretch: 130%;
  2598. @media (min-width: 1024px) {
  2599. font-size: 28px;
  2600. line-height: 40px;
  2601. }
  2602. @media (min-width: 1440px) {
  2603. font-size: 32px;
  2604. line-height: 44px;
  2605. }
  2606. @media (min-width: 1920px) {
  2607. font-size: 36px;
  2608. line-height: 52px;
  2609. }
  2610. }
  2611. .dealer--type{
  2612. display: inline-block;
  2613. font-size: 14px;
  2614. color: rgba(252, 252, 253, 0.7);
  2615. padding: 4px 12px;
  2616. background-color: rgba(252, 252, 253, 0.1);
  2617. border-radius: 100px;
  2618. }
  2619. }
  2620. .dealer--popup--body{
  2621. display: flex;
  2622. flex-direction: column;
  2623. gap: 8px;
  2624. padding-top:8px;
  2625. }
  2626. .dealer--info--section{
  2627. display: flex;
  2628. flex-direction: column;
  2629. gap: 8px;
  2630. .info--label{
  2631. margin: 0px;
  2632. color: rgba(252, 252, 253, 0.7);
  2633. font-family: AudiType, sans-serif;
  2634. letter-spacing: 0px;
  2635. font-weight: 400;
  2636. text-decoration: none;
  2637. font-size: 16px;
  2638. line-height: 24px;
  2639. font-stretch: 105%;
  2640. a{
  2641. word-break: break-all;
  2642. }
  2643. }
  2644. .phone--link,
  2645. .email--link,
  2646. .website--link{
  2647. color: #fcfcfd;
  2648. text-decoration: underline;
  2649. text-underline-offset: 4px;
  2650. transition: all 0.3s;
  2651. &:hover{
  2652. color: rgba(252, 252, 253, 0.7);
  2653. }
  2654. }
  2655. .business--hours--item{
  2656. line-height: 1.8;
  2657. }
  2658. }
  2659. .dealer--popup--footer{
  2660. margin-top: 40px;
  2661. padding-top: 24px;
  2662. border-top: 1px solid rgba(252, 252, 253, 0.1);
  2663. display: flex;
  2664. justify-content: center;
  2665. }
  2666. .dealer--popup--empty{
  2667. padding: 80px 48px;
  2668. text-align: center;
  2669. >p{
  2670. font-size: 16px;
  2671. color: rgba(252, 252, 253, 0.7);
  2672. }
  2673. }
  2674. // 팝업 페이드 애니메이션
  2675. .dealer--popup--fade-enter-active,
  2676. .dealer--popup--fade-leave-active{
  2677. transition: opacity 0.3s ease;
  2678. .dealer--popup--container{
  2679. transition: transform 0.3s ease, opacity 0.3s ease;
  2680. }
  2681. }
  2682. .dealer--popup--fade-enter-from,
  2683. .dealer--popup--fade-leave-to{
  2684. opacity: 0;
  2685. .dealer--popup--container{
  2686. transform: scale(0.95);
  2687. opacity: 0;
  2688. }
  2689. }
  2690. .dealer--popup--fade-enter-to,
  2691. .dealer--popup--fade-leave-from{
  2692. opacity: 1;
  2693. .dealer--popup--container{
  2694. transform: scale(1);
  2695. opacity: 1;
  2696. }
  2697. }
  2698. /*=================================================
  2699. |버튼 리스트 css
  2700. |START
  2701. =================================================*/
  2702. .light--gray--btn{
  2703. border: 0px;
  2704. flex-direction: column;
  2705. -webkit-box-align: center;
  2706. align-items: center;
  2707. -webkit-box-pack: center;
  2708. justify-content: center;
  2709. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  2710. transition-duration: 250ms;
  2711. border-radius: 999px;
  2712. cursor: pointer;
  2713. display: inline-flex;
  2714. box-sizing: border-box;
  2715. text-align: center;
  2716. letter-spacing: 0px;
  2717. font-weight: 400;
  2718. text-decoration: none;
  2719. font-size: 12px;
  2720. line-height: 16px;
  2721. font-stretch: 105%;
  2722. padding: 8px 16px;
  2723. min-height: 36px;
  2724. background: rgb(101, 112, 129);
  2725. color: rgb(252, 252, 253);
  2726. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  2727. &:hover{
  2728. color:rgb(252,252,253);
  2729. background-color: rgb(44,52,63);
  2730. box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset;
  2731. }
  2732. }
  2733. .default--round--btn {
  2734. flex-direction: column;
  2735. -webkit-box-align: center;
  2736. align-items: center;
  2737. -webkit-box-pack: center;
  2738. justify-content: center;
  2739. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2740. transition-duration: 250ms;
  2741. border-radius: 999px;
  2742. cursor: pointer;
  2743. display: inline-flex;
  2744. border: 0px;
  2745. letter-spacing: 0px;
  2746. font-weight: 400;
  2747. text-decoration: none;
  2748. font-size: 14px;
  2749. line-height: 20px;
  2750. font-stretch: 105%;
  2751. padding: 12px 24px;
  2752. min-height: 48px;
  2753. background-color: rgb(24, 29, 37);
  2754. color: rgb(252, 252, 253);
  2755. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2756. transition-property: color, box-shadow, background-color;
  2757. &.reverse{
  2758. background: rgba(44,52,63);
  2759. box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
  2760. &:hover {
  2761. background-color: rgb(24, 29, 37);
  2762. color: rgb(252, 252, 253);
  2763. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2764. }
  2765. }
  2766. &:hover {
  2767. background: rgba(44,52,63);
  2768. box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
  2769. }
  2770. &:active {
  2771. transform: translateY(0);
  2772. }
  2773. }
  2774. /*=================================================
  2775. |버튼 리스트 css
  2776. |end
  2777. =================================================*/
  2778. /*=================================================
  2779. |모델 리스트 css
  2780. |start
  2781. =================================================*/
  2782. .models--page{
  2783. .type--carousel{
  2784. padding:40px 0px;
  2785. .models--filter--section{
  2786. box-sizing: border-box;
  2787. padding: 0 var(--page-margin);
  2788. position: sticky;
  2789. top: 0px;
  2790. z-index: 85;
  2791. .filter--group{
  2792. .filter--dropdown--list{
  2793. >h2{
  2794. margin: 0 0 var(--spacing-relative-2xs) 0;
  2795. color: rgba(252, 252, 253, 0.7);
  2796. letter-spacing: 0px;
  2797. font-weight: 400;
  2798. text-decoration: none;
  2799. font-size: 12px;
  2800. line-height: 20px;
  2801. font-stretch: 105%;
  2802. padding-bottom:12px;
  2803. }
  2804. .filter--dropdown{
  2805. display: flex;
  2806. gap:10px;
  2807. flex-wrap:wrap;
  2808. margin-bottom:30px;
  2809. button{
  2810. border-radius: 10px;
  2811. box-sizing: border-box;
  2812. display: inline-flex;
  2813. -webkit-box-pack: justify;
  2814. justify-content: space-between;
  2815. -webkit-box-align: center;
  2816. align-items: center;
  2817. gap: 8px;
  2818. letter-spacing: 0px;
  2819. font-weight: 400;
  2820. text-decoration: none;
  2821. font-size: 14px;
  2822. line-height: 20px;
  2823. font-stretch: 105%;
  2824. padding: 4px 12px;
  2825. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2826. transition-duration: 250ms;
  2827. transition-property: background-color, box-shadow, color;
  2828. min-height: 36px;
  2829. cursor: pointer;
  2830. background-color: rgb(24, 29, 37);
  2831. color: rgb(252, 252, 253);
  2832. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2833. &.active{
  2834. background-color: rgb(64, 74, 89);
  2835. color: rgb(252, 252, 253);
  2836. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  2837. }
  2838. }
  2839. }
  2840. }
  2841. }
  2842. }
  2843. .models--list--wrap{
  2844. .all--models--wrap{
  2845. padding: 0px var(--page-margin);
  2846. display: flex;
  2847. align-items: center;
  2848. justify-content: space-between;
  2849. margin: 0 0 var(--spacing-relative-2xs) 0;
  2850. .all--models{
  2851. color: rgba(252, 252, 253, 0.7);
  2852. letter-spacing: 0px;
  2853. font-weight: 400;
  2854. text-decoration: none;
  2855. font-size: 12px;
  2856. line-height: 20px;
  2857. font-stretch: 105%;
  2858. padding-bottom:12px;
  2859. }
  2860. .nav--btn--wrap{
  2861. display: flex;
  2862. align-items: center;
  2863. gap:20px;
  2864. button{
  2865. &.nav--prev--btn{
  2866. transform: rotate(180deg);
  2867. }
  2868. &.swiper-button-disabled{
  2869. opacity: .2;
  2870. cursor: not-allowed;
  2871. }
  2872. }
  2873. }
  2874. }
  2875. .models--list{
  2876. width:100%;
  2877. display: flex;
  2878. flex-wrap:wrap;
  2879. gap:10px;
  2880. > .swiper{
  2881. width:100%;
  2882. padding: 0 0 0 var(--page-margin);
  2883. }
  2884. .model--item{
  2885. --gradient-start: hsla(216, 20%, 17%, 1);
  2886. --gradient-end: hsla(216, 21%, 12%, 1);
  2887. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2888. transition-duration: 250ms;
  2889. transition-property: --gradient-start, --gradient-end, box-shadow;
  2890. padding: 16px;
  2891. overflow: hidden;
  2892. border-radius: 20px;
  2893. border: none;
  2894. cursor: pointer;
  2895. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2896. backdrop-filter: blur(40px);
  2897. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  2898. text-align: left;
  2899. max-width:220px;
  2900. &.active{
  2901. --gradient-start: hsla(216, 16%, 30%, 1);
  2902. --gradient-end: hsla(216, 16%, 30%, 1);
  2903. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2904. transition-duration: 250ms;
  2905. transition-property: --gradient-start, --gradient-end, box-shadow;
  2906. padding: 16px;
  2907. overflow: hidden;
  2908. border-radius: 20px;
  2909. border: none;
  2910. cursor: pointer;
  2911. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  2912. backdrop-filter: blur(40px);
  2913. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  2914. text-align: left;
  2915. .model--info--wrap{
  2916. .ico{
  2917. transform: rotate(-90deg);
  2918. }
  2919. }
  2920. }
  2921. .model--name{
  2922. position: relative;
  2923. margin: 0px;
  2924. color: rgba(252, 252, 253, 0.7);
  2925. letter-spacing: 0px;
  2926. font-weight: 400;
  2927. text-decoration: none;
  2928. font-size: 16px;
  2929. line-height: 24px;
  2930. font-stretch: 105%;
  2931. letter-spacing: -1px;
  2932. display: flex;
  2933. align-items: center;
  2934. justify-content: space-between;
  2935. .etron--wrap{
  2936. min-height:28px;
  2937. .etron{
  2938. margin: 0px;
  2939. border-radius: 10px;
  2940. box-sizing: border-box;
  2941. display: inline-flex;
  2942. -webkit-box-pack: justify;
  2943. justify-content: space-between;
  2944. -webkit-box-align: center;
  2945. align-items: center;
  2946. gap: 8px;
  2947. letter-spacing: 0px;
  2948. font-weight: 400;
  2949. text-decoration: none;
  2950. font-size: 12px;
  2951. line-height: 16px;
  2952. font-stretch: 105%;
  2953. padding: 4px 12px;
  2954. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  2955. transition-duration: 250ms;
  2956. transition-property: background-color, box-shadow, color;
  2957. min-height: 28px;
  2958. background-color: rgba(154, 163, 177, 0.1);
  2959. color: rgb(252, 252, 253);
  2960. box-shadow: rgba(128, 128, 128, 0) 0px 0px 0px 1px inset;
  2961. }
  2962. }
  2963. }
  2964. .model--image--wrap{
  2965. display: block;
  2966. aspect-ratio: 7 / 3;
  2967. overflow: hidden;
  2968. padding: 0px;
  2969. margin-bottom:20px;
  2970. img{
  2971. width: 100%;
  2972. height: 100%;
  2973. object-fit: cover;
  2974. }
  2975. }
  2976. .model--info--wrap{
  2977. margin: 0px;
  2978. color: rgba(252, 252, 253, 0.7);
  2979. letter-spacing: 0px;
  2980. font-weight: 400;
  2981. text-decoration: none;
  2982. font-size: 12px;
  2983. line-height: 20px;
  2984. font-stretch: 105%;
  2985. display: flex;
  2986. align-items: center;
  2987. justify-content: space-between;
  2988. .ico{
  2989. width: 24px;
  2990. height: 24px;
  2991. background-image: url(/img/ico--arrow.svg);
  2992. transform: rotate(90deg);
  2993. }
  2994. }
  2995. }
  2996. }
  2997. .models--list--car{
  2998. height: 0px;
  2999. overflow: hidden;
  3000. padding: 0px;
  3001. z-index: 1;
  3002. &.active{
  3003. height: 488px;
  3004. overflow: hidden;
  3005. padding: 28px var(--page-margin);
  3006. z-index: 1;
  3007. }
  3008. @media (min-width: 768px) {
  3009. transition-property: height;
  3010. transition-duration: 0.2s;
  3011. transition-timing-function: ease-in-out;
  3012. }
  3013. .car--list{
  3014. .car--item{
  3015. max-width: 332px;
  3016. min-width: 285px;
  3017. }
  3018. }
  3019. }
  3020. }
  3021. }
  3022. .models--container{
  3023. position: relative;
  3024. background-color: rgb(16, 19, 25);
  3025. @media (min-width: 1024px) {
  3026. display: grid;
  3027. grid-template-columns: 1fr 3fr;
  3028. }
  3029. .models--filter--section{
  3030. box-sizing: border-box;
  3031. padding: 0 var(--page-margin);
  3032. position: sticky;
  3033. top: 0px;
  3034. z-index: 85;
  3035. background-color: rgb(44, 52, 63);
  3036. @media (min-width: 1024px) {
  3037. background-color: transparent;
  3038. height: calc(100vh);
  3039. min-width: 320px;
  3040. padding: var(--spacing-relative-2xl) 0 var(--spacing-relative-2xl) var(--page-margin);
  3041. overflow-y: auto;
  3042. z-index: auto;
  3043. }
  3044. @media (min-width: 1280px) {
  3045. min-width: 388px;
  3046. }
  3047. @media (min-width: 1440px) {
  3048. min-width: auto;
  3049. }
  3050. .filter--group{
  3051. .filter--dropdown--list{
  3052. >h2{
  3053. margin: 0 0 var(--spacing-relative-2xs) 0;
  3054. color: rgba(252, 252, 253, 0.7);
  3055. letter-spacing: 0px;
  3056. font-weight: 400;
  3057. text-decoration: none;
  3058. font-size: 12px;
  3059. line-height: 20px;
  3060. font-stretch: 105%;
  3061. padding-bottom:12px;
  3062. }
  3063. .filter--dropdown{
  3064. display: flex;
  3065. gap:10px;
  3066. flex-wrap:wrap;
  3067. margin-bottom:30px;
  3068. button{
  3069. border-radius: 10px;
  3070. box-sizing: border-box;
  3071. display: inline-flex;
  3072. -webkit-box-pack: justify;
  3073. justify-content: space-between;
  3074. -webkit-box-align: center;
  3075. align-items: center;
  3076. gap: 8px;
  3077. letter-spacing: 0px;
  3078. font-weight: 400;
  3079. text-decoration: none;
  3080. font-size: 14px;
  3081. line-height: 20px;
  3082. font-stretch: 105%;
  3083. padding: 4px 12px;
  3084. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3085. transition-duration: 250ms;
  3086. transition-property: background-color, box-shadow, color;
  3087. min-height: 36px;
  3088. cursor: pointer;
  3089. background-color: rgb(24, 29, 37);
  3090. color: rgb(252, 252, 253);
  3091. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  3092. &.active{
  3093. background-color: rgb(64, 74, 89);
  3094. color: rgb(252, 252, 253);
  3095. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  3096. }
  3097. }
  3098. }
  3099. }
  3100. }
  3101. }
  3102. .models--list--wrap{
  3103. @media (min-width: 1024px) {
  3104. padding: var(--spacing-relative-2xl) var(--page-margin) var(--spacing-relative-2xl) 0;
  3105. }
  3106. .all--models{
  3107. margin: 0 0 var(--spacing-relative-2xs) 0;
  3108. color: rgba(252, 252, 253, 0.7);
  3109. letter-spacing: 0px;
  3110. font-weight: 400;
  3111. text-decoration: none;
  3112. font-size: 12px;
  3113. line-height: 20px;
  3114. font-stretch: 105%;
  3115. padding-bottom:12px;
  3116. }
  3117. .models--list{
  3118. width:100%;
  3119. display: flex;
  3120. flex-wrap:wrap;
  3121. gap:20px;
  3122. .model--item{
  3123. --gradient-start: hsla(216, 20%, 17%, 1);
  3124. --gradient-end: hsla(216, 21%, 12%, 1);
  3125. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3126. transition-duration: 250ms;
  3127. transition-property: --gradient-start, --gradient-end, box-shadow;
  3128. padding: 16px;
  3129. overflow: hidden;
  3130. border-radius: 20px;
  3131. border: none;
  3132. cursor: pointer;
  3133. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  3134. backdrop-filter: blur(40px);
  3135. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  3136. text-align: left;
  3137. max-width:calc( (100% - 60px) / 4);
  3138. .model--name{
  3139. position: relative;
  3140. margin: 0px;
  3141. color: rgba(252, 252, 253, 0.7);
  3142. letter-spacing: 0px;
  3143. font-weight: 400;
  3144. text-decoration: none;
  3145. font-size: 16px;
  3146. line-height: 24px;
  3147. font-stretch: 105%;
  3148. display: flex;
  3149. align-items: center;
  3150. justify-content: space-between;
  3151. .etron--wrap{
  3152. min-height:28px;
  3153. .etron{
  3154. margin: 0px;
  3155. border-radius: 10px;
  3156. box-sizing: border-box;
  3157. display: inline-flex;
  3158. -webkit-box-pack: justify;
  3159. justify-content: space-between;
  3160. -webkit-box-align: center;
  3161. align-items: center;
  3162. gap: 8px;
  3163. letter-spacing: 0px;
  3164. font-weight: 400;
  3165. text-decoration: none;
  3166. font-size: 12px;
  3167. line-height: 16px;
  3168. font-stretch: 105%;
  3169. padding: 4px 12px;
  3170. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  3171. transition-duration: 250ms;
  3172. transition-property: background-color, box-shadow, color;
  3173. min-height: 28px;
  3174. background-color: rgba(154, 163, 177, 0.1);
  3175. color: rgb(252, 252, 253);
  3176. box-shadow: rgba(128, 128, 128, 0) 0px 0px 0px 1px inset;
  3177. }
  3178. }
  3179. }
  3180. .model--image--wrap{
  3181. display: block;
  3182. aspect-ratio: 7 / 3;
  3183. overflow: hidden;
  3184. padding: 0px;
  3185. margin-bottom:20px;
  3186. img{
  3187. width: 100%;
  3188. height: 100%;
  3189. object-fit: cover;
  3190. }
  3191. }
  3192. .model--info--wrap{
  3193. margin: 0px;
  3194. color: rgba(252, 252, 253, 0.7);
  3195. letter-spacing: 0px;
  3196. font-weight: 400;
  3197. text-decoration: none;
  3198. font-size: 12px;
  3199. line-height: 20px;
  3200. font-stretch: 105%;
  3201. display: flex;
  3202. align-items: center;
  3203. justify-content: space-between;
  3204. .ico{
  3205. width: 24px;
  3206. height: 24px;
  3207. background-image: url(/img/ico--arrow.svg);
  3208. }
  3209. }
  3210. }
  3211. }
  3212. }
  3213. }
  3214. .models--list--car{
  3215. .all--car--title{
  3216. margin: 0px;
  3217. color: rgba(252, 252, 253, 0.7);
  3218. letter-spacing: 0px;
  3219. font-weight: 400;
  3220. text-decoration: none;
  3221. font-size: 12px;
  3222. line-height: 20px;
  3223. font-stretch: 105%;
  3224. padding-bottom:12px;
  3225. margin: 0 0 var(--spacing-relative-2xs) 0;
  3226. }
  3227. .car--list{
  3228. display: flex;
  3229. flex-wrap: wrap;
  3230. gap:20px;
  3231. .car--item{
  3232. width:calc( (100% - 40px) / 3 );
  3233. overflow: hidden;
  3234. height: calc(100% - var(--spacing-relative-lg));
  3235. background-color: rgba(154, 163, 177, 0.1);
  3236. border-radius: 20px;
  3237. padding-top:24px;
  3238. padding-bottom:24px;
  3239. .car--image{
  3240. img{
  3241. width:100%;
  3242. }
  3243. }
  3244. .car--info{
  3245. padding-top:24px;
  3246. padding-left: 24px;
  3247. padding-right: 24px;
  3248. .car--link{
  3249. margin: 0px 0px 12px;
  3250. margin-top:24px;
  3251. border: 0px;
  3252. flex-direction: column;
  3253. -webkit-box-align: center;
  3254. align-items: center;
  3255. -webkit-box-pack: center;
  3256. justify-content: center;
  3257. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3258. transition-duration: 250ms;
  3259. border-radius: 999px;
  3260. cursor: pointer;
  3261. display: inline-flex;
  3262. box-sizing: border-box;
  3263. text-align: center;
  3264. font-family: AudiType, sans-serif;
  3265. letter-spacing: 0px;
  3266. font-weight: 400;
  3267. text-decoration: none;
  3268. font-size: 14px;
  3269. line-height: 20px;
  3270. font-stretch: 105%;
  3271. padding: 12px 24px;
  3272. min-height: 48px;
  3273. width: 100%;
  3274. background: rgb(101, 112, 129);
  3275. color: rgb(252, 252, 253);
  3276. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  3277. transition-property: color, background, box-shadow;
  3278. }
  3279. .car--name{
  3280. margin: 0px;
  3281. color: rgb(252, 252, 253);
  3282. letter-spacing: 0px;
  3283. font-weight: 700;
  3284. text-decoration: none;
  3285. font-size: 16px;
  3286. line-height: 24px;
  3287. font-stretch: 130%;
  3288. min-height:64px;
  3289. @media (min-width: 1440px) {
  3290. font-size: 18px;
  3291. line-height: 28px;
  3292. }
  3293. @media (min-width: 1920px) {
  3294. font-size: 20px;
  3295. line-height: 32px;
  3296. }
  3297. }
  3298. }
  3299. .bedge--wrap{
  3300. display: flex;
  3301. padding-left: 24px;
  3302. padding-right: 24px;
  3303. gap: var(--spacing-relative-2xs);
  3304. min-height:28px;
  3305. .etron{
  3306. margin: 0px;
  3307. border-radius: 10px;
  3308. box-sizing: border-box;
  3309. display: inline-flex;
  3310. -webkit-box-pack: justify;
  3311. justify-content: space-between;
  3312. -webkit-box-align: center;
  3313. align-items: center;
  3314. gap: 8px;
  3315. letter-spacing: 0px;
  3316. font-weight: 400;
  3317. text-decoration: none;
  3318. font-size: 12px;
  3319. line-height: 16px;
  3320. font-stretch: 105%;
  3321. padding: 4px 12px;
  3322. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3323. transition-duration: 250ms;
  3324. transition-property: background-color, box-shadow, color;
  3325. min-height: 28px;
  3326. background-color: rgba(154, 163, 177, 0.1);
  3327. color: rgb(252, 252, 253);
  3328. box-shadow: rgba(128, 128, 128, 0) 0px 0px 0px 1px inset;
  3329. letter-spacing: -1px;
  3330. }
  3331. }
  3332. }
  3333. }
  3334. }
  3335. }
  3336. header{
  3337. width: 100%;
  3338. .header--wrap{
  3339. background-color: #020203;
  3340. max-width: 1920px;
  3341. width: 100%;
  3342. margin: 0 auto;
  3343. height: 72px;
  3344. padding: 0 96px;
  3345. display: flex;
  3346. align-items: center;
  3347. .header--logo--wrap{
  3348. margin-right: 40px;
  3349. a{
  3350. strong{
  3351. clip: rect(1px, 1px, 1px, 1px);
  3352. height: 1px;
  3353. overflow: hidden;
  3354. position: absolute;
  3355. width: 1px;
  3356. }
  3357. }
  3358. }
  3359. }
  3360. .header--menu--wrap{
  3361. display: flex;
  3362. gap: 24px;
  3363. >a{
  3364. color: #fcfcfdb2;
  3365. &:hover{
  3366. color: hsla(216, 33%, 99%, 1);
  3367. }
  3368. }
  3369. }
  3370. .header--search--wrap{
  3371. margin-left: auto;
  3372. display: flex;
  3373. .search--btn{
  3374. border-radius: 50%;
  3375. padding: 0;
  3376. background-image: url(/img/ico--search.svg);
  3377. background-repeat: no-repeat;
  3378. background-position: center;
  3379. background-color: transparent;
  3380. width: 48px;
  3381. height: 48px;
  3382. }
  3383. }
  3384. }
  3385. footer{
  3386. width: 100%;
  3387. //--one-footer-color-black: hsla(216, 26%, 1%, 1);
  3388. --one-footer-color-white: hsla(216, 33%, 99%, 1);
  3389. --one-footer-neutral-5: hsla(216, 26%, 1%, 0.6);
  3390. --one-footer-neutral-10: hsla(216, 17%, 26%, 1);
  3391. --one-footer-neutral-20: hsla(216, 14%, 35%, 1);
  3392. --one-footer-neutral-70: hsla(216, 33%, 99%, 0.6);
  3393. --one-footer-side-spacing: 16px;
  3394. --one-footer-space-xs: var(--spacing-relative-xs);
  3395. --one-footer-space-s: var(--spacing-relative-sm);
  3396. --one-footer-space-m: var(--spacing-relative-md);
  3397. --one-footer-space-l: var(--spacing-relative-lg);
  3398. --one-footer-space-xl: var(--spacing-relative-xl);
  3399. --one-footer-space-xxl: var(--spacing-relative-2xl);
  3400. --one-footer-space-xxxl: var(--spacing-relative-3xl);
  3401. background: var(--one-footer-color-black);
  3402. box-sizing: border-box;
  3403. color: var(--one-footer-color-white);
  3404. @media (min-width: 375px) {
  3405. --one-footer-side-spacing: 28px;
  3406. }
  3407. @media (min-width: 768px) {
  3408. --one-footer-side-spacing: 40px;
  3409. }
  3410. @media (min-width: 1024px) {
  3411. --one-footer-side-spacing: 60px;
  3412. }
  3413. .footer--wrap{
  3414. background-color: #020203;
  3415. max-width: 1920px;
  3416. width: 100%;
  3417. margin: 0 auto;
  3418. padding: 40px 96px;
  3419. display: flex;
  3420. flex-direction: column;
  3421. .footer--site--map{
  3422. width:100%;
  3423. >ul{
  3424. display: block;
  3425. list-style: none;
  3426. padding: 0px;
  3427. width: 100%;
  3428. @media (min-width: 768px) {
  3429. display: flex;
  3430. flex-flow: wrap;
  3431. margin: 28px auto;
  3432. width: 100%;
  3433. }
  3434. >li{
  3435. margin-bottom: -1px;
  3436. >ul{
  3437. >li{
  3438. &:first-child{
  3439. padding-top: 12px;
  3440. }
  3441. padding: 0 20px var(--one-footer-space-s);
  3442. }
  3443. }
  3444. @media (min-width: 768px) {
  3445. //margin: 0px 24px 40px 0px;
  3446. width: calc(33.333%);
  3447. &:first-of-type {
  3448. margin-top: 0px;
  3449. }
  3450. >h2{
  3451. border: none!important;
  3452. }
  3453. >ul{
  3454. >li{
  3455. padding-left: 0;
  3456. padding-right: 0;
  3457. }
  3458. }
  3459. }
  3460. @media (min-width: 1440px) {
  3461. padding: 0px 24px 0px 0px;
  3462. width: 20%;
  3463. }
  3464. >h2{
  3465. color: var(--one-footer-color-white);
  3466. display: flex;
  3467. flex-flow: row;
  3468. -webkit-box-pack: justify;
  3469. justify-content: space-between;
  3470. padding: var(--one-footer-space-m) 20px;
  3471. width: 100%;
  3472. margin: 0px;
  3473. color: rgb(252, 252, 253);
  3474. letter-spacing: 0px;
  3475. font-weight: 400;
  3476. text-decoration: none;
  3477. font-size: 16px;
  3478. line-height: 24px;
  3479. font-stretch: 130%;
  3480. border-top: 1px solid hsla(216, 17%, 26%, 1);
  3481. border-bottom: 1px solid hsla(216, 17%, 26%, 1);
  3482. @media (min-width: 768px) {
  3483. padding: 0px;
  3484. width: auto;
  3485. margin-bottom: 24px;
  3486. }
  3487. @media (min-width: 1440px) {
  3488. font-size: 18px;
  3489. line-height: 28px;
  3490. }
  3491. @media (min-width: 1920px) {
  3492. font-size: 20px;
  3493. line-height: 32px;
  3494. }
  3495. }
  3496. }
  3497. }
  3498. }
  3499. }
  3500. }
  3501. // ============================================
  3502. // Admin Panel Dark Theme Styles
  3503. // ============================================
  3504. // Dark Theme Color Variables
  3505. :root {
  3506. --admin-bg-primary: #0f0f0f;
  3507. --admin-bg-secondary: #1a1a1a;
  3508. --admin-bg-tertiary: #252525;
  3509. --admin-text-primary: #ffffff;
  3510. --admin-text-secondary: #b3b3b3;
  3511. --admin-text-muted: #666666;
  3512. --admin-border-color: #333333;
  3513. --admin-accent-primary: #bb0a30;
  3514. --admin-accent-hover: #990825;
  3515. --admin-success: #10b981;
  3516. --admin-warning: #f59e0b;
  3517. --admin-error: #ef4444;
  3518. --admin-shadow: rgba(0, 0, 0, 0.5);
  3519. }
  3520. // Admin Login Page
  3521. .admin--login {
  3522. min-height: 100vh;
  3523. display: flex;
  3524. align-items: center;
  3525. justify-content: center;
  3526. background: linear-gradient(135deg, var(--admin-bg-primary) 0%, var(--admin-bg-secondary) 100%);
  3527. font-family: 'AudiType', sans-serif;
  3528. .login--container {
  3529. width: 100%;
  3530. max-width: 460px;
  3531. padding: 20px;
  3532. }
  3533. .login--box {
  3534. background: var(--admin-bg-secondary);
  3535. border-radius: 12px;
  3536. padding: 48px 40px;
  3537. box-shadow: 0 8px 32px var(--admin-shadow);
  3538. border: 1px solid var(--admin-border-color);
  3539. }
  3540. .login--logo {
  3541. text-align: center;
  3542. margin-bottom: 40px;
  3543. h1 {
  3544. font-size: 48px;
  3545. font-weight: 700;
  3546. color: var(--admin-text-primary);
  3547. margin: 0 0 8px 0;
  3548. letter-spacing: 4px;
  3549. }
  3550. .subtitle {
  3551. font-size: 14px;
  3552. color: var(--admin-text-secondary);
  3553. margin: 0;
  3554. }
  3555. }
  3556. .login--error {
  3557. background: rgba(239, 68, 68, 0.1);
  3558. border: 1px solid var(--admin-error);
  3559. color: var(--admin-error);
  3560. padding: 12px 16px;
  3561. border-radius: 6px;
  3562. margin-bottom: 20px;
  3563. font-size: 14px;
  3564. }
  3565. .login--form {
  3566. .form--group {
  3567. margin-bottom: 20px;
  3568. }
  3569. .form--input {
  3570. width: 100%;
  3571. padding: 14px 16px;
  3572. background: var(--admin-bg-tertiary);
  3573. border: 1px solid var(--admin-border-color);
  3574. border-radius: 6px;
  3575. color: var(--admin-text-primary);
  3576. font-size: 14px;
  3577. transition: all 0.3s ease;
  3578. font-family: 'AudiType', sans-serif;
  3579. &:focus {
  3580. outline: none;
  3581. border-color: var(--admin-accent-primary);
  3582. box-shadow: 0 0 0 3px rgba(187, 10, 48, 0.1);
  3583. }
  3584. &::placeholder {
  3585. color: var(--admin-text-muted);
  3586. }
  3587. &:disabled {
  3588. opacity: 0.5;
  3589. cursor: not-allowed;
  3590. }
  3591. }
  3592. .form--options {
  3593. display: flex;
  3594. justify-content: space-between;
  3595. align-items: center;
  3596. margin-bottom: 24px;
  3597. .checkbox--label {
  3598. display: flex;
  3599. align-items: center;
  3600. cursor: pointer;
  3601. font-size: 14px;
  3602. color: var(--admin-text-secondary);
  3603. input[type="checkbox"] {
  3604. margin-right: 8px;
  3605. cursor: pointer;
  3606. }
  3607. }
  3608. .forgot--password {
  3609. font-size: 14px;
  3610. color: var(--admin-accent-primary);
  3611. text-decoration: none;
  3612. transition: color 0.3s ease;
  3613. &:hover {
  3614. color: var(--admin-accent-hover);
  3615. }
  3616. }
  3617. }
  3618. .login--button {
  3619. width: 100%;
  3620. padding: 14px 16px;
  3621. background: var(--admin-accent-primary);
  3622. color: var(--admin-text-primary);
  3623. border: none;
  3624. border-radius: 6px;
  3625. font-size: 16px;
  3626. font-weight: 600;
  3627. cursor: pointer;
  3628. transition: all 0.3s ease;
  3629. font-family: 'AudiType', sans-serif;
  3630. &:hover:not(:disabled) {
  3631. background: var(--admin-accent-hover);
  3632. transform: translateY(-2px);
  3633. box-shadow: 0 4px 12px rgba(187, 10, 48, 0.3);
  3634. }
  3635. &:active:not(:disabled) {
  3636. transform: translateY(0);
  3637. }
  3638. &:disabled {
  3639. opacity: 0.6;
  3640. cursor: not-allowed;
  3641. }
  3642. }
  3643. }
  3644. .login--footer {
  3645. margin-top: 32px;
  3646. text-align: center;
  3647. p {
  3648. font-size: 12px;
  3649. color: var(--admin-text-muted);
  3650. margin: 0;
  3651. }
  3652. }
  3653. }
  3654. // Admin Layout
  3655. .admin--layout {
  3656. min-height: 100vh;
  3657. background: var(--admin-bg-primary);
  3658. font-family: 'AudiType', sans-serif;
  3659. }
  3660. // Admin Header
  3661. .admin--header {
  3662. position: fixed;
  3663. top: 0;
  3664. left: 0;
  3665. right: 0;
  3666. height: 64px;
  3667. background: var(--admin-bg-secondary);
  3668. border-bottom: 1px solid var(--admin-border-color);
  3669. display: flex;
  3670. justify-content: space-between;
  3671. align-items: center;
  3672. padding: 0 32px;
  3673. z-index: 1000;
  3674. .admin--header-left {
  3675. display: flex;
  3676. align-items: center;
  3677. }
  3678. .admin--logo {
  3679. display: flex;
  3680. align-items: baseline;
  3681. gap: 12px;
  3682. h1 {
  3683. font-size: 28px;
  3684. font-weight: 700;
  3685. color: var(--admin-text-primary);
  3686. margin: 0;
  3687. letter-spacing: 2px;
  3688. }
  3689. .admin--logo-sub {
  3690. font-size: 16px;
  3691. color: var(--admin-text-secondary);
  3692. font-weight: 400;
  3693. }
  3694. }
  3695. .admin--header-right {
  3696. display: flex;
  3697. gap: 12px;
  3698. }
  3699. .admin--header-btn {
  3700. padding: 8px 20px;
  3701. background: var(--admin-bg-tertiary);
  3702. color: var(--admin-text-primary);
  3703. border: 1px solid var(--admin-border-color);
  3704. border-radius: 6px;
  3705. font-size: 14px;
  3706. font-weight: 500;
  3707. cursor: pointer;
  3708. transition: all 0.3s ease;
  3709. font-family: 'AudiType', sans-serif;
  3710. &:hover {
  3711. background: var(--admin-bg-primary);
  3712. border-color: var(--admin-accent-primary);
  3713. }
  3714. &.admin--header-btn-logout {
  3715. background: var(--admin-accent-primary);
  3716. border-color: var(--admin-accent-primary);
  3717. &:hover {
  3718. background: var(--admin-accent-hover);
  3719. border-color: var(--admin-accent-hover);
  3720. }
  3721. }
  3722. }
  3723. }
  3724. // Admin Content Wrapper
  3725. .admin--content-wrapper {
  3726. display: flex;
  3727. margin-top: 64px;
  3728. min-height: calc(100vh - 64px);
  3729. }
  3730. // Admin Sidebar
  3731. .admin--sidebar {
  3732. width: 260px;
  3733. background: var(--admin-bg-secondary);
  3734. border-right: 1px solid var(--admin-border-color);
  3735. padding: 24px 0;
  3736. position: fixed;
  3737. left: 0;
  3738. top: 64px;
  3739. bottom: 0;
  3740. overflow-y: auto;
  3741. &::-webkit-scrollbar {
  3742. width: 6px;
  3743. }
  3744. &::-webkit-scrollbar-track {
  3745. background: var(--admin-bg-primary);
  3746. }
  3747. &::-webkit-scrollbar-thumb {
  3748. background: var(--admin-border-color);
  3749. border-radius: 3px;
  3750. &:hover {
  3751. background: var(--admin-text-muted);
  3752. }
  3753. }
  3754. }
  3755. // Admin GNB
  3756. .admin--gnb {
  3757. .admin--gnb-group {
  3758. margin-bottom: 8px;
  3759. }
  3760. .admin--gnb-title {
  3761. padding: 12px 24px;
  3762. font-size: 14px;
  3763. font-weight: 600;
  3764. color: var(--admin-text-secondary);
  3765. cursor: pointer;
  3766. display: flex;
  3767. justify-content: space-between;
  3768. align-items: center;
  3769. transition: all 0.3s ease;
  3770. user-select: none;
  3771. &:hover {
  3772. color: var(--admin-text-primary);
  3773. background: var(--admin-bg-primary);
  3774. }
  3775. .admin--gnb-arrow {
  3776. font-size: 10px;
  3777. transition: transform 0.3s ease;
  3778. &.is-open {
  3779. transform: rotate(-180deg);
  3780. }
  3781. }
  3782. }
  3783. .admin--gnb-submenu {
  3784. list-style: none;
  3785. padding: 0;
  3786. margin: 0;
  3787. }
  3788. .admin--gnb-item {
  3789. &.is-active {
  3790. .admin--gnb-link {
  3791. color: var(--admin-accent-primary);
  3792. background: rgba(187, 10, 48, 0.1);
  3793. border-left: 3px solid var(--admin-accent-primary);
  3794. }
  3795. }
  3796. }
  3797. .admin--gnb-link {
  3798. display: block;
  3799. padding: 10px 24px 10px 40px;
  3800. font-size: 14px;
  3801. color: var(--admin-text-secondary);
  3802. text-decoration: none;
  3803. transition: all 0.3s ease;
  3804. border-left: 3px solid transparent;
  3805. &:hover {
  3806. color: var(--admin-text-primary);
  3807. background: var(--admin-bg-primary);
  3808. }
  3809. }
  3810. }
  3811. // Submenu Animation
  3812. .admin--submenu-enter-active,
  3813. .admin--submenu-leave-active {
  3814. transition: all 0.3s ease;
  3815. overflow: hidden;
  3816. }
  3817. .admin--submenu-enter-from,
  3818. .admin--submenu-leave-to {
  3819. opacity: 0;
  3820. max-height: 0;
  3821. }
  3822. .admin--submenu-enter-to,
  3823. .admin--submenu-leave-from {
  3824. opacity: 1;
  3825. max-height: 500px;
  3826. }
  3827. // Admin Main Content
  3828. .admin--main {
  3829. flex: 1;
  3830. margin-left: 260px;
  3831. padding: 32px;
  3832. background: var(--admin-bg-primary);
  3833. }
  3834. // Admin Page Header
  3835. .admin--page-header {
  3836. display: flex;
  3837. justify-content: space-between;
  3838. align-items: center;
  3839. margin-bottom: 32px;
  3840. padding-bottom: 16px;
  3841. border-bottom: 1px solid var(--admin-border-color);
  3842. }
  3843. .admin--page-title {
  3844. font-size: 28px;
  3845. font-weight: 700;
  3846. color: var(--admin-text-primary);
  3847. margin: 0;
  3848. }
  3849. // Admin Breadcrumb
  3850. .admin--breadcrumb {
  3851. display: flex;
  3852. align-items: center;
  3853. gap: 8px;
  3854. font-size: 14px;
  3855. .admin--breadcrumb-link {
  3856. color: var(--admin-text-secondary);
  3857. text-decoration: none;
  3858. transition: color 0.3s ease;
  3859. &:hover {
  3860. color: var(--admin-accent-primary);
  3861. }
  3862. }
  3863. .admin--breadcrumb-current {
  3864. color: var(--admin-text-primary);
  3865. font-weight: 500;
  3866. }
  3867. .admin--breadcrumb-separator {
  3868. color: var(--admin-text-muted);
  3869. }
  3870. }
  3871. // Admin Page Content
  3872. .admin--page-content {
  3873. background: var(--admin-bg-secondary);
  3874. border-radius: 8px;
  3875. padding: 24px;
  3876. border: 1px solid var(--admin-border-color);
  3877. }
  3878. // Admin Dashboard
  3879. .admin--dashboard {
  3880. .admin--dashboard-welcome {
  3881. margin-bottom: 32px;
  3882. h3 {
  3883. font-size: 24px;
  3884. color: var(--admin-text-primary);
  3885. margin: 0 0 8px 0;
  3886. }
  3887. p {
  3888. font-size: 14px;
  3889. color: var(--admin-text-secondary);
  3890. margin: 0;
  3891. }
  3892. }
  3893. .admin--dashboard-stats {
  3894. display: grid;
  3895. grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  3896. gap: 20px;
  3897. margin-bottom: 32px;
  3898. }
  3899. .admin--stat-card {
  3900. background: var(--admin-bg-tertiary);
  3901. border: 1px solid var(--admin-border-color);
  3902. border-radius: 8px;
  3903. padding: 24px;
  3904. display: flex;
  3905. align-items: center;
  3906. gap: 16px;
  3907. transition: all 0.3s ease;
  3908. &:hover {
  3909. border-color: var(--admin-accent-primary);
  3910. transform: translateY(-2px);
  3911. box-shadow: 0 4px 12px var(--admin-shadow);
  3912. }
  3913. .admin--stat-icon {
  3914. font-size: 36px;
  3915. }
  3916. .admin--stat-content {
  3917. flex: 1;
  3918. h4 {
  3919. font-size: 14px;
  3920. color: var(--admin-text-secondary);
  3921. margin: 0 0 8px 0;
  3922. font-weight: 500;
  3923. }
  3924. .admin--stat-number {
  3925. font-size: 28px;
  3926. color: var(--admin-text-primary);
  3927. margin: 0;
  3928. font-weight: 700;
  3929. }
  3930. }
  3931. }
  3932. .admin--dashboard-recent {
  3933. h4 {
  3934. font-size: 18px;
  3935. color: var(--admin-text-primary);
  3936. margin: 0 0 16px 0;
  3937. }
  3938. .admin--recent-list {
  3939. background: var(--admin-bg-tertiary);
  3940. border: 1px solid var(--admin-border-color);
  3941. border-radius: 8px;
  3942. padding: 24px;
  3943. .admin--no-data {
  3944. text-align: center;
  3945. color: var(--admin-text-muted);
  3946. margin: 0;
  3947. }
  3948. }
  3949. }
  3950. }
  3951. // Admin Form Styles
  3952. .admin--form {
  3953. max-width: 800px;
  3954. .admin--form-group {
  3955. margin-bottom: 24px;
  3956. }
  3957. .admin--form-label {
  3958. display: block;
  3959. font-size: 14px;
  3960. font-weight: 500;
  3961. color: var(--admin-text-primary);
  3962. margin-bottom: 8px;
  3963. .admin--required {
  3964. color: var(--admin-error);
  3965. margin-left: 4px;
  3966. }
  3967. }
  3968. .admin--form-input,
  3969. .admin--form-textarea,
  3970. .admin--form-select {
  3971. width: 100%;
  3972. padding: 12px 16px;
  3973. background: var(--admin-bg-tertiary);
  3974. border: 1px solid var(--admin-border-color);
  3975. border-radius: 6px;
  3976. color: var(--admin-text-primary);
  3977. font-size: 14px;
  3978. font-family: 'AudiType', sans-serif;
  3979. transition: all 0.3s ease;
  3980. &:focus {
  3981. outline: none;
  3982. border-color: var(--admin-accent-primary);
  3983. box-shadow: 0 0 0 3px rgba(187, 10, 48, 0.1);
  3984. }
  3985. &::placeholder {
  3986. color: var(--admin-text-muted);
  3987. }
  3988. &:disabled {
  3989. opacity: 0.5;
  3990. cursor: not-allowed;
  3991. }
  3992. }
  3993. .admin--form-textarea {
  3994. min-height: 120px;
  3995. resize: vertical;
  3996. }
  3997. .admin--form-select {
  3998. cursor: pointer;
  3999. }
  4000. // 다중 입력 필드
  4001. .admin--multi-input-wrapper {
  4002. .admin--multi-input-item {
  4003. display: flex;
  4004. gap: 12px;
  4005. margin-bottom: 12px;
  4006. align-items: flex-start;
  4007. .admin--sender-row {
  4008. display: flex;
  4009. gap: 10px;
  4010. flex: 1;
  4011. }
  4012. .admin--form-input {
  4013. flex: 1;
  4014. }
  4015. .admin--btn-remove {
  4016. padding: 12px 20px;
  4017. background: var(--admin-error);
  4018. color: var(--admin-text-primary);
  4019. border: none;
  4020. border-radius: 6px;
  4021. font-size: 14px;
  4022. font-weight: 500;
  4023. cursor: pointer;
  4024. transition: all 0.3s ease;
  4025. white-space: nowrap;
  4026. font-family: 'AudiType', sans-serif;
  4027. &:hover {
  4028. background: #dc2626;
  4029. }
  4030. }
  4031. }
  4032. .admin--btn-add {
  4033. padding: 10px 20px;
  4034. background: var(--admin-bg-tertiary);
  4035. color: var(--admin-text-secondary);
  4036. border: 1px dashed var(--admin-border-color);
  4037. border-radius: 6px;
  4038. font-size: 14px;
  4039. font-weight: 500;
  4040. cursor: pointer;
  4041. transition: all 0.3s ease;
  4042. font-family: 'AudiType', sans-serif;
  4043. &:hover {
  4044. background: var(--admin-bg-primary);
  4045. border-color: var(--admin-accent-primary);
  4046. color: var(--admin-text-primary);
  4047. }
  4048. }
  4049. }
  4050. // 폼 액션 버튼
  4051. .admin--form-actions {
  4052. display: flex;
  4053. gap: 12px;
  4054. margin-top: 32px;
  4055. padding-top: 24px;
  4056. border-top: 1px solid var(--admin-border-color);
  4057. }
  4058. .admin--btn {
  4059. padding: 12px 32px;
  4060. border: none;
  4061. border-radius: 6px;
  4062. font-size: 14px;
  4063. font-weight: 600;
  4064. cursor: pointer;
  4065. transition: all 0.3s ease;
  4066. font-family: 'AudiType', sans-serif;
  4067. &:disabled {
  4068. opacity: 0.5;
  4069. cursor: not-allowed;
  4070. }
  4071. }
  4072. .admin--btn-primary {
  4073. background: var(--admin-accent-primary);
  4074. color: var(--admin-text-primary);
  4075. &:hover:not(:disabled) {
  4076. background: var(--admin-accent-hover);
  4077. transform: translateY(-2px);
  4078. box-shadow: 0 4px 12px rgba(187, 10, 48, 0.3);
  4079. }
  4080. }
  4081. .admin--btn-secondary {
  4082. background: var(--admin-bg-tertiary);
  4083. color: var(--admin-text-primary);
  4084. border: 1px solid var(--admin-border-color);
  4085. &:hover:not(:disabled) {
  4086. background: var(--admin-bg-primary);
  4087. border-color: var(--admin-accent-primary);
  4088. }
  4089. }
  4090. // 알림 메시지
  4091. .admin--alert {
  4092. padding: 12px 16px;
  4093. border-radius: 6px;
  4094. margin-top: 20px;
  4095. font-size: 14px;
  4096. }
  4097. .admin--alert-success {
  4098. background: rgba(16, 185, 129, 0.1);
  4099. border: 1px solid var(--admin-success);
  4100. color: var(--admin-success);
  4101. }
  4102. .admin--alert-error {
  4103. background: rgba(239, 68, 68, 0.1);
  4104. border: 1px solid var(--admin-error);
  4105. color: var(--admin-error);
  4106. }
  4107. .admin--alert-warning {
  4108. background: rgba(245, 158, 11, 0.1);
  4109. border: 1px solid var(--admin-warning);
  4110. color: var(--admin-warning);
  4111. }
  4112. }
  4113. // 로딩
  4114. .admin--loading {
  4115. display: flex;
  4116. align-items: center;
  4117. justify-content: center;
  4118. padding: 60px 20px;
  4119. color: var(--admin-text-secondary);
  4120. font-size: 16px;
  4121. }
  4122. // 전역 로딩 오버레이
  4123. .admin--loading-overlay {
  4124. position: fixed;
  4125. top: 0;
  4126. left: 0;
  4127. right: 0;
  4128. bottom: 0;
  4129. background: rgba(0, 0, 0, 0.5);
  4130. display: flex;
  4131. align-items: center;
  4132. justify-content: center;
  4133. z-index: 99999;
  4134. }
  4135. // 스피너
  4136. .admin--spinner {
  4137. width: 50px;
  4138. height: 50px;
  4139. border: 4px solid rgba(255, 255, 255, 0.3);
  4140. border-top-color: #fff;
  4141. border-radius: 50%;
  4142. animation: admin-spin 0.8s linear infinite;
  4143. }
  4144. @keyframes admin-spin {
  4145. to {
  4146. transform: rotate(360deg);
  4147. }
  4148. }
  4149. // 검색 박스
  4150. .admin--search-box {
  4151. background: var(--admin-bg-secondary);
  4152. border: 1px solid var(--admin-border-color);
  4153. border-radius: 8px;
  4154. padding: 20px;
  4155. margin-bottom: 20px;
  4156. display: flex;
  4157. justify-content: space-between;
  4158. align-items: center;
  4159. gap: 20px;
  4160. .admin--search-form {
  4161. display: flex;
  4162. gap: 12px;
  4163. flex: 1;
  4164. }
  4165. // 검색 박스 내 모든 select, input 통일된 스타일
  4166. .admin--search-select,
  4167. .admin--form-select,
  4168. .admin--form-input,
  4169. .admin--search-input {
  4170. border: 1px solid var(--admin-border-color) !important;
  4171. border-radius: 4px;
  4172. height: 33px !important;
  4173. padding: 6px 14px !important;
  4174. font-size: 13px !important;
  4175. background: var(--admin-bg-tertiary) !important;
  4176. line-height: normal;
  4177. }
  4178. .admin--search-select,
  4179. .admin--form-select {
  4180. width: 140px;
  4181. }
  4182. .admin--form-input,
  4183. .admin--search-input {
  4184. flex: 1;
  4185. max-width: 400px;
  4186. }
  4187. }
  4188. // 날짜 입력 필드
  4189. .admin--date-input {
  4190. cursor: pointer;
  4191. &::-webkit-calendar-picker-indicator {
  4192. cursor: pointer;
  4193. opacity: 0.7;
  4194. transition: opacity 0.2s;
  4195. &:hover {
  4196. opacity: 1;
  4197. }
  4198. }
  4199. }
  4200. // 날짜 범위
  4201. .admin--date-range {
  4202. display: flex;
  4203. align-items: center;
  4204. gap: 12px;
  4205. .admin--date-separator {
  4206. color: var(--admin-text-secondary);
  4207. font-size: 14px;
  4208. }
  4209. .admin--form-input {
  4210. flex: 1;
  4211. max-width: 200px;
  4212. }
  4213. }
  4214. // 검색 input 강제 스타일 (두 클래스 함께 사용될 때)
  4215. .admin--form-input.admin--search-input {
  4216. border: 1px solid var(--admin-border-color) !important;
  4217. background: var(--admin-bg-tertiary) !important;
  4218. }
  4219. // 테이블
  4220. .admin--table-wrapper {
  4221. background: var(--admin-bg-secondary);
  4222. border: 1px solid var(--admin-border-color);
  4223. border-radius: 8px;
  4224. overflow-x: auto;
  4225. }
  4226. .admin--table {
  4227. width: 100%;
  4228. border-collapse: collapse;
  4229. thead {
  4230. background: var(--admin-bg-tertiary);
  4231. border-bottom: 1px solid var(--admin-border-color);
  4232. th {
  4233. padding: 14px 16px;
  4234. text-align: left;
  4235. font-size: 14px;
  4236. font-weight: 600;
  4237. color: var(--admin-text-primary);
  4238. white-space: nowrap;
  4239. }
  4240. }
  4241. tbody {
  4242. tr {
  4243. border-bottom: 1px solid var(--admin-border-color);
  4244. transition: background 0.3s ease;
  4245. &:hover {
  4246. background: var(--admin-bg-tertiary);
  4247. }
  4248. &:last-child {
  4249. border-bottom: none;
  4250. }
  4251. }
  4252. td {
  4253. padding: 14px 16px;
  4254. font-size: 14px;
  4255. color: var(--admin-text-secondary);
  4256. vertical-align: middle;
  4257. }
  4258. .admin--table-title {
  4259. color: var(--admin-text-primary);
  4260. font-weight: 500;
  4261. max-width: 300px;
  4262. overflow: hidden;
  4263. text-overflow: ellipsis;
  4264. white-space: nowrap;
  4265. }
  4266. .admin--table-loading,
  4267. .admin--table-empty {
  4268. text-align: center;
  4269. padding: 60px 20px;
  4270. color: var(--admin-text-muted);
  4271. }
  4272. }
  4273. .admin--table-actions {
  4274. display: flex;
  4275. gap: 8px;
  4276. }
  4277. }
  4278. // 배지
  4279. .admin--badge {
  4280. display: inline-block;
  4281. padding: 4px 12px;
  4282. border-radius: 12px;
  4283. font-size: 12px;
  4284. font-weight: 600;
  4285. white-space: nowrap;
  4286. &.admin--badge-html {
  4287. background: rgba(59, 130, 246, 0.1);
  4288. color: #3b82f6;
  4289. }
  4290. &.admin--badge-image {
  4291. background: rgba(16, 185, 129, 0.1);
  4292. color: #10b981;
  4293. }
  4294. &.admin--badge-active {
  4295. background: rgba(16, 185, 129, 0.1);
  4296. color: var(--admin-success);
  4297. }
  4298. &.admin--badge-scheduled {
  4299. background: rgba(245, 158, 11, 0.1);
  4300. color: var(--admin-warning);
  4301. }
  4302. &.admin--badge-ended {
  4303. background: rgba(107, 114, 128, 0.1);
  4304. color: #6b7280;
  4305. }
  4306. }
  4307. // 작은 버튼
  4308. .admin--btn-small {
  4309. padding: 6px 14px;
  4310. border: none;
  4311. border-radius: 4px;
  4312. font-size: 13px;
  4313. font-weight: 500;
  4314. cursor: pointer;
  4315. transition: all 0.3s ease;
  4316. font-family: 'AudiType', sans-serif;
  4317. white-space: nowrap;
  4318. &.admin--btn-small-primary {
  4319. background: var(--admin-accent-primary);
  4320. color: var(--admin-text-primary);
  4321. &:hover {
  4322. background: var(--admin-accent-hover);
  4323. }
  4324. }
  4325. &.admin--btn-small-danger {
  4326. background: var(--admin-error);
  4327. color: var(--admin-text-primary);
  4328. &:hover {
  4329. background: #dc2626;
  4330. }
  4331. }
  4332. }
  4333. // 페이지네이션
  4334. .admin--pagination {
  4335. display: flex;
  4336. justify-content: center;
  4337. align-items: center;
  4338. gap: 8px;
  4339. margin-top: 24px;
  4340. .admin--pagination-btn {
  4341. min-width: 36px;
  4342. height: 36px;
  4343. padding: 0 12px;
  4344. background: var(--admin-bg-secondary);
  4345. border: 1px solid var(--admin-border-color);
  4346. border-radius: 6px;
  4347. color: var(--admin-text-secondary);
  4348. font-size: 14px;
  4349. font-weight: 500;
  4350. cursor: pointer;
  4351. transition: all 0.3s ease;
  4352. font-family: 'AudiType', sans-serif;
  4353. &:hover:not(:disabled) {
  4354. background: var(--admin-bg-tertiary);
  4355. border-color: var(--admin-accent-primary);
  4356. color: var(--admin-text-primary);
  4357. }
  4358. &.is-active {
  4359. background: var(--admin-accent-primary);
  4360. border-color: var(--admin-accent-primary);
  4361. color: var(--admin-text-primary);
  4362. }
  4363. &:disabled {
  4364. opacity: 0.5;
  4365. cursor: not-allowed;
  4366. }
  4367. }
  4368. }
  4369. // 라디오 그룹
  4370. .admin--radio-group {
  4371. display: flex;
  4372. gap: 20px;
  4373. flex-wrap: wrap;
  4374. }
  4375. .admin--radio-label {
  4376. display: flex;
  4377. align-items: center;
  4378. gap: 8px;
  4379. cursor: pointer;
  4380. font-size: 14px;
  4381. color: var(--admin-text-secondary);
  4382. transition: color 0.3s ease;
  4383. input[type="radio"] {
  4384. cursor: pointer;
  4385. margin: 0;
  4386. }
  4387. &:hover {
  4388. color: var(--admin-text-primary);
  4389. }
  4390. }
  4391. // 날짜 범위
  4392. .admin--date-range {
  4393. display: flex;
  4394. align-items: center;
  4395. gap: 12px;
  4396. .admin--date-separator {
  4397. color: var(--admin-text-secondary);
  4398. font-weight: 500;
  4399. }
  4400. }
  4401. // 사이즈 그룹
  4402. .admin--size-group {
  4403. display: flex;
  4404. gap: 20px;
  4405. .admin--size-item {
  4406. display: flex;
  4407. align-items: center;
  4408. gap: 8px;
  4409. label {
  4410. font-size: 14px;
  4411. color: var(--admin-text-secondary);
  4412. min-width: 40px;
  4413. }
  4414. .admin--form-input {
  4415. max-width: 120px;
  4416. }
  4417. span {
  4418. font-size: 14px;
  4419. color: var(--admin-text-secondary);
  4420. }
  4421. }
  4422. }
  4423. // 파일 입력
  4424. .admin--form-file {
  4425. width: 100%;
  4426. padding: 12px 16px;
  4427. background: var(--admin-bg-tertiary);
  4428. border: 1px solid var(--admin-border-color);
  4429. border-radius: 6px;
  4430. color: var(--admin-text-primary);
  4431. font-size: 14px;
  4432. font-family: 'AudiType', sans-serif;
  4433. cursor: pointer;
  4434. &::-webkit-file-upload-button {
  4435. padding: 8px 16px;
  4436. background: var(--admin-accent-primary);
  4437. color: var(--admin-text-primary);
  4438. border: none;
  4439. border-radius: 4px;
  4440. font-size: 13px;
  4441. font-weight: 500;
  4442. cursor: pointer;
  4443. margin-right: 12px;
  4444. font-family: 'AudiType', sans-serif;
  4445. }
  4446. }
  4447. // 이미지 미리보기
  4448. .admin--image-preview {
  4449. margin-top: 16px;
  4450. position: relative;
  4451. display: inline-block;
  4452. max-width: 400px;
  4453. img {
  4454. max-width: 100%;
  4455. border-radius: 8px;
  4456. border: 1px solid var(--admin-border-color);
  4457. display: block;
  4458. }
  4459. .admin--btn-remove-image {
  4460. position: absolute;
  4461. top: 12px;
  4462. right: 12px;
  4463. padding: 8px 16px;
  4464. background: var(--admin-error);
  4465. color: var(--admin-text-primary);
  4466. border: none;
  4467. border-radius: 4px;
  4468. font-size: 13px;
  4469. font-weight: 500;
  4470. cursor: pointer;
  4471. transition: all 0.3s ease;
  4472. font-family: 'AudiType', sans-serif;
  4473. &:hover {
  4474. background: #dc2626;
  4475. }
  4476. }
  4477. }
  4478. // 비밀번호 입력 래퍼
  4479. .admin--password-input-wrapper {
  4480. position: relative;
  4481. .admin--form-input {
  4482. padding-right: 50px;
  4483. }
  4484. .admin--password-toggle {
  4485. position: absolute;
  4486. right: 12px;
  4487. top: 50%;
  4488. transform: translateY(-50%);
  4489. background: none;
  4490. border: none;
  4491. font-size: 20px;
  4492. cursor: pointer;
  4493. padding: 4px;
  4494. line-height: 1;
  4495. transition: opacity 0.3s ease;
  4496. &:hover {
  4497. opacity: 0.7;
  4498. }
  4499. }
  4500. }
  4501. // 폼 도움말
  4502. .admin--form-help {
  4503. margin: 8px 0 0 0;
  4504. font-size: 13px;
  4505. color: var(--admin-text-muted);
  4506. font-style: italic;
  4507. }
  4508. // 검색 박스 (큰 버전 - 여러 필터)
  4509. .admin--search-box-large {
  4510. .admin--search-filters {
  4511. flex: 1;
  4512. display: flex;
  4513. flex-direction: column;
  4514. gap: 12px;
  4515. .admin--filter-row {
  4516. display: flex;
  4517. align-items: center;
  4518. gap: 12px;
  4519. flex-wrap: wrap;
  4520. .admin--filter-label {
  4521. font-size: 14px;
  4522. color: var(--admin-text-secondary);
  4523. min-width: 60px;
  4524. }
  4525. .admin--form-select,
  4526. .admin--form-input {
  4527. flex: 1;
  4528. min-width: 150px;
  4529. }
  4530. }
  4531. }
  4532. }
  4533. // 테이블 사진
  4534. .admin--table-photo {
  4535. width: 80px;
  4536. height: 120px;
  4537. border-radius: 4px;
  4538. overflow: hidden;
  4539. display: flex;
  4540. align-items: center;
  4541. justify-content: center;
  4542. background: var(--admin-bg-tertiary);
  4543. img {
  4544. width: 100%;
  4545. height: 100%;
  4546. object-fit: cover;
  4547. }
  4548. .admin--table-photo-empty {
  4549. font-size: 11px;
  4550. color: var(--admin-text-muted);
  4551. text-align: center;
  4552. }
  4553. }
  4554. // 테이블 액션 (세로 배치)
  4555. .admin--table-actions-col {
  4556. flex-direction: column;
  4557. gap: 6px;
  4558. .admin--btn-small {
  4559. width: 100%;
  4560. }
  4561. }
  4562. // 작은 버튼 (secondary 추가)
  4563. .admin--btn-small-secondary {
  4564. background: var(--admin-bg-tertiary);
  4565. color: var(--admin-text-secondary);
  4566. border: 1px solid var(--admin-border-color);
  4567. &:hover {
  4568. background: var(--admin-bg-primary);
  4569. border-color: var(--admin-accent-primary);
  4570. color: var(--admin-text-primary);
  4571. }
  4572. }
  4573. // 엑셀 버튼 (녹색 배경)
  4574. .admin--btn-small-excel {
  4575. background: #217346;
  4576. color: #ffffff;
  4577. border: 1px solid #1a5c37;
  4578. &:hover {
  4579. background: #185c37;
  4580. border-color: #144d2d;
  4581. }
  4582. }
  4583. // Responsive
  4584. @media (max-width: 1024px) {
  4585. .admin--sidebar {
  4586. width: 220px;
  4587. }
  4588. .admin--main {
  4589. margin-left: 220px;
  4590. }
  4591. }
  4592. @media (max-width: 768px) {
  4593. .admin--header {
  4594. padding: 0 16px;
  4595. }
  4596. .admin--sidebar {
  4597. transform: translateX(-100%);
  4598. transition: transform 0.3s ease;
  4599. &.is-open {
  4600. transform: translateX(0);
  4601. }
  4602. }
  4603. .admin--main {
  4604. margin-left: 0;
  4605. padding: 16px;
  4606. }
  4607. .admin--page-header {
  4608. flex-direction: column;
  4609. align-items: flex-start;
  4610. gap: 12px;
  4611. }
  4612. .admin--form {
  4613. .admin--form-actions {
  4614. flex-direction: column;
  4615. .admin--btn {
  4616. width: 100%;
  4617. }
  4618. }
  4619. .admin--multi-input-wrapper {
  4620. .admin--multi-input-item {
  4621. flex-direction: column;
  4622. .admin--btn-remove {
  4623. width: 100%;
  4624. }
  4625. }
  4626. }
  4627. }
  4628. }
  4629. // File Attachment Styles
  4630. .admin--form-file-hidden {
  4631. display: none;
  4632. }
  4633. .admin--file-list {
  4634. margin-bottom: 12px;
  4635. border: 1px solid var(--admin-border-color);
  4636. border-radius: 4px;
  4637. background-color: var(--admin-bg-secondary);
  4638. }
  4639. .admin--file-item {
  4640. display: flex;
  4641. align-items: center;
  4642. padding: 12px 16px;
  4643. border-bottom: 1px solid var(--admin-border-color);
  4644. &:last-child {
  4645. border-bottom: none;
  4646. }
  4647. &:hover {
  4648. background-color: rgba(255, 255, 255, 0.03);
  4649. }
  4650. }
  4651. .admin--file-name {
  4652. flex: 1;
  4653. color: var(--admin-text-primary);
  4654. font-size: 14px;
  4655. overflow: hidden;
  4656. text-overflow: ellipsis;
  4657. white-space: nowrap;
  4658. margin-right: 8px;
  4659. &:hover {
  4660. text-decoration: underline;
  4661. }
  4662. }
  4663. .admin--file-size {
  4664. color: var(--admin-text-secondary);
  4665. font-size: 13px;
  4666. margin-right: 12px;
  4667. white-space: nowrap;
  4668. }
  4669. .admin--btn-remove-file {
  4670. padding: 4px 12px;
  4671. background-color: transparent;
  4672. color: var(--admin-danger-color);
  4673. border: 1px solid var(--admin-danger-color);
  4674. border-radius: 4px;
  4675. font-size: 13px;
  4676. cursor: pointer;
  4677. transition: all 0.2s ease;
  4678. white-space: nowrap;
  4679. &:hover {
  4680. background-color: var(--admin-danger-color);
  4681. color: white;
  4682. }
  4683. }
  4684. // Checkbox Group Styles
  4685. .admin--checkbox-group {
  4686. display: flex;
  4687. gap: 20px;
  4688. }
  4689. .admin--checkbox-label {
  4690. display: flex;
  4691. align-items: center;
  4692. gap: 8px;
  4693. color: var(--admin-text-primary);
  4694. font-size: 14px;
  4695. cursor: pointer;
  4696. input[type="checkbox"] {
  4697. width: 18px;
  4698. height: 18px;
  4699. cursor: pointer;
  4700. accent-color: var(--admin-accent-primary);
  4701. }
  4702. span {
  4703. user-select: none;
  4704. }
  4705. &:hover {
  4706. opacity: 0.8;
  4707. }
  4708. }
  4709. // Admin Footer
  4710. .admin--footer {
  4711. margin-top: 64px;
  4712. padding: 24px 0;
  4713. border-top: 1px solid var(--admin-border-color);
  4714. text-align: center;
  4715. p {
  4716. color: var(--admin-text-muted);
  4717. font-size: 14px;
  4718. margin: 0;
  4719. }
  4720. }
  4721. // IMPORTANT: Force display admin header and footer
  4722. .admin--header {
  4723. display: flex !important;
  4724. min-height: 64px !important;
  4725. background: #1a1a1a !important;
  4726. visibility: visible !important;
  4727. }
  4728. .admin--footer {
  4729. display: block !important;
  4730. min-height: 60px !important;
  4731. background: #1a1a1a !important;
  4732. visibility: visible !important;
  4733. }
  4734. // Alert Modal Styles
  4735. .admin--modal-overlay {
  4736. position: fixed;
  4737. top: 0;
  4738. left: 0;
  4739. right: 0;
  4740. bottom: 0;
  4741. background: rgba(0, 0, 0, 0.7);
  4742. z-index: 9999;
  4743. display: flex;
  4744. align-items: center;
  4745. justify-content: center;
  4746. }
  4747. .admin--alert-modal {
  4748. background: #2d2d2d;
  4749. padding: 0;
  4750. border-radius: 8px;
  4751. min-width: 400px;
  4752. max-width: 500px;
  4753. box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  4754. }
  4755. .admin--alert-modal .admin--modal-header {
  4756. padding: 20px;
  4757. border-bottom: 1px solid #404040;
  4758. display: flex;
  4759. justify-content: space-between;
  4760. align-items: center;
  4761. h4 {
  4762. margin: 0;
  4763. font-size: 18px;
  4764. font-weight: 600;
  4765. color: #ffffff;
  4766. }
  4767. }
  4768. .admin--alert-modal .admin--modal-close {
  4769. background: none;
  4770. border: none;
  4771. font-size: 24px;
  4772. cursor: pointer;
  4773. color: #999;
  4774. line-height: 1;
  4775. transition: color 0.2s;
  4776. &:hover {
  4777. color: #fff;
  4778. }
  4779. }
  4780. .admin--alert-modal .admin--modal-body {
  4781. padding: 30px 20px;
  4782. .admin--alert-content p {
  4783. margin: 0;
  4784. font-size: 15px;
  4785. line-height: 1.6;
  4786. color: #e0e0e0;
  4787. }
  4788. }
  4789. .admin--alert-modal .admin--modal-footer {
  4790. padding: 15px 20px;
  4791. border-top: 1px solid #404040;
  4792. display: flex;
  4793. gap: 10px;
  4794. justify-content: flex-end;
  4795. }
  4796. .admin--alert-modal .admin--btn-secondary {
  4797. padding: 8px 20px;
  4798. border: 1px solid #404040;
  4799. background: #252525;
  4800. color: #e0e0e0;
  4801. border-radius: 4px;
  4802. cursor: pointer;
  4803. font-size: 14px;
  4804. transition: all 0.2s;
  4805. &:hover {
  4806. background: #2d2d2d;
  4807. }
  4808. }
  4809. .admin--alert-modal .admin--btn-primary {
  4810. padding: 8px 20px;
  4811. border: none;
  4812. background: var(--admin-accent-primary);
  4813. color: white;
  4814. border-radius: 4px;
  4815. cursor: pointer;
  4816. font-size: 14px;
  4817. transition: all 0.2s;
  4818. &:hover {
  4819. background: var(--admin-accent-hover);
  4820. }
  4821. }
  4822. // Modal Animation
  4823. @keyframes slideUp {
  4824. from {
  4825. opacity: 0;
  4826. transform: translateY(30px);
  4827. }
  4828. to {
  4829. opacity: 1;
  4830. transform: translateY(0);
  4831. }
  4832. }
  4833. .modal-fade-enter-active {
  4834. transition: opacity 0.3s ease;
  4835. .admin--alert-modal {
  4836. animation: slideUp 0.3s ease-out;
  4837. }
  4838. }
  4839. .modal-fade-leave-active {
  4840. transition: opacity 0.2s ease;
  4841. }
  4842. .modal-fade-enter-from,
  4843. .modal-fade-leave-to {
  4844. opacity: 0;
  4845. }