admin.scss 121 KB

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