admin.scss 122 KB

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