admin.scss 117 KB

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