admin.scss 112 KB

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