admin.scss 120 KB

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