admin.scss 117 KB

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