admin.scss 122 KB

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