admin.scss 118 KB

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