admin.scss 118 KB

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