admin.scss 123 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615
  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-mini="true"]{
  2077. .product--card--thumb{
  2078. padding-top: 38%;
  2079. }
  2080. }
  2081. // 가로 레이아웃
  2082. &[data-layout="horizontal"] {
  2083. flex-direction: row;
  2084. align-items: center;
  2085. .product--card--thumb {
  2086. flex: 0 0 40%;
  2087. max-width: 600px;
  2088. }
  2089. .product--card--content {
  2090. flex: 1;
  2091. }
  2092. // 이미지 오른쪽 배치
  2093. &[data-image-position="right"] {
  2094. flex-direction: row-reverse;
  2095. }
  2096. @media (max-width: 1024px) {
  2097. flex-direction: column;
  2098. .product--card--thumb {
  2099. flex: 1;
  2100. max-width: 100%;
  2101. }
  2102. .product--card--content {
  2103. padding-left: 0;
  2104. padding-right: 0;
  2105. padding-top: 20px;
  2106. }
  2107. // 모바일에서는 이미지 위치 상관없이 세로 배치
  2108. &[data-image-position="right"] {
  2109. flex-direction: column;
  2110. .product--card--content {
  2111. padding-right: 0;
  2112. padding-top: 20px;
  2113. }
  2114. }
  2115. }
  2116. }
  2117. // 세로 레이아웃
  2118. &[data-layout="vertical"] {
  2119. flex-direction: column;
  2120. max-width: 600px;
  2121. .product--card--thumb {
  2122. width: 100%;
  2123. }
  2124. .product--card--content {
  2125. padding-top: 24px;
  2126. }
  2127. }
  2128. .product--card--thumb {
  2129. background: rgba(255, 255, 255, 0.05);
  2130. min-width:50%;
  2131. position: relative;
  2132. max-height: 50vh;
  2133. border-radius: 20px;
  2134. position: relative;
  2135. overflow: hidden;
  2136. .product--card--thumb--inner{
  2137. height:100%;
  2138. min-height:50vh;
  2139. img {
  2140. width: 100%;
  2141. height: 100%;
  2142. object-fit: cover;
  2143. display: block;
  2144. transition: transform 0.6s ease;
  2145. position: absolute;
  2146. height: 100%;
  2147. }
  2148. &:hover img {
  2149. transform: scale(1.05);
  2150. }
  2151. }
  2152. }
  2153. .product--card--content {
  2154. display: flex;
  2155. flex-direction: column;
  2156. gap: 16px;
  2157. @media screen and (min-width: 320px) {
  2158. padding-block-start: var(--spacing-relative-lg);
  2159. }
  2160. @media screen and (min-width: 1024px) {
  2161. -webkit-box-pack: center;
  2162. justify-content: center;
  2163. align-items: flex-start;
  2164. padding-inline-start: var(--spacing-relative-2xl);
  2165. padding-inline-end: var(--spacing-relative-2xl);
  2166. padding-block-start: 0px;
  2167. }
  2168. }
  2169. .product--card--title {
  2170. margin: 0px;
  2171. color: rgb(252, 252, 253);
  2172. letter-spacing: 0px;
  2173. font-weight: 400;
  2174. text-decoration: none;
  2175. font-size: 24px;
  2176. line-height: 36px;
  2177. font-stretch: 130%;
  2178. @media (min-width: 1024px) {
  2179. font-size: 28px;
  2180. line-height: 40px;
  2181. }
  2182. @media (min-width: 1440px) {
  2183. font-size: 32px;
  2184. line-height: 44px;
  2185. }
  2186. @media (min-width: 1920px) {
  2187. font-size: 36px;
  2188. line-height: 52px;
  2189. }
  2190. }
  2191. .product--card--smalltitle {
  2192. margin: 0px;
  2193. color: rgb(252, 252, 253);
  2194. letter-spacing: 0px;
  2195. font-weight: 400;
  2196. text-decoration: none;
  2197. font-size: 20px;
  2198. line-height: 32px;
  2199. font-stretch: 130%;
  2200. @media (min-width: 1440px) {
  2201. font-size: 24px;
  2202. line-height: 36px;
  2203. }
  2204. }
  2205. .product--card--subtitle {
  2206. margin: 0;
  2207. color: rgba(252, 252, 253, 0.8);
  2208. font-size: 16px;
  2209. line-height: 24px;
  2210. }
  2211. .product--card--description {
  2212. margin-top: 8px;
  2213. p {
  2214. margin: 0px;
  2215. color: rgba(252, 252, 253, 0.7);
  2216. letter-spacing: 0px;
  2217. font-weight: 400;
  2218. text-decoration: none;
  2219. font-size: 16px;
  2220. line-height: 24px;
  2221. font-stretch: 105%;
  2222. }
  2223. }
  2224. .product--card--small--description{
  2225. margin-top:20px;
  2226. p {
  2227. margin: 0px;
  2228. color: rgba(252, 252, 253, 0.7);
  2229. letter-spacing: 0px;
  2230. font-weight: 400;
  2231. text-decoration: none;
  2232. font-size: 12px;
  2233. line-height: 20px;
  2234. font-stretch: 105%;
  2235. }
  2236. }
  2237. .product--card--actions {
  2238. margin-top: 24px;
  2239. display: flex;
  2240. gap: 16px;
  2241. flex-wrap: wrap;
  2242. }
  2243. @media (max-width: 768px) {
  2244. padding: 24px;
  2245. gap: 24px;
  2246. }
  2247. }
  2248. }
  2249. .radius--img--wrap{
  2250. overflow: hidden;
  2251. border-radius: 20px;
  2252. }
  2253. // 딜러 검색 드롭다운 스타일
  2254. .dealer--search--section {
  2255. width: 100%;
  2256. max-width: 1920px;
  2257. margin: 0 auto;
  2258. padding: 80px 96px;
  2259. background-color: hsla(216, 23%, 8%, 1);
  2260. }
  2261. .dealer--search--container {
  2262. display: flex;
  2263. flex-direction: column;
  2264. gap: 48px;
  2265. border-top: 1px solid rgba(252, 252, 253, 0.15);
  2266. }
  2267. .dealer--category--wrap {
  2268. display: flex;
  2269. flex-direction: column;
  2270. }
  2271. .dealer--category--title {
  2272. font-size: 28px;
  2273. font-weight: 600;
  2274. margin: 0 0 24px 0;
  2275. color: rgb(252, 252, 253);
  2276. padding-bottom: 16px;
  2277. border-bottom: 2px solid rgba(252, 252, 253, 0.3);
  2278. }
  2279. .dealer--region--item {
  2280. border-bottom: 1px solid rgba(252, 252, 253, 0.15);
  2281. }
  2282. .dealer--region--header {
  2283. width: 100%;
  2284. display: flex;
  2285. justify-content: space-between;
  2286. align-items: center;
  2287. padding: 20px 24px;
  2288. background-color: transparent;
  2289. border: none;
  2290. color: rgb(252, 252, 253);
  2291. cursor: pointer;
  2292. transition: all 0.3s ease;
  2293. &:hover {
  2294. background-color: rgba(252, 252, 253, 0.05);
  2295. }
  2296. &.active {
  2297. background-color: rgba(252, 252, 253, 0.08);
  2298. }
  2299. }
  2300. .dealer--region--name {
  2301. font-size: 18px;
  2302. font-weight: 500;
  2303. }
  2304. .dealer--toggle--icon {
  2305. font-size: 28px;
  2306. line-height: 1;
  2307. transition: transform 0.3s ease;
  2308. }
  2309. .dealer--list--content {
  2310. padding: 0 24px 24px;
  2311. animation: slideDown 0.3s ease;
  2312. }
  2313. @keyframes slideDown {
  2314. from {
  2315. opacity: 0;
  2316. transform: translateY(-10px);
  2317. }
  2318. to {
  2319. opacity: 1;
  2320. transform: translateY(0);
  2321. }
  2322. }
  2323. .dealer--list {
  2324. list-style: none;
  2325. padding: 0;
  2326. padding-left:10px;
  2327. margin: 0;
  2328. display: flex;
  2329. flex-direction: column;
  2330. gap: 0px;
  2331. li {
  2332. margin: 0;
  2333. position: relative;
  2334. &:before{
  2335. content:'>';
  2336. font-size:12px;
  2337. margin-right:10px;
  2338. }
  2339. a{
  2340. text-decoration: underline;
  2341. }
  2342. }
  2343. }
  2344. .dealer--link {
  2345. display: inline-block;
  2346. color: rgba(252, 252, 253, 0.7);
  2347. text-decoration: none;
  2348. font-size: 16px;
  2349. transition: all 0.2s ease;
  2350. padding: 8px 0;
  2351. &:hover {
  2352. color: rgb(252, 252, 253);
  2353. text-decoration: underline;
  2354. }
  2355. }
  2356. // 반응형 처리
  2357. @media (max-width: 1024px) {
  2358. .dealer--search--section {
  2359. padding: 60px 48px;
  2360. }
  2361. .dealer--search--container {
  2362. gap: 40px;
  2363. }
  2364. .dealer--category--title {
  2365. font-size: 24px;
  2366. margin-bottom: 20px;
  2367. padding-bottom: 12px;
  2368. }
  2369. .dealer--region--header {
  2370. padding: 16px 20px;
  2371. }
  2372. .dealer--region--name {
  2373. font-size: 16px;
  2374. }
  2375. .dealer--list--content {
  2376. padding: 0 20px 20px;
  2377. }
  2378. .dealer--list {
  2379. gap: 6px;
  2380. }
  2381. }
  2382. @media (max-width: 768px) {
  2383. .dealer--search--section {
  2384. padding: 40px 24px;
  2385. }
  2386. .dealer--search--container {
  2387. gap: 32px;
  2388. }
  2389. .dealer--category--title {
  2390. font-size: 20px;
  2391. margin-bottom: 16px;
  2392. padding-bottom: 10px;
  2393. }
  2394. .dealer--region--header {
  2395. padding: 14px 16px;
  2396. }
  2397. .dealer--region--name {
  2398. font-size: 15px;
  2399. }
  2400. .dealer--toggle--icon {
  2401. font-size: 24px;
  2402. }
  2403. .dealer--list--content {
  2404. padding: 0 16px 16px;
  2405. }
  2406. .dealer--list {
  2407. gap: 6px;
  2408. }
  2409. .dealer--link {
  2410. font-size: 14px;
  2411. padding: 6px 0;
  2412. }
  2413. }
  2414. // 딜러 검색 페이지 스타일
  2415. .dealer--search--section{
  2416. padding: 64px 96px;
  2417. .dealer--search--container{
  2418. margin: 0 auto;
  2419. }
  2420. .dealer--category--wrap{
  2421. display: flex;
  2422. flex-direction: column;
  2423. //gap: 16px;
  2424. }
  2425. .dealer--region--item{
  2426. border-bottom: 1px solid rgba(252, 252, 253, 0.1);
  2427. }
  2428. .dealer--region--header{
  2429. width: 100%;
  2430. display: flex;
  2431. justify-content: space-between;
  2432. align-items: center;
  2433. padding: 24px 0;
  2434. background: transparent;
  2435. border: none;
  2436. color: #fcfcfd;
  2437. font-size: 24px;
  2438. font-family: 'AudiType';
  2439. font-weight: 400;
  2440. transition: all 0.3s;
  2441. &:hover{
  2442. color: rgba(252, 252, 253, 0.7);
  2443. }
  2444. &.active{
  2445. color: #fcfcfd;
  2446. }
  2447. }
  2448. .dealer--region--name{
  2449. font-size: 24px;
  2450. }
  2451. .dealer--toggle--icon{
  2452. font-size: 32px;
  2453. line-height: 1;
  2454. font-weight: 300;
  2455. }
  2456. .dealer--list--content{
  2457. padding-bottom: 24px;
  2458. }
  2459. .dealer--list{
  2460. display: flex;
  2461. flex-direction: column;
  2462. gap: 16px;
  2463. >li{
  2464. list-style: none;
  2465. }
  2466. }
  2467. .dealer--link{
  2468. display: inline-block;
  2469. color: rgba(252, 252, 253, 0.7);
  2470. font-size: 16px;
  2471. text-decoration: underline;
  2472. text-underline-offset: 4px;
  2473. transition: all 0.3s;
  2474. background: transparent;
  2475. border: none;
  2476. font-family: 'AudiType';
  2477. font-weight: 400;
  2478. padding: 0;
  2479. cursor: pointer;
  2480. &:hover{
  2481. color: #fcfcfd;
  2482. }
  2483. }
  2484. }
  2485. // 딜러 팝업 스타일
  2486. .dealer--popup--overlay{
  2487. position: fixed;
  2488. top: 0;
  2489. left: 0;
  2490. width: 100%;
  2491. height: 100%;
  2492. background-color: rgba(2, 2, 3, 0.85);
  2493. display: flex;
  2494. justify-content: center;
  2495. align-items: center;
  2496. z-index: 9999;
  2497. padding: 20px;
  2498. }
  2499. .dealer--popup--container{
  2500. position: relative;
  2501. background-color: #1a1d23;
  2502. border-radius: 20px;
  2503. max-width: 1024px;
  2504. width: 100%;
  2505. max-height: 90vh;
  2506. overflow-y: auto;
  2507. box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  2508. &::-webkit-scrollbar{
  2509. width: 8px;
  2510. }
  2511. &::-webkit-scrollbar-track{
  2512. background: transparent;
  2513. }
  2514. &::-webkit-scrollbar-thumb{
  2515. background: rgba(252, 252, 253, 0.2);
  2516. border-radius: 4px;
  2517. &:hover{
  2518. background: rgba(252, 252, 253, 0.3);
  2519. }
  2520. }
  2521. @media (min-width: 320px) {
  2522. padding: 16px;
  2523. }
  2524. @media (min-width: 375px) {
  2525. padding: 28px;
  2526. }
  2527. @media (min-width: 768px) {
  2528. padding: 48px;
  2529. }
  2530. @media (min-width: 1024px) {
  2531. padding: 56px;
  2532. }
  2533. @media (min-width: 1440px) {
  2534. padding: 64px;
  2535. }
  2536. }
  2537. .dealer--popup--close{
  2538. position: absolute;
  2539. top: 24px;
  2540. right: 24px;
  2541. width: 40px;
  2542. height: 40px;
  2543. background: transparent;
  2544. border: none;
  2545. cursor: pointer;
  2546. z-index: 1;
  2547. display: flex;
  2548. justify-content: center;
  2549. align-items: center;
  2550. border-radius: 50%;
  2551. transition: all 0.3s;
  2552. &:hover{
  2553. background-color: rgba(252, 252, 253, 0.1);
  2554. }
  2555. .close--icon{
  2556. width: 24px;
  2557. height: 24px;
  2558. position: relative;
  2559. &::before,
  2560. &::after{
  2561. content: '';
  2562. position: absolute;
  2563. top: 50%;
  2564. left: 50%;
  2565. width: 20px;
  2566. height: 2px;
  2567. background-color: #fcfcfd;
  2568. }
  2569. &::before{
  2570. transform: translate(-50%, -50%) rotate(45deg);
  2571. }
  2572. &::after{
  2573. transform: translate(-50%, -50%) rotate(-45deg);
  2574. }
  2575. }
  2576. }
  2577. .dealer--popup--content{
  2578. margin: auto;
  2579. max-width: var(--max-content-width);
  2580. display: grid;
  2581. grid-template-columns: 1fr;
  2582. grid-template-rows: 1fr;
  2583. grid-template-areas:"media" "textarea";
  2584. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  2585. @media (min-width: 1024px) {
  2586. grid-template-columns: 1fr 1fr;
  2587. grid-template-areas: "media textarea";
  2588. }
  2589. @media (min-width: 1440px) {
  2590. grid-template-columns: 1fr 1fr;
  2591. grid-template-areas: "media textarea";
  2592. }
  2593. .dealer--thumb--wrap{
  2594. border-radius: 20px;
  2595. overflow: hidden;
  2596. }
  2597. .dealer--infos--wrap{
  2598. grid-area: textarea;
  2599. align-self: center;
  2600. @media screen and (min-width: 320px) {
  2601. padding-block-start: var(--spacing-relative-lg);
  2602. }
  2603. @media screen and (min-width: 1024px) {
  2604. display: flex;
  2605. flex-direction: column;
  2606. -webkit-box-pack: center;
  2607. justify-content: center;
  2608. align-items: flex-start;
  2609. padding-inline-start: var(--spacing-relative-2xl);
  2610. padding-inline-end: var(--spacing-relative-2xl);
  2611. padding-block-start: 0px;
  2612. }
  2613. }
  2614. }
  2615. .dealer--popup--header{
  2616. .dealer--name{
  2617. margin: 0px;
  2618. color: rgb(252, 252, 253);
  2619. font-family: AudiType, sans-serif;
  2620. letter-spacing: 0px;
  2621. font-weight: 400;
  2622. text-decoration: none;
  2623. font-size: 24px;
  2624. line-height: 36px;
  2625. font-stretch: 130%;
  2626. @media (min-width: 1024px) {
  2627. font-size: 28px;
  2628. line-height: 40px;
  2629. }
  2630. @media (min-width: 1440px) {
  2631. font-size: 32px;
  2632. line-height: 44px;
  2633. }
  2634. @media (min-width: 1920px) {
  2635. font-size: 36px;
  2636. line-height: 52px;
  2637. }
  2638. }
  2639. .dealer--type{
  2640. display: inline-block;
  2641. font-size: 14px;
  2642. color: rgba(252, 252, 253, 0.7);
  2643. padding: 4px 12px;
  2644. background-color: rgba(252, 252, 253, 0.1);
  2645. border-radius: 100px;
  2646. }
  2647. }
  2648. .dealer--popup--body{
  2649. display: flex;
  2650. flex-direction: column;
  2651. gap: 8px;
  2652. padding-top:8px;
  2653. }
  2654. .dealer--info--section{
  2655. display: flex;
  2656. flex-direction: column;
  2657. gap: 8px;
  2658. .info--label{
  2659. margin: 0px;
  2660. color: rgba(252, 252, 253, 0.7);
  2661. font-family: AudiType, sans-serif;
  2662. letter-spacing: 0px;
  2663. font-weight: 400;
  2664. text-decoration: none;
  2665. font-size: 16px;
  2666. line-height: 24px;
  2667. font-stretch: 105%;
  2668. a{
  2669. word-break: break-all;
  2670. }
  2671. }
  2672. .phone--link,
  2673. .email--link,
  2674. .website--link{
  2675. color: #fcfcfd;
  2676. text-decoration: underline;
  2677. text-underline-offset: 4px;
  2678. transition: all 0.3s;
  2679. &:hover{
  2680. color: rgba(252, 252, 253, 0.7);
  2681. }
  2682. }
  2683. .business--hours--item{
  2684. line-height: 1.8;
  2685. }
  2686. }
  2687. .dealer--popup--footer{
  2688. margin-top: 40px;
  2689. padding-top: 24px;
  2690. border-top: 1px solid rgba(252, 252, 253, 0.1);
  2691. display: flex;
  2692. justify-content: center;
  2693. }
  2694. .dealer--popup--empty{
  2695. padding: 80px 48px;
  2696. text-align: center;
  2697. >p{
  2698. font-size: 16px;
  2699. color: rgba(252, 252, 253, 0.7);
  2700. }
  2701. }
  2702. // 팝업 페이드 애니메이션
  2703. .dealer--popup--fade-enter-active,
  2704. .dealer--popup--fade-leave-active{
  2705. transition: opacity 0.3s ease;
  2706. .dealer--popup--container{
  2707. transition: transform 0.3s ease, opacity 0.3s ease;
  2708. }
  2709. }
  2710. .dealer--popup--fade-enter-from,
  2711. .dealer--popup--fade-leave-to{
  2712. opacity: 0;
  2713. .dealer--popup--container{
  2714. transform: scale(0.95);
  2715. opacity: 0;
  2716. }
  2717. }
  2718. .dealer--popup--fade-enter-to,
  2719. .dealer--popup--fade-leave-from{
  2720. opacity: 1;
  2721. .dealer--popup--container{
  2722. transform: scale(1);
  2723. opacity: 1;
  2724. }
  2725. }
  2726. /*=================================================
  2727. |버튼 리스트 css
  2728. |START
  2729. =================================================*/
  2730. .light--gray--btn{
  2731. border: 0px;
  2732. flex-direction: column;
  2733. -webkit-box-align: center;
  2734. align-items: center;
  2735. -webkit-box-pack: center;
  2736. justify-content: center;
  2737. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  2738. transition-duration: 250ms;
  2739. border-radius: 999px;
  2740. cursor: pointer;
  2741. display: inline-flex;
  2742. box-sizing: border-box;
  2743. text-align: center;
  2744. letter-spacing: 0px;
  2745. font-weight: 400;
  2746. text-decoration: none;
  2747. font-size: 12px;
  2748. line-height: 16px;
  2749. font-stretch: 105%;
  2750. padding: 8px 16px;
  2751. min-height: 36px;
  2752. background: rgb(101, 112, 129);
  2753. color: rgb(252, 252, 253);
  2754. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  2755. &:hover{
  2756. color:rgb(252,252,253);
  2757. background-color: rgb(44,52,63);
  2758. box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset;
  2759. }
  2760. }
  2761. .default--round--btn {
  2762. flex-direction: column;
  2763. -webkit-box-align: center;
  2764. align-items: center;
  2765. -webkit-box-pack: center;
  2766. justify-content: center;
  2767. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2768. transition-duration: 250ms;
  2769. border-radius: 999px;
  2770. cursor: pointer;
  2771. display: inline-flex;
  2772. border: 0px;
  2773. letter-spacing: 0px;
  2774. font-weight: 400;
  2775. text-decoration: none;
  2776. font-size: 14px;
  2777. line-height: 20px;
  2778. font-stretch: 105%;
  2779. padding: 12px 24px;
  2780. min-height: 48px;
  2781. background-color: rgb(24, 29, 37);
  2782. color: rgb(252, 252, 253);
  2783. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2784. transition-property: color, box-shadow, background-color;
  2785. &.reverse{
  2786. background: rgba(44,52,63);
  2787. box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
  2788. &:hover {
  2789. background-color: rgb(24, 29, 37);
  2790. color: rgb(252, 252, 253);
  2791. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2792. }
  2793. }
  2794. &:hover {
  2795. background: rgba(44,52,63);
  2796. box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
  2797. }
  2798. &:active {
  2799. transform: translateY(0);
  2800. }
  2801. }
  2802. /*=================================================
  2803. |버튼 리스트 css
  2804. |end
  2805. =================================================*/
  2806. /*=================================================
  2807. |모델 리스트 css
  2808. |start
  2809. =================================================*/
  2810. .models--page{
  2811. .type--carousel{
  2812. padding:40px 0px;
  2813. .models--filter--section{
  2814. box-sizing: border-box;
  2815. padding: 0 var(--page-margin);
  2816. position: sticky;
  2817. top: 0px;
  2818. z-index: 85;
  2819. .filter--group{
  2820. .filter--dropdown--list{
  2821. >h2{
  2822. margin: 0 0 var(--spacing-relative-2xs) 0;
  2823. color: rgba(252, 252, 253, 0.7);
  2824. letter-spacing: 0px;
  2825. font-weight: 400;
  2826. text-decoration: none;
  2827. font-size: 12px;
  2828. line-height: 20px;
  2829. font-stretch: 105%;
  2830. padding-bottom:12px;
  2831. }
  2832. .filter--dropdown{
  2833. display: flex;
  2834. gap:10px;
  2835. flex-wrap:wrap;
  2836. margin-bottom:30px;
  2837. button{
  2838. border-radius: 10px;
  2839. box-sizing: border-box;
  2840. display: inline-flex;
  2841. -webkit-box-pack: justify;
  2842. justify-content: space-between;
  2843. -webkit-box-align: center;
  2844. align-items: center;
  2845. gap: 8px;
  2846. letter-spacing: 0px;
  2847. font-weight: 400;
  2848. text-decoration: none;
  2849. font-size: 14px;
  2850. line-height: 20px;
  2851. font-stretch: 105%;
  2852. padding: 4px 12px;
  2853. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2854. transition-duration: 250ms;
  2855. transition-property: background-color, box-shadow, color;
  2856. min-height: 36px;
  2857. cursor: pointer;
  2858. background-color: rgb(24, 29, 37);
  2859. color: rgb(252, 252, 253);
  2860. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2861. &.active{
  2862. background-color: rgb(64, 74, 89);
  2863. color: rgb(252, 252, 253);
  2864. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  2865. }
  2866. }
  2867. }
  2868. }
  2869. }
  2870. }
  2871. .models--list--wrap{
  2872. .all--models--wrap{
  2873. padding: 0px var(--page-margin);
  2874. display: flex;
  2875. align-items: center;
  2876. justify-content: space-between;
  2877. margin: 0 0 var(--spacing-relative-2xs) 0;
  2878. .all--models{
  2879. color: rgba(252, 252, 253, 0.7);
  2880. letter-spacing: 0px;
  2881. font-weight: 400;
  2882. text-decoration: none;
  2883. font-size: 12px;
  2884. line-height: 20px;
  2885. font-stretch: 105%;
  2886. padding-bottom:12px;
  2887. }
  2888. .nav--btn--wrap{
  2889. display: flex;
  2890. align-items: center;
  2891. gap:20px;
  2892. button{
  2893. &.nav--prev--btn{
  2894. transform: rotate(180deg);
  2895. }
  2896. &.swiper-button-disabled{
  2897. opacity: .2;
  2898. cursor: not-allowed;
  2899. }
  2900. }
  2901. }
  2902. }
  2903. .models--list{
  2904. width:100%;
  2905. display: flex;
  2906. flex-wrap:wrap;
  2907. gap:10px;
  2908. > .swiper{
  2909. width:100%;
  2910. padding: 0 0 0 var(--page-margin);
  2911. }
  2912. .model--item{
  2913. --gradient-start: hsla(216, 20%, 17%, 1);
  2914. --gradient-end: hsla(216, 21%, 12%, 1);
  2915. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2916. transition-duration: 250ms;
  2917. transition-property: --gradient-start, --gradient-end, box-shadow;
  2918. padding: 16px;
  2919. overflow: hidden;
  2920. border-radius: 20px;
  2921. border: none;
  2922. cursor: pointer;
  2923. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  2924. backdrop-filter: blur(40px);
  2925. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  2926. text-align: left;
  2927. max-width:220px;
  2928. &.active{
  2929. --gradient-start: hsla(216, 16%, 30%, 1);
  2930. --gradient-end: hsla(216, 16%, 30%, 1);
  2931. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  2932. transition-duration: 250ms;
  2933. transition-property: --gradient-start, --gradient-end, box-shadow;
  2934. padding: 16px;
  2935. overflow: hidden;
  2936. border-radius: 20px;
  2937. border: none;
  2938. cursor: pointer;
  2939. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  2940. backdrop-filter: blur(40px);
  2941. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  2942. text-align: left;
  2943. .model--info--wrap{
  2944. .ico{
  2945. transform: rotate(-90deg);
  2946. }
  2947. }
  2948. }
  2949. .model--name{
  2950. position: relative;
  2951. margin: 0px;
  2952. color: rgba(252, 252, 253, 0.7);
  2953. letter-spacing: 0px;
  2954. font-weight: 400;
  2955. text-decoration: none;
  2956. font-size: 16px;
  2957. line-height: 24px;
  2958. font-stretch: 105%;
  2959. letter-spacing: -1px;
  2960. display: flex;
  2961. align-items: center;
  2962. justify-content: space-between;
  2963. .etron--wrap{
  2964. min-height:28px;
  2965. .etron{
  2966. margin: 0px;
  2967. border-radius: 10px;
  2968. box-sizing: border-box;
  2969. display: inline-flex;
  2970. -webkit-box-pack: justify;
  2971. justify-content: space-between;
  2972. -webkit-box-align: center;
  2973. align-items: center;
  2974. gap: 8px;
  2975. letter-spacing: 0px;
  2976. font-weight: 400;
  2977. text-decoration: none;
  2978. font-size: 12px;
  2979. line-height: 16px;
  2980. font-stretch: 105%;
  2981. padding: 4px 12px;
  2982. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  2983. transition-duration: 250ms;
  2984. transition-property: background-color, box-shadow, color;
  2985. min-height: 28px;
  2986. background-color: rgba(154, 163, 177, 0.1);
  2987. color: rgb(252, 252, 253);
  2988. box-shadow: rgba(128, 128, 128, 0) 0px 0px 0px 1px inset;
  2989. }
  2990. }
  2991. }
  2992. .model--image--wrap{
  2993. display: block;
  2994. aspect-ratio: 7 / 3;
  2995. overflow: hidden;
  2996. padding: 0px;
  2997. margin-bottom:20px;
  2998. img{
  2999. width: 100%;
  3000. height: 100%;
  3001. object-fit: cover;
  3002. }
  3003. }
  3004. .model--info--wrap{
  3005. margin: 0px;
  3006. color: rgba(252, 252, 253, 0.7);
  3007. letter-spacing: 0px;
  3008. font-weight: 400;
  3009. text-decoration: none;
  3010. font-size: 12px;
  3011. line-height: 20px;
  3012. font-stretch: 105%;
  3013. display: flex;
  3014. align-items: center;
  3015. justify-content: space-between;
  3016. .ico{
  3017. width: 24px;
  3018. height: 24px;
  3019. background-image: url(/img/ico--arrow.svg);
  3020. transform: rotate(90deg);
  3021. }
  3022. }
  3023. }
  3024. }
  3025. .models--list--car{
  3026. height: 0px;
  3027. overflow: hidden;
  3028. padding: 0px;
  3029. z-index: 1;
  3030. &.active{
  3031. height: 488px;
  3032. overflow: hidden;
  3033. padding: 28px var(--page-margin);
  3034. z-index: 1;
  3035. }
  3036. @media (min-width: 768px) {
  3037. transition-property: height;
  3038. transition-duration: 0.2s;
  3039. transition-timing-function: ease-in-out;
  3040. }
  3041. .car--list{
  3042. .car--item{
  3043. max-width: 332px;
  3044. min-width: 285px;
  3045. }
  3046. }
  3047. }
  3048. }
  3049. }
  3050. .models--container{
  3051. position: relative;
  3052. background-color: rgb(16, 19, 25);
  3053. @media (min-width: 1024px) {
  3054. display: grid;
  3055. grid-template-columns: 1fr 3fr;
  3056. }
  3057. .models--filter--section{
  3058. box-sizing: border-box;
  3059. padding: 0 var(--page-margin);
  3060. position: sticky;
  3061. top: 0px;
  3062. z-index: 85;
  3063. background-color: rgb(44, 52, 63);
  3064. @media (min-width: 1024px) {
  3065. background-color: transparent;
  3066. height: calc(100vh);
  3067. min-width: 320px;
  3068. padding: var(--spacing-relative-2xl) 0 var(--spacing-relative-2xl) var(--page-margin);
  3069. overflow-y: auto;
  3070. z-index: auto;
  3071. }
  3072. @media (min-width: 1280px) {
  3073. min-width: 388px;
  3074. }
  3075. @media (min-width: 1440px) {
  3076. min-width: auto;
  3077. }
  3078. .filter--group{
  3079. .filter--dropdown--list{
  3080. >h2{
  3081. margin: 0 0 var(--spacing-relative-2xs) 0;
  3082. color: rgba(252, 252, 253, 0.7);
  3083. letter-spacing: 0px;
  3084. font-weight: 400;
  3085. text-decoration: none;
  3086. font-size: 12px;
  3087. line-height: 20px;
  3088. font-stretch: 105%;
  3089. padding-bottom:12px;
  3090. }
  3091. .filter--dropdown{
  3092. display: flex;
  3093. gap:10px;
  3094. flex-wrap:wrap;
  3095. margin-bottom:30px;
  3096. button{
  3097. border-radius: 10px;
  3098. box-sizing: border-box;
  3099. display: inline-flex;
  3100. -webkit-box-pack: justify;
  3101. justify-content: space-between;
  3102. -webkit-box-align: center;
  3103. align-items: center;
  3104. gap: 8px;
  3105. letter-spacing: 0px;
  3106. font-weight: 400;
  3107. text-decoration: none;
  3108. font-size: 14px;
  3109. line-height: 20px;
  3110. font-stretch: 105%;
  3111. padding: 4px 12px;
  3112. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3113. transition-duration: 250ms;
  3114. transition-property: background-color, box-shadow, color;
  3115. min-height: 36px;
  3116. cursor: pointer;
  3117. background-color: rgb(24, 29, 37);
  3118. color: rgb(252, 252, 253);
  3119. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  3120. &.active{
  3121. background-color: rgb(64, 74, 89);
  3122. color: rgb(252, 252, 253);
  3123. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  3124. }
  3125. }
  3126. }
  3127. }
  3128. }
  3129. }
  3130. .models--list--wrap{
  3131. @media (min-width: 1024px) {
  3132. padding: var(--spacing-relative-2xl) var(--page-margin) var(--spacing-relative-2xl) 0;
  3133. }
  3134. .all--models{
  3135. margin: 0 0 var(--spacing-relative-2xs) 0;
  3136. color: rgba(252, 252, 253, 0.7);
  3137. letter-spacing: 0px;
  3138. font-weight: 400;
  3139. text-decoration: none;
  3140. font-size: 12px;
  3141. line-height: 20px;
  3142. font-stretch: 105%;
  3143. padding-bottom:12px;
  3144. }
  3145. .models--list{
  3146. width:100%;
  3147. display: flex;
  3148. flex-wrap:wrap;
  3149. gap:20px;
  3150. .model--item{
  3151. --gradient-start: hsla(216, 20%, 17%, 1);
  3152. --gradient-end: hsla(216, 21%, 12%, 1);
  3153. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3154. transition-duration: 250ms;
  3155. transition-property: --gradient-start, --gradient-end, box-shadow;
  3156. padding: 16px;
  3157. overflow: hidden;
  3158. border-radius: 20px;
  3159. border: none;
  3160. cursor: pointer;
  3161. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  3162. backdrop-filter: blur(40px);
  3163. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  3164. text-align: left;
  3165. max-width:calc( (100% - 60px) / 4);
  3166. .model--name{
  3167. position: relative;
  3168. margin: 0px;
  3169. color: rgba(252, 252, 253, 0.7);
  3170. letter-spacing: 0px;
  3171. font-weight: 400;
  3172. text-decoration: none;
  3173. font-size: 16px;
  3174. line-height: 24px;
  3175. font-stretch: 105%;
  3176. display: flex;
  3177. align-items: center;
  3178. justify-content: space-between;
  3179. .etron--wrap{
  3180. min-height:28px;
  3181. .etron{
  3182. margin: 0px;
  3183. border-radius: 10px;
  3184. box-sizing: border-box;
  3185. display: inline-flex;
  3186. -webkit-box-pack: justify;
  3187. justify-content: space-between;
  3188. -webkit-box-align: center;
  3189. align-items: center;
  3190. gap: 8px;
  3191. letter-spacing: 0px;
  3192. font-weight: 400;
  3193. text-decoration: none;
  3194. font-size: 12px;
  3195. line-height: 16px;
  3196. font-stretch: 105%;
  3197. padding: 4px 12px;
  3198. transition-timing-function:cubic-bezier(0.75, 0.02, 0.5, 1);
  3199. transition-duration: 250ms;
  3200. transition-property: background-color, box-shadow, color;
  3201. min-height: 28px;
  3202. background-color: rgba(154, 163, 177, 0.1);
  3203. color: rgb(252, 252, 253);
  3204. box-shadow: rgba(128, 128, 128, 0) 0px 0px 0px 1px inset;
  3205. }
  3206. }
  3207. }
  3208. .model--image--wrap{
  3209. display: block;
  3210. aspect-ratio: 7 / 3;
  3211. overflow: hidden;
  3212. padding: 0px;
  3213. margin-bottom:20px;
  3214. img{
  3215. width: 100%;
  3216. height: 100%;
  3217. object-fit: cover;
  3218. }
  3219. }
  3220. .model--info--wrap{
  3221. margin: 0px;
  3222. color: rgba(252, 252, 253, 0.7);
  3223. letter-spacing: 0px;
  3224. font-weight: 400;
  3225. text-decoration: none;
  3226. font-size: 12px;
  3227. line-height: 20px;
  3228. font-stretch: 105%;
  3229. display: flex;
  3230. align-items: center;
  3231. justify-content: space-between;
  3232. .ico{
  3233. width: 24px;
  3234. height: 24px;
  3235. background-image: url(/img/ico--arrow.svg);
  3236. }
  3237. }
  3238. }
  3239. }
  3240. }
  3241. }
  3242. .models--list--car{
  3243. .all--car--title{
  3244. margin: 0px;
  3245. color: rgba(252, 252, 253, 0.7);
  3246. letter-spacing: 0px;
  3247. font-weight: 400;
  3248. text-decoration: none;
  3249. font-size: 12px;
  3250. line-height: 20px;
  3251. font-stretch: 105%;
  3252. padding-bottom:12px;
  3253. margin: 0 0 var(--spacing-relative-2xs) 0;
  3254. }
  3255. .car--list{
  3256. display: flex;
  3257. flex-wrap: wrap;
  3258. gap:20px;
  3259. .car--item{
  3260. width:calc( (100% - 40px) / 3 );
  3261. overflow: hidden;
  3262. height: calc(100% - var(--spacing-relative-lg));
  3263. background-color: rgba(154, 163, 177, 0.1);
  3264. border-radius: 20px;
  3265. padding-top:24px;
  3266. padding-bottom:24px;
  3267. .car--image{
  3268. img{
  3269. width:100%;
  3270. }
  3271. }
  3272. .car--info{
  3273. padding-top:24px;
  3274. padding-left: 24px;
  3275. padding-right: 24px;
  3276. .car--link{
  3277. margin: 0px 0px 12px;
  3278. margin-top:24px;
  3279. border: 0px;
  3280. flex-direction: column;
  3281. -webkit-box-align: center;
  3282. align-items: center;
  3283. -webkit-box-pack: center;
  3284. justify-content: center;
  3285. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3286. transition-duration: 250ms;
  3287. border-radius: 999px;
  3288. cursor: pointer;
  3289. display: inline-flex;
  3290. box-sizing: border-box;
  3291. text-align: center;
  3292. font-family: AudiType, sans-serif;
  3293. letter-spacing: 0px;
  3294. font-weight: 400;
  3295. text-decoration: none;
  3296. font-size: 14px;
  3297. line-height: 20px;
  3298. font-stretch: 105%;
  3299. padding: 12px 24px;
  3300. min-height: 48px;
  3301. width: 100%;
  3302. background: rgb(101, 112, 129);
  3303. color: rgb(252, 252, 253);
  3304. box-shadow: rgba(101, 112, 129, 0) 0px 0px 0px 1px inset;
  3305. transition-property: color, background, box-shadow;
  3306. }
  3307. .car--name{
  3308. margin: 0px;
  3309. color: rgb(252, 252, 253);
  3310. letter-spacing: 0px;
  3311. font-weight: 700;
  3312. text-decoration: none;
  3313. font-size: 16px;
  3314. line-height: 24px;
  3315. font-stretch: 130%;
  3316. min-height:64px;
  3317. @media (min-width: 1440px) {
  3318. font-size: 18px;
  3319. line-height: 28px;
  3320. }
  3321. @media (min-width: 1920px) {
  3322. font-size: 20px;
  3323. line-height: 32px;
  3324. }
  3325. }
  3326. }
  3327. .bedge--wrap{
  3328. display: flex;
  3329. padding-left: 24px;
  3330. padding-right: 24px;
  3331. gap: var(--spacing-relative-2xs);
  3332. min-height:28px;
  3333. .etron{
  3334. margin: 0px;
  3335. border-radius: 10px;
  3336. box-sizing: border-box;
  3337. display: inline-flex;
  3338. -webkit-box-pack: justify;
  3339. justify-content: space-between;
  3340. -webkit-box-align: center;
  3341. align-items: center;
  3342. gap: 8px;
  3343. letter-spacing: 0px;
  3344. font-weight: 400;
  3345. text-decoration: none;
  3346. font-size: 12px;
  3347. line-height: 16px;
  3348. font-stretch: 105%;
  3349. padding: 4px 12px;
  3350. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  3351. transition-duration: 250ms;
  3352. transition-property: background-color, box-shadow, color;
  3353. min-height: 28px;
  3354. background-color: rgba(154, 163, 177, 0.1);
  3355. color: rgb(252, 252, 253);
  3356. box-shadow: rgba(128, 128, 128, 0) 0px 0px 0px 1px inset;
  3357. letter-spacing: -1px;
  3358. }
  3359. }
  3360. }
  3361. }
  3362. }
  3363. }
  3364. header{
  3365. width: 100%;
  3366. .header--wrap{
  3367. background-color: #020203;
  3368. max-width: 1920px;
  3369. width: 100%;
  3370. margin: 0 auto;
  3371. height: 72px;
  3372. padding: 0 96px;
  3373. display: flex;
  3374. align-items: center;
  3375. .header--logo--wrap{
  3376. margin-right: 40px;
  3377. a{
  3378. strong{
  3379. clip: rect(1px, 1px, 1px, 1px);
  3380. height: 1px;
  3381. overflow: hidden;
  3382. position: absolute;
  3383. width: 1px;
  3384. }
  3385. }
  3386. }
  3387. }
  3388. .header--menu--wrap{
  3389. display: flex;
  3390. gap: 24px;
  3391. >a{
  3392. color: #fcfcfdb2;
  3393. &:hover{
  3394. color: hsla(216, 33%, 99%, 1);
  3395. }
  3396. }
  3397. }
  3398. .header--search--wrap{
  3399. margin-left: auto;
  3400. display: flex;
  3401. .search--btn{
  3402. border-radius: 50%;
  3403. padding: 0;
  3404. background-image: url(/img/ico--search.svg);
  3405. background-repeat: no-repeat;
  3406. background-position: center;
  3407. background-color: transparent;
  3408. width: 48px;
  3409. height: 48px;
  3410. }
  3411. }
  3412. }
  3413. footer{
  3414. width: 100%;
  3415. //--one-footer-color-black: hsla(216, 26%, 1%, 1);
  3416. --one-footer-color-white: hsla(216, 33%, 99%, 1);
  3417. --one-footer-neutral-5: hsla(216, 26%, 1%, 0.6);
  3418. --one-footer-neutral-10: hsla(216, 17%, 26%, 1);
  3419. --one-footer-neutral-20: hsla(216, 14%, 35%, 1);
  3420. --one-footer-neutral-70: hsla(216, 33%, 99%, 0.6);
  3421. --one-footer-side-spacing: 16px;
  3422. --one-footer-space-xs: var(--spacing-relative-xs);
  3423. --one-footer-space-s: var(--spacing-relative-sm);
  3424. --one-footer-space-m: var(--spacing-relative-md);
  3425. --one-footer-space-l: var(--spacing-relative-lg);
  3426. --one-footer-space-xl: var(--spacing-relative-xl);
  3427. --one-footer-space-xxl: var(--spacing-relative-2xl);
  3428. --one-footer-space-xxxl: var(--spacing-relative-3xl);
  3429. background: var(--one-footer-color-black);
  3430. box-sizing: border-box;
  3431. color: var(--one-footer-color-white);
  3432. @media (min-width: 375px) {
  3433. --one-footer-side-spacing: 28px;
  3434. }
  3435. @media (min-width: 768px) {
  3436. --one-footer-side-spacing: 40px;
  3437. }
  3438. @media (min-width: 1024px) {
  3439. --one-footer-side-spacing: 60px;
  3440. }
  3441. .footer--wrap{
  3442. background-color: #020203;
  3443. max-width: 1920px;
  3444. width: 100%;
  3445. margin: 0 auto;
  3446. padding: 40px 96px;
  3447. display: flex;
  3448. flex-direction: column;
  3449. .footer--site--map{
  3450. width:100%;
  3451. >ul{
  3452. display: block;
  3453. list-style: none;
  3454. padding: 0px;
  3455. width: 100%;
  3456. @media (min-width: 768px) {
  3457. display: flex;
  3458. flex-flow: wrap;
  3459. margin: 28px auto;
  3460. width: 100%;
  3461. }
  3462. >li{
  3463. margin-bottom: -1px;
  3464. >ul{
  3465. >li{
  3466. &:first-child{
  3467. padding-top: 12px;
  3468. }
  3469. padding: 0 20px var(--one-footer-space-s);
  3470. }
  3471. }
  3472. @media (min-width: 768px) {
  3473. //margin: 0px 24px 40px 0px;
  3474. width: calc(33.333%);
  3475. &:first-of-type {
  3476. margin-top: 0px;
  3477. }
  3478. >h2{
  3479. border: none!important;
  3480. }
  3481. >ul{
  3482. >li{
  3483. padding-left: 0;
  3484. padding-right: 0;
  3485. }
  3486. }
  3487. }
  3488. @media (min-width: 1440px) {
  3489. padding: 0px 24px 0px 0px;
  3490. width: 20%;
  3491. }
  3492. >h2{
  3493. color: var(--one-footer-color-white);
  3494. display: flex;
  3495. flex-flow: row;
  3496. -webkit-box-pack: justify;
  3497. justify-content: space-between;
  3498. padding: var(--one-footer-space-m) 20px;
  3499. width: 100%;
  3500. margin: 0px;
  3501. color: rgb(252, 252, 253);
  3502. letter-spacing: 0px;
  3503. font-weight: 400;
  3504. text-decoration: none;
  3505. font-size: 16px;
  3506. line-height: 24px;
  3507. font-stretch: 130%;
  3508. border-top: 1px solid hsla(216, 17%, 26%, 1);
  3509. border-bottom: 1px solid hsla(216, 17%, 26%, 1);
  3510. @media (min-width: 768px) {
  3511. padding: 0px;
  3512. width: auto;
  3513. margin-bottom: 24px;
  3514. }
  3515. @media (min-width: 1440px) {
  3516. font-size: 18px;
  3517. line-height: 28px;
  3518. }
  3519. @media (min-width: 1920px) {
  3520. font-size: 20px;
  3521. line-height: 32px;
  3522. }
  3523. }
  3524. }
  3525. }
  3526. }
  3527. }
  3528. }
  3529. // ============================================
  3530. // Admin Panel Dark Theme Styles
  3531. // ============================================
  3532. // Dark Theme Color Variables
  3533. :root {
  3534. --admin-bg-primary: #0f0f0f;
  3535. --admin-bg-secondary: #1a1a1a;
  3536. --admin-bg-tertiary: #252525;
  3537. --admin-text-primary: #ffffff;
  3538. --admin-text-secondary: #b3b3b3;
  3539. --admin-text-muted: #666666;
  3540. --admin-border-color: #333333;
  3541. --admin-accent-primary: #bb0a30;
  3542. --admin-accent-hover: #990825;
  3543. --admin-success: #10b981;
  3544. --admin-warning: #f59e0b;
  3545. --admin-error: #ef4444;
  3546. --admin-shadow: rgba(0, 0, 0, 0.5);
  3547. }
  3548. // Admin Login Page
  3549. .admin--login {
  3550. min-height: 100vh;
  3551. display: flex;
  3552. align-items: center;
  3553. justify-content: center;
  3554. background: linear-gradient(135deg, var(--admin-bg-primary) 0%, var(--admin-bg-secondary) 100%);
  3555. font-family: 'AudiType', sans-serif;
  3556. .login--container {
  3557. width: 100%;
  3558. max-width: 460px;
  3559. padding: 20px;
  3560. }
  3561. .login--box {
  3562. background: var(--admin-bg-secondary);
  3563. border-radius: 12px;
  3564. padding: 48px 40px;
  3565. box-shadow: 0 8px 32px var(--admin-shadow);
  3566. border: 1px solid var(--admin-border-color);
  3567. }
  3568. .login--logo {
  3569. text-align: center;
  3570. margin-bottom: 40px;
  3571. h1 {
  3572. font-size: 48px;
  3573. font-weight: 700;
  3574. color: var(--admin-text-primary);
  3575. margin: 0 0 8px 0;
  3576. letter-spacing: 4px;
  3577. }
  3578. .subtitle {
  3579. font-size: 14px;
  3580. color: var(--admin-text-secondary);
  3581. margin: 0;
  3582. }
  3583. }
  3584. .login--error {
  3585. background: rgba(239, 68, 68, 0.1);
  3586. border: 1px solid var(--admin-error);
  3587. color: var(--admin-error);
  3588. padding: 12px 16px;
  3589. border-radius: 6px;
  3590. margin-bottom: 20px;
  3591. font-size: 14px;
  3592. }
  3593. .login--form {
  3594. .form--group {
  3595. margin-bottom: 20px;
  3596. }
  3597. .form--input {
  3598. width: 100%;
  3599. padding: 14px 16px;
  3600. background: var(--admin-bg-tertiary);
  3601. border: 1px solid var(--admin-border-color);
  3602. border-radius: 6px;
  3603. color: var(--admin-text-primary);
  3604. font-size: 14px;
  3605. transition: all 0.3s ease;
  3606. font-family: 'AudiType', sans-serif;
  3607. &:focus {
  3608. outline: none;
  3609. border-color: var(--admin-accent-primary);
  3610. box-shadow: 0 0 0 3px rgba(187, 10, 48, 0.1);
  3611. }
  3612. &::placeholder {
  3613. color: var(--admin-text-muted);
  3614. }
  3615. &:disabled {
  3616. opacity: 0.5;
  3617. cursor: not-allowed;
  3618. }
  3619. }
  3620. .form--options {
  3621. display: flex;
  3622. justify-content: space-between;
  3623. align-items: center;
  3624. margin-bottom: 24px;
  3625. .checkbox--label {
  3626. display: flex;
  3627. align-items: center;
  3628. cursor: pointer;
  3629. font-size: 14px;
  3630. color: var(--admin-text-secondary);
  3631. input[type="checkbox"] {
  3632. margin-right: 8px;
  3633. cursor: pointer;
  3634. }
  3635. }
  3636. .forgot--password {
  3637. font-size: 14px;
  3638. color: var(--admin-accent-primary);
  3639. text-decoration: none;
  3640. transition: color 0.3s ease;
  3641. &:hover {
  3642. color: var(--admin-accent-hover);
  3643. }
  3644. }
  3645. }
  3646. .login--button {
  3647. width: 100%;
  3648. padding: 14px 16px;
  3649. background: var(--admin-accent-primary);
  3650. color: var(--admin-text-primary);
  3651. border: none;
  3652. border-radius: 6px;
  3653. font-size: 16px;
  3654. font-weight: 600;
  3655. cursor: pointer;
  3656. transition: all 0.3s ease;
  3657. font-family: 'AudiType', sans-serif;
  3658. &:hover:not(:disabled) {
  3659. background: var(--admin-accent-hover);
  3660. transform: translateY(-2px);
  3661. box-shadow: 0 4px 12px rgba(187, 10, 48, 0.3);
  3662. }
  3663. &:active:not(:disabled) {
  3664. transform: translateY(0);
  3665. }
  3666. &:disabled {
  3667. opacity: 0.6;
  3668. cursor: not-allowed;
  3669. }
  3670. }
  3671. }
  3672. .login--footer {
  3673. margin-top: 32px;
  3674. text-align: center;
  3675. p {
  3676. font-size: 12px;
  3677. color: var(--admin-text-muted);
  3678. margin: 0;
  3679. }
  3680. }
  3681. }
  3682. // Admin Layout
  3683. .admin--layout {
  3684. min-height: 100vh;
  3685. background: var(--admin-bg-primary);
  3686. font-family: 'AudiType', sans-serif;
  3687. }
  3688. // Admin Header
  3689. .admin--header {
  3690. position: fixed;
  3691. top: 0;
  3692. left: 0;
  3693. right: 0;
  3694. height: 64px;
  3695. background: var(--admin-bg-secondary);
  3696. border-bottom: 1px solid var(--admin-border-color);
  3697. display: flex;
  3698. justify-content: space-between;
  3699. align-items: center;
  3700. padding: 0 32px;
  3701. z-index: 1000;
  3702. .admin--header-left {
  3703. display: flex;
  3704. align-items: center;
  3705. }
  3706. .admin--logo {
  3707. display: flex;
  3708. align-items: baseline;
  3709. gap: 12px;
  3710. h1 {
  3711. font-size: 28px;
  3712. font-weight: 700;
  3713. color: var(--admin-text-primary);
  3714. margin: 0;
  3715. letter-spacing: 2px;
  3716. }
  3717. .admin--logo-sub {
  3718. font-size: 16px;
  3719. color: var(--admin-text-secondary);
  3720. font-weight: 400;
  3721. }
  3722. }
  3723. .admin--header-right {
  3724. display: flex;
  3725. gap: 12px;
  3726. }
  3727. .admin--header-btn {
  3728. padding: 8px 20px;
  3729. background: var(--admin-bg-tertiary);
  3730. color: var(--admin-text-primary);
  3731. border: 1px solid var(--admin-border-color);
  3732. border-radius: 6px;
  3733. font-size: 14px;
  3734. font-weight: 500;
  3735. cursor: pointer;
  3736. transition: all 0.3s ease;
  3737. font-family: 'AudiType', sans-serif;
  3738. &:hover {
  3739. background: var(--admin-bg-primary);
  3740. border-color: var(--admin-accent-primary);
  3741. }
  3742. &.admin--header-btn-logout {
  3743. background: var(--admin-accent-primary);
  3744. border-color: var(--admin-accent-primary);
  3745. &:hover {
  3746. background: var(--admin-accent-hover);
  3747. border-color: var(--admin-accent-hover);
  3748. }
  3749. }
  3750. }
  3751. }
  3752. // Admin Content Wrapper
  3753. .admin--content-wrapper {
  3754. display: flex;
  3755. margin-top: 64px;
  3756. min-height: calc(100vh - 64px);
  3757. }
  3758. // Admin Sidebar
  3759. .admin--sidebar {
  3760. width: 260px;
  3761. background: var(--admin-bg-secondary);
  3762. border-right: 1px solid var(--admin-border-color);
  3763. padding: 24px 0;
  3764. position: fixed;
  3765. left: 0;
  3766. top: 64px;
  3767. bottom: 0;
  3768. overflow-y: auto;
  3769. &::-webkit-scrollbar {
  3770. width: 6px;
  3771. }
  3772. &::-webkit-scrollbar-track {
  3773. background: var(--admin-bg-primary);
  3774. }
  3775. &::-webkit-scrollbar-thumb {
  3776. background: var(--admin-border-color);
  3777. border-radius: 3px;
  3778. &:hover {
  3779. background: var(--admin-text-muted);
  3780. }
  3781. }
  3782. }
  3783. // Admin GNB
  3784. .admin--gnb {
  3785. .admin--gnb-group {
  3786. margin-bottom: 8px;
  3787. }
  3788. .admin--gnb-title {
  3789. padding: 12px 24px;
  3790. font-size: 14px;
  3791. font-weight: 600;
  3792. color: var(--admin-text-secondary);
  3793. cursor: pointer;
  3794. display: flex;
  3795. justify-content: space-between;
  3796. align-items: center;
  3797. transition: all 0.3s ease;
  3798. user-select: none;
  3799. &:hover {
  3800. color: var(--admin-text-primary);
  3801. background: var(--admin-bg-primary);
  3802. }
  3803. .admin--gnb-arrow {
  3804. font-size: 10px;
  3805. transition: transform 0.3s ease;
  3806. &.is-open {
  3807. transform: rotate(-180deg);
  3808. }
  3809. }
  3810. }
  3811. .admin--gnb-submenu {
  3812. list-style: none;
  3813. padding: 0;
  3814. margin: 0;
  3815. }
  3816. .admin--gnb-item {
  3817. &.is-active {
  3818. .admin--gnb-link {
  3819. color: var(--admin-accent-primary);
  3820. background: rgba(187, 10, 48, 0.1);
  3821. border-left: 3px solid var(--admin-accent-primary);
  3822. }
  3823. }
  3824. }
  3825. .admin--gnb-link {
  3826. display: block;
  3827. padding: 10px 24px 10px 40px;
  3828. font-size: 14px;
  3829. color: var(--admin-text-secondary);
  3830. text-decoration: none;
  3831. transition: all 0.3s ease;
  3832. border-left: 3px solid transparent;
  3833. &:hover {
  3834. color: var(--admin-text-primary);
  3835. background: var(--admin-bg-primary);
  3836. }
  3837. }
  3838. }
  3839. // Submenu Animation
  3840. .admin--submenu-enter-active,
  3841. .admin--submenu-leave-active {
  3842. transition: all 0.3s ease;
  3843. overflow: hidden;
  3844. }
  3845. .admin--submenu-enter-from,
  3846. .admin--submenu-leave-to {
  3847. opacity: 0;
  3848. max-height: 0;
  3849. }
  3850. .admin--submenu-enter-to,
  3851. .admin--submenu-leave-from {
  3852. opacity: 1;
  3853. max-height: 500px;
  3854. }
  3855. // Admin Main Content
  3856. .admin--main {
  3857. flex: 1;
  3858. margin-left: 260px;
  3859. padding: 32px;
  3860. background: var(--admin-bg-primary);
  3861. }
  3862. // Admin Page Header
  3863. .admin--page-header {
  3864. display: flex;
  3865. justify-content: space-between;
  3866. align-items: center;
  3867. margin-bottom: 32px;
  3868. padding-bottom: 16px;
  3869. border-bottom: 1px solid var(--admin-border-color);
  3870. }
  3871. .admin--page-title {
  3872. font-size: 28px;
  3873. font-weight: 700;
  3874. color: var(--admin-text-primary);
  3875. margin: 0;
  3876. }
  3877. // Admin Breadcrumb
  3878. .admin--breadcrumb {
  3879. display: flex;
  3880. align-items: center;
  3881. gap: 8px;
  3882. font-size: 14px;
  3883. .admin--breadcrumb-link {
  3884. color: var(--admin-text-secondary);
  3885. text-decoration: none;
  3886. transition: color 0.3s ease;
  3887. &:hover {
  3888. color: var(--admin-accent-primary);
  3889. }
  3890. }
  3891. .admin--breadcrumb-current {
  3892. color: var(--admin-text-primary);
  3893. font-weight: 500;
  3894. }
  3895. .admin--breadcrumb-separator {
  3896. color: var(--admin-text-muted);
  3897. }
  3898. }
  3899. // Admin Page Content
  3900. .admin--page-content {
  3901. background: var(--admin-bg-secondary);
  3902. border-radius: 8px;
  3903. padding: 24px;
  3904. border: 1px solid var(--admin-border-color);
  3905. }
  3906. // Admin Dashboard
  3907. .admin--dashboard {
  3908. .admin--dashboard-welcome {
  3909. margin-bottom: 32px;
  3910. h3 {
  3911. font-size: 24px;
  3912. color: var(--admin-text-primary);
  3913. margin: 0 0 8px 0;
  3914. }
  3915. p {
  3916. font-size: 14px;
  3917. color: var(--admin-text-secondary);
  3918. margin: 0;
  3919. }
  3920. }
  3921. .admin--dashboard-stats {
  3922. display: grid;
  3923. grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  3924. gap: 20px;
  3925. margin-bottom: 32px;
  3926. }
  3927. .admin--stat-card {
  3928. background: var(--admin-bg-tertiary);
  3929. border: 1px solid var(--admin-border-color);
  3930. border-radius: 8px;
  3931. padding: 24px;
  3932. display: flex;
  3933. align-items: center;
  3934. gap: 16px;
  3935. transition: all 0.3s ease;
  3936. &:hover {
  3937. border-color: var(--admin-accent-primary);
  3938. transform: translateY(-2px);
  3939. box-shadow: 0 4px 12px var(--admin-shadow);
  3940. }
  3941. .admin--stat-icon {
  3942. font-size: 36px;
  3943. }
  3944. .admin--stat-content {
  3945. flex: 1;
  3946. h4 {
  3947. font-size: 14px;
  3948. color: var(--admin-text-secondary);
  3949. margin: 0 0 8px 0;
  3950. font-weight: 500;
  3951. }
  3952. .admin--stat-number {
  3953. font-size: 28px;
  3954. color: var(--admin-text-primary);
  3955. margin: 0;
  3956. font-weight: 700;
  3957. }
  3958. }
  3959. }
  3960. .admin--dashboard-recent {
  3961. h4 {
  3962. font-size: 18px;
  3963. color: var(--admin-text-primary);
  3964. margin: 0 0 16px 0;
  3965. }
  3966. .admin--recent-list {
  3967. background: var(--admin-bg-tertiary);
  3968. border: 1px solid var(--admin-border-color);
  3969. border-radius: 8px;
  3970. padding: 24px;
  3971. .admin--no-data {
  3972. text-align: center;
  3973. color: var(--admin-text-muted);
  3974. margin: 0;
  3975. }
  3976. }
  3977. }
  3978. }
  3979. // Admin Form Styles
  3980. .admin--form {
  3981. max-width: 800px;
  3982. .admin--form-group {
  3983. margin-bottom: 24px;
  3984. }
  3985. .admin--form-label {
  3986. display: block;
  3987. font-size: 14px;
  3988. font-weight: 500;
  3989. color: var(--admin-text-primary);
  3990. margin-bottom: 8px;
  3991. .admin--required {
  3992. color: var(--admin-error);
  3993. margin-left: 4px;
  3994. }
  3995. }
  3996. .admin--form-input,
  3997. .admin--form-textarea,
  3998. .admin--form-select {
  3999. width: 100%;
  4000. padding: 12px 16px;
  4001. background: var(--admin-bg-tertiary);
  4002. border: 1px solid var(--admin-border-color);
  4003. border-radius: 6px;
  4004. color: var(--admin-text-primary);
  4005. font-size: 14px;
  4006. font-family: 'AudiType', sans-serif;
  4007. transition: all 0.3s ease;
  4008. &:focus {
  4009. outline: none;
  4010. border-color: var(--admin-accent-primary);
  4011. box-shadow: 0 0 0 3px rgba(187, 10, 48, 0.1);
  4012. }
  4013. &::placeholder {
  4014. color: var(--admin-text-muted);
  4015. }
  4016. &:disabled {
  4017. opacity: 0.5;
  4018. cursor: not-allowed;
  4019. }
  4020. }
  4021. .admin--form-textarea {
  4022. min-height: 120px;
  4023. resize: vertical;
  4024. }
  4025. .admin--form-select {
  4026. cursor: pointer;
  4027. }
  4028. // 다중 입력 필드
  4029. .admin--multi-input-wrapper {
  4030. .admin--multi-input-item {
  4031. display: flex;
  4032. gap: 12px;
  4033. margin-bottom: 12px;
  4034. align-items: flex-start;
  4035. .admin--sender-row {
  4036. display: flex;
  4037. gap: 10px;
  4038. flex: 1;
  4039. }
  4040. .admin--form-input {
  4041. flex: 1;
  4042. }
  4043. .admin--btn-remove {
  4044. padding: 12px 20px;
  4045. background: var(--admin-error);
  4046. color: var(--admin-text-primary);
  4047. border: none;
  4048. border-radius: 6px;
  4049. font-size: 14px;
  4050. font-weight: 500;
  4051. cursor: pointer;
  4052. transition: all 0.3s ease;
  4053. white-space: nowrap;
  4054. font-family: 'AudiType', sans-serif;
  4055. &:hover {
  4056. background: #dc2626;
  4057. }
  4058. }
  4059. }
  4060. .admin--btn-add {
  4061. padding: 10px 20px;
  4062. background: var(--admin-bg-tertiary);
  4063. color: var(--admin-text-secondary);
  4064. border: 1px dashed var(--admin-border-color);
  4065. border-radius: 6px;
  4066. font-size: 14px;
  4067. font-weight: 500;
  4068. cursor: pointer;
  4069. transition: all 0.3s ease;
  4070. font-family: 'AudiType', sans-serif;
  4071. &:hover {
  4072. background: var(--admin-bg-primary);
  4073. border-color: var(--admin-accent-primary);
  4074. color: var(--admin-text-primary);
  4075. }
  4076. }
  4077. }
  4078. // 폼 액션 버튼
  4079. .admin--form-actions {
  4080. display: flex;
  4081. gap: 12px;
  4082. margin-top: 32px;
  4083. padding-top: 24px;
  4084. border-top: 1px solid var(--admin-border-color);
  4085. }
  4086. .admin--btn {
  4087. padding: 12px 32px;
  4088. border: none;
  4089. border-radius: 6px;
  4090. font-size: 14px;
  4091. font-weight: 600;
  4092. cursor: pointer;
  4093. transition: all 0.3s ease;
  4094. font-family: 'AudiType', sans-serif;
  4095. &:disabled {
  4096. opacity: 0.5;
  4097. cursor: not-allowed;
  4098. }
  4099. }
  4100. .admin--btn-primary {
  4101. background: var(--admin-accent-primary);
  4102. color: var(--admin-text-primary);
  4103. &:hover:not(:disabled) {
  4104. background: var(--admin-accent-hover);
  4105. transform: translateY(-2px);
  4106. box-shadow: 0 4px 12px rgba(187, 10, 48, 0.3);
  4107. }
  4108. }
  4109. .admin--btn-secondary {
  4110. background: var(--admin-bg-tertiary);
  4111. color: var(--admin-text-primary);
  4112. border: 1px solid var(--admin-border-color);
  4113. &:hover:not(:disabled) {
  4114. background: var(--admin-bg-primary);
  4115. border-color: var(--admin-accent-primary);
  4116. }
  4117. }
  4118. // 알림 메시지
  4119. .admin--alert {
  4120. padding: 12px 16px;
  4121. border-radius: 6px;
  4122. margin-top: 20px;
  4123. font-size: 14px;
  4124. }
  4125. .admin--alert-success {
  4126. background: rgba(16, 185, 129, 0.1);
  4127. border: 1px solid var(--admin-success);
  4128. color: var(--admin-success);
  4129. }
  4130. .admin--alert-error {
  4131. background: rgba(239, 68, 68, 0.1);
  4132. border: 1px solid var(--admin-error);
  4133. color: var(--admin-error);
  4134. }
  4135. .admin--alert-warning {
  4136. background: rgba(245, 158, 11, 0.1);
  4137. border: 1px solid var(--admin-warning);
  4138. color: var(--admin-warning);
  4139. }
  4140. }
  4141. // 로딩
  4142. .admin--loading {
  4143. display: flex;
  4144. align-items: center;
  4145. justify-content: center;
  4146. padding: 60px 20px;
  4147. color: var(--admin-text-secondary);
  4148. font-size: 16px;
  4149. }
  4150. // 전역 로딩 오버레이
  4151. .admin--loading-overlay {
  4152. position: fixed;
  4153. top: 0;
  4154. left: 0;
  4155. right: 0;
  4156. bottom: 0;
  4157. background: rgba(0, 0, 0, 0.5);
  4158. display: flex;
  4159. align-items: center;
  4160. justify-content: center;
  4161. z-index: 99999;
  4162. }
  4163. // 스피너
  4164. .admin--spinner {
  4165. width: 50px;
  4166. height: 50px;
  4167. border: 4px solid rgba(255, 255, 255, 0.3);
  4168. border-top-color: #fff;
  4169. border-radius: 50%;
  4170. animation: admin-spin 0.8s linear infinite;
  4171. }
  4172. @keyframes admin-spin {
  4173. to {
  4174. transform: rotate(360deg);
  4175. }
  4176. }
  4177. // 검색 박스
  4178. .admin--search-box {
  4179. background: var(--admin-bg-secondary);
  4180. border: 1px solid var(--admin-border-color);
  4181. border-radius: 8px;
  4182. padding: 20px;
  4183. margin-bottom: 20px;
  4184. display: flex;
  4185. justify-content: space-between;
  4186. align-items: center;
  4187. gap: 20px;
  4188. .admin--search-form {
  4189. display: flex;
  4190. gap: 12px;
  4191. flex: 1;
  4192. }
  4193. // 검색 박스 내 모든 select, input 통일된 스타일
  4194. .admin--search-select,
  4195. .admin--form-select,
  4196. .admin--form-input,
  4197. .admin--search-input {
  4198. border: 1px solid var(--admin-border-color) !important;
  4199. border-radius: 4px;
  4200. height: 33px !important;
  4201. padding: 6px 14px !important;
  4202. font-size: 13px !important;
  4203. background: var(--admin-bg-tertiary) !important;
  4204. line-height: normal;
  4205. }
  4206. .admin--search-select,
  4207. .admin--form-select {
  4208. width: 140px;
  4209. }
  4210. .admin--form-input,
  4211. .admin--search-input {
  4212. flex: 1;
  4213. max-width: 400px;
  4214. }
  4215. }
  4216. // 날짜 입력 필드
  4217. .admin--date-input {
  4218. cursor: pointer;
  4219. &::-webkit-calendar-picker-indicator {
  4220. cursor: pointer;
  4221. opacity: 0.7;
  4222. transition: opacity 0.2s;
  4223. &:hover {
  4224. opacity: 1;
  4225. }
  4226. }
  4227. }
  4228. // 날짜 범위
  4229. .admin--date-range {
  4230. display: flex;
  4231. align-items: center;
  4232. gap: 12px;
  4233. .admin--date-separator {
  4234. color: var(--admin-text-secondary);
  4235. font-size: 14px;
  4236. }
  4237. .admin--form-input {
  4238. flex: 1;
  4239. max-width: 200px;
  4240. }
  4241. }
  4242. // 검색 input 강제 스타일 (두 클래스 함께 사용될 때)
  4243. .admin--form-input.admin--search-input {
  4244. border: 1px solid var(--admin-border-color) !important;
  4245. background: var(--admin-bg-tertiary) !important;
  4246. }
  4247. // 테이블
  4248. .admin--table-wrapper {
  4249. background: var(--admin-bg-secondary);
  4250. border: 1px solid var(--admin-border-color);
  4251. border-radius: 8px;
  4252. overflow-x: auto;
  4253. }
  4254. .admin--table {
  4255. width: 100%;
  4256. border-collapse: collapse;
  4257. thead {
  4258. background: var(--admin-bg-tertiary);
  4259. border-bottom: 1px solid var(--admin-border-color);
  4260. th {
  4261. padding: 14px 16px;
  4262. text-align: left;
  4263. font-size: 14px;
  4264. font-weight: 600;
  4265. color: var(--admin-text-primary);
  4266. white-space: nowrap;
  4267. }
  4268. }
  4269. tbody {
  4270. tr {
  4271. border-bottom: 1px solid var(--admin-border-color);
  4272. transition: background 0.3s ease;
  4273. &:hover {
  4274. background: var(--admin-bg-tertiary);
  4275. }
  4276. &:last-child {
  4277. border-bottom: none;
  4278. }
  4279. }
  4280. td {
  4281. padding: 14px 16px;
  4282. font-size: 14px;
  4283. color: var(--admin-text-secondary);
  4284. vertical-align: middle;
  4285. }
  4286. .admin--table-title {
  4287. color: var(--admin-text-primary);
  4288. font-weight: 500;
  4289. max-width: 300px;
  4290. overflow: hidden;
  4291. text-overflow: ellipsis;
  4292. white-space: nowrap;
  4293. }
  4294. .admin--table-loading,
  4295. .admin--table-empty {
  4296. text-align: center;
  4297. padding: 60px 20px;
  4298. color: var(--admin-text-muted);
  4299. }
  4300. }
  4301. .admin--table-actions {
  4302. display: flex;
  4303. gap: 8px;
  4304. }
  4305. }
  4306. // 배지
  4307. .admin--badge {
  4308. display: inline-block;
  4309. padding: 4px 12px;
  4310. border-radius: 12px;
  4311. font-size: 12px;
  4312. font-weight: 600;
  4313. white-space: nowrap;
  4314. &.admin--badge-html {
  4315. background: rgba(59, 130, 246, 0.1);
  4316. color: #3b82f6;
  4317. }
  4318. &.admin--badge-image {
  4319. background: rgba(16, 185, 129, 0.1);
  4320. color: #10b981;
  4321. }
  4322. &.admin--badge-active {
  4323. background: rgba(16, 185, 129, 0.1);
  4324. color: var(--admin-success);
  4325. }
  4326. &.admin--badge-scheduled {
  4327. background: rgba(245, 158, 11, 0.1);
  4328. color: var(--admin-warning);
  4329. }
  4330. &.admin--badge-ended {
  4331. background: rgba(107, 114, 128, 0.1);
  4332. color: #6b7280;
  4333. }
  4334. }
  4335. // 작은 버튼
  4336. .admin--btn-small {
  4337. padding: 6px 14px;
  4338. border: none;
  4339. border-radius: 4px;
  4340. font-size: 13px;
  4341. font-weight: 500;
  4342. cursor: pointer;
  4343. transition: all 0.3s ease;
  4344. font-family: 'AudiType', sans-serif;
  4345. white-space: nowrap;
  4346. &.admin--btn-small-primary {
  4347. background: var(--admin-accent-primary);
  4348. color: var(--admin-text-primary);
  4349. &:hover {
  4350. background: var(--admin-accent-hover);
  4351. }
  4352. }
  4353. &.admin--btn-small-danger {
  4354. background: var(--admin-error);
  4355. color: var(--admin-text-primary);
  4356. &:hover {
  4357. background: #dc2626;
  4358. }
  4359. }
  4360. }
  4361. // 페이지네이션
  4362. .admin--pagination {
  4363. display: flex;
  4364. justify-content: center;
  4365. align-items: center;
  4366. gap: 8px;
  4367. margin-top: 24px;
  4368. .admin--pagination-btn {
  4369. min-width: 36px;
  4370. height: 36px;
  4371. padding: 0 12px;
  4372. background: var(--admin-bg-secondary);
  4373. border: 1px solid var(--admin-border-color);
  4374. border-radius: 6px;
  4375. color: var(--admin-text-secondary);
  4376. font-size: 14px;
  4377. font-weight: 500;
  4378. cursor: pointer;
  4379. transition: all 0.3s ease;
  4380. font-family: 'AudiType', sans-serif;
  4381. &:hover:not(:disabled) {
  4382. background: var(--admin-bg-tertiary);
  4383. border-color: var(--admin-accent-primary);
  4384. color: var(--admin-text-primary);
  4385. }
  4386. &.is-active {
  4387. background: var(--admin-accent-primary);
  4388. border-color: var(--admin-accent-primary);
  4389. color: var(--admin-text-primary);
  4390. }
  4391. &:disabled {
  4392. opacity: 0.5;
  4393. cursor: not-allowed;
  4394. }
  4395. }
  4396. }
  4397. // 라디오 그룹
  4398. .admin--radio-group {
  4399. display: flex;
  4400. gap: 20px;
  4401. flex-wrap: wrap;
  4402. }
  4403. .admin--radio-label {
  4404. display: flex;
  4405. align-items: center;
  4406. gap: 8px;
  4407. cursor: pointer;
  4408. font-size: 14px;
  4409. color: var(--admin-text-secondary);
  4410. transition: color 0.3s ease;
  4411. input[type="radio"] {
  4412. cursor: pointer;
  4413. margin: 0;
  4414. }
  4415. &:hover {
  4416. color: var(--admin-text-primary);
  4417. }
  4418. }
  4419. // 날짜 범위
  4420. .admin--date-range {
  4421. display: flex;
  4422. align-items: center;
  4423. gap: 12px;
  4424. .admin--date-separator {
  4425. color: var(--admin-text-secondary);
  4426. font-weight: 500;
  4427. }
  4428. }
  4429. // 사이즈 그룹
  4430. .admin--size-group {
  4431. display: flex;
  4432. gap: 20px;
  4433. .admin--size-item {
  4434. display: flex;
  4435. align-items: center;
  4436. gap: 8px;
  4437. label {
  4438. font-size: 14px;
  4439. color: var(--admin-text-secondary);
  4440. min-width: 40px;
  4441. }
  4442. .admin--form-input {
  4443. max-width: 120px;
  4444. }
  4445. span {
  4446. font-size: 14px;
  4447. color: var(--admin-text-secondary);
  4448. }
  4449. }
  4450. }
  4451. // 파일 입력
  4452. .admin--form-file {
  4453. width: 100%;
  4454. padding: 12px 16px;
  4455. background: var(--admin-bg-tertiary);
  4456. border: 1px solid var(--admin-border-color);
  4457. border-radius: 6px;
  4458. color: var(--admin-text-primary);
  4459. font-size: 14px;
  4460. font-family: 'AudiType', sans-serif;
  4461. cursor: pointer;
  4462. &::-webkit-file-upload-button {
  4463. padding: 8px 16px;
  4464. background: var(--admin-accent-primary);
  4465. color: var(--admin-text-primary);
  4466. border: none;
  4467. border-radius: 4px;
  4468. font-size: 13px;
  4469. font-weight: 500;
  4470. cursor: pointer;
  4471. margin-right: 12px;
  4472. font-family: 'AudiType', sans-serif;
  4473. }
  4474. }
  4475. // 이미지 미리보기
  4476. .admin--image-preview {
  4477. margin-top: 16px;
  4478. position: relative;
  4479. display: inline-block;
  4480. max-width: 400px;
  4481. img {
  4482. max-width: 100%;
  4483. border-radius: 8px;
  4484. border: 1px solid var(--admin-border-color);
  4485. display: block;
  4486. }
  4487. .admin--btn-remove-image {
  4488. position: absolute;
  4489. top: 12px;
  4490. right: 12px;
  4491. padding: 8px 16px;
  4492. background: var(--admin-error);
  4493. color: var(--admin-text-primary);
  4494. border: none;
  4495. border-radius: 4px;
  4496. font-size: 13px;
  4497. font-weight: 500;
  4498. cursor: pointer;
  4499. transition: all 0.3s ease;
  4500. font-family: 'AudiType', sans-serif;
  4501. &:hover {
  4502. background: #dc2626;
  4503. }
  4504. }
  4505. }
  4506. // 비밀번호 입력 래퍼
  4507. .admin--password-input-wrapper {
  4508. position: relative;
  4509. .admin--form-input {
  4510. padding-right: 50px;
  4511. }
  4512. .admin--password-toggle {
  4513. position: absolute;
  4514. right: 12px;
  4515. top: 50%;
  4516. transform: translateY(-50%);
  4517. background: none;
  4518. border: none;
  4519. font-size: 20px;
  4520. cursor: pointer;
  4521. padding: 4px;
  4522. line-height: 1;
  4523. transition: opacity 0.3s ease;
  4524. &:hover {
  4525. opacity: 0.7;
  4526. }
  4527. }
  4528. }
  4529. // 폼 도움말
  4530. .admin--form-help {
  4531. margin: 8px 0 0 0;
  4532. font-size: 13px;
  4533. color: var(--admin-text-muted);
  4534. font-style: italic;
  4535. }
  4536. // 검색 박스 (큰 버전 - 여러 필터)
  4537. .admin--search-box-large {
  4538. .admin--search-filters {
  4539. flex: 1;
  4540. display: flex;
  4541. flex-direction: column;
  4542. gap: 12px;
  4543. .admin--filter-row {
  4544. display: flex;
  4545. align-items: center;
  4546. gap: 12px;
  4547. flex-wrap: wrap;
  4548. .admin--filter-label {
  4549. font-size: 14px;
  4550. color: var(--admin-text-secondary);
  4551. min-width: 60px;
  4552. }
  4553. .admin--form-select,
  4554. .admin--form-input {
  4555. flex: 1;
  4556. min-width: 150px;
  4557. }
  4558. }
  4559. }
  4560. }
  4561. // 테이블 사진
  4562. .admin--table-photo {
  4563. width: 80px;
  4564. height: 120px;
  4565. border-radius: 4px;
  4566. overflow: hidden;
  4567. display: flex;
  4568. align-items: center;
  4569. justify-content: center;
  4570. background: var(--admin-bg-tertiary);
  4571. img {
  4572. width: 100%;
  4573. height: 100%;
  4574. object-fit: cover;
  4575. }
  4576. .admin--table-photo-empty {
  4577. font-size: 11px;
  4578. color: var(--admin-text-muted);
  4579. text-align: center;
  4580. }
  4581. }
  4582. // 테이블 액션 (세로 배치)
  4583. .admin--table-actions-col {
  4584. flex-direction: column;
  4585. gap: 6px;
  4586. .admin--btn-small {
  4587. width: 100%;
  4588. }
  4589. }
  4590. // 작은 버튼 (secondary 추가)
  4591. .admin--btn-small-secondary {
  4592. background: var(--admin-bg-tertiary);
  4593. color: var(--admin-text-secondary);
  4594. border: 1px solid var(--admin-border-color);
  4595. &:hover {
  4596. background: var(--admin-bg-primary);
  4597. border-color: var(--admin-accent-primary);
  4598. color: var(--admin-text-primary);
  4599. }
  4600. }
  4601. // 엑셀 버튼 (녹색 배경)
  4602. .admin--btn-small-excel {
  4603. background: #217346;
  4604. color: #ffffff;
  4605. border: 1px solid #1a5c37;
  4606. &:hover {
  4607. background: #185c37;
  4608. border-color: #144d2d;
  4609. }
  4610. }
  4611. // Responsive
  4612. @media (max-width: 1024px) {
  4613. .admin--sidebar {
  4614. width: 220px;
  4615. }
  4616. .admin--main {
  4617. margin-left: 220px;
  4618. }
  4619. }
  4620. @media (max-width: 768px) {
  4621. .admin--header {
  4622. padding: 0 16px;
  4623. }
  4624. .admin--sidebar {
  4625. transform: translateX(-100%);
  4626. transition: transform 0.3s ease;
  4627. &.is-open {
  4628. transform: translateX(0);
  4629. }
  4630. }
  4631. .admin--main {
  4632. margin-left: 0;
  4633. padding: 16px;
  4634. }
  4635. .admin--page-header {
  4636. flex-direction: column;
  4637. align-items: flex-start;
  4638. gap: 12px;
  4639. }
  4640. .admin--form {
  4641. .admin--form-actions {
  4642. flex-direction: column;
  4643. .admin--btn {
  4644. width: 100%;
  4645. }
  4646. }
  4647. .admin--multi-input-wrapper {
  4648. .admin--multi-input-item {
  4649. flex-direction: column;
  4650. .admin--btn-remove {
  4651. width: 100%;
  4652. }
  4653. }
  4654. }
  4655. }
  4656. }
  4657. // File Attachment Styles
  4658. .admin--form-file-hidden {
  4659. display: none;
  4660. }
  4661. .admin--file-list {
  4662. margin-bottom: 12px;
  4663. border: 1px solid var(--admin-border-color);
  4664. border-radius: 4px;
  4665. background-color: var(--admin-bg-secondary);
  4666. }
  4667. .admin--file-item {
  4668. display: flex;
  4669. align-items: center;
  4670. padding: 12px 16px;
  4671. border-bottom: 1px solid var(--admin-border-color);
  4672. &:last-child {
  4673. border-bottom: none;
  4674. }
  4675. &:hover {
  4676. background-color: rgba(255, 255, 255, 0.03);
  4677. }
  4678. }
  4679. .admin--file-name {
  4680. flex: 1;
  4681. color: var(--admin-text-primary);
  4682. font-size: 14px;
  4683. overflow: hidden;
  4684. text-overflow: ellipsis;
  4685. white-space: nowrap;
  4686. margin-right: 8px;
  4687. &:hover {
  4688. text-decoration: underline;
  4689. }
  4690. }
  4691. .admin--file-size {
  4692. color: var(--admin-text-secondary);
  4693. font-size: 13px;
  4694. margin-right: 12px;
  4695. white-space: nowrap;
  4696. }
  4697. .admin--btn-remove-file {
  4698. padding: 4px 12px;
  4699. background-color: transparent;
  4700. color: var(--admin-danger-color);
  4701. border: 1px solid var(--admin-danger-color);
  4702. border-radius: 4px;
  4703. font-size: 13px;
  4704. cursor: pointer;
  4705. transition: all 0.2s ease;
  4706. white-space: nowrap;
  4707. &:hover {
  4708. background-color: var(--admin-danger-color);
  4709. color: white;
  4710. }
  4711. }
  4712. // Checkbox Group Styles
  4713. .admin--checkbox-group {
  4714. display: flex;
  4715. gap: 20px;
  4716. }
  4717. .admin--checkbox-label {
  4718. display: flex;
  4719. align-items: center;
  4720. gap: 8px;
  4721. color: var(--admin-text-primary);
  4722. font-size: 14px;
  4723. cursor: pointer;
  4724. input[type="checkbox"] {
  4725. width: 18px;
  4726. height: 18px;
  4727. cursor: pointer;
  4728. accent-color: var(--admin-accent-primary);
  4729. }
  4730. span {
  4731. user-select: none;
  4732. }
  4733. &:hover {
  4734. opacity: 0.8;
  4735. }
  4736. }
  4737. // Admin Footer
  4738. .admin--footer {
  4739. margin-top: 64px;
  4740. padding: 24px 0;
  4741. border-top: 1px solid var(--admin-border-color);
  4742. text-align: center;
  4743. p {
  4744. color: var(--admin-text-muted);
  4745. font-size: 14px;
  4746. margin: 0;
  4747. }
  4748. }
  4749. // IMPORTANT: Force display admin header and footer
  4750. .admin--header {
  4751. display: flex !important;
  4752. min-height: 64px !important;
  4753. background: #1a1a1a !important;
  4754. visibility: visible !important;
  4755. }
  4756. .admin--footer {
  4757. display: block !important;
  4758. min-height: 60px !important;
  4759. background: #1a1a1a !important;
  4760. visibility: visible !important;
  4761. }
  4762. // Alert Modal Styles
  4763. .admin--modal-overlay {
  4764. position: fixed;
  4765. top: 0;
  4766. left: 0;
  4767. right: 0;
  4768. bottom: 0;
  4769. background: rgba(0, 0, 0, 0.7);
  4770. z-index: 9999;
  4771. display: flex;
  4772. align-items: center;
  4773. justify-content: center;
  4774. }
  4775. .admin--alert-modal {
  4776. background: #2d2d2d;
  4777. padding: 0;
  4778. border-radius: 8px;
  4779. min-width: 400px;
  4780. max-width: 500px;
  4781. box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  4782. }
  4783. .admin--alert-modal .admin--modal-header {
  4784. padding: 20px;
  4785. border-bottom: 1px solid #404040;
  4786. display: flex;
  4787. justify-content: space-between;
  4788. align-items: center;
  4789. h4 {
  4790. margin: 0;
  4791. font-size: 18px;
  4792. font-weight: 600;
  4793. color: #ffffff;
  4794. }
  4795. }
  4796. .admin--alert-modal .admin--modal-close {
  4797. background: none;
  4798. border: none;
  4799. font-size: 24px;
  4800. cursor: pointer;
  4801. color: #999;
  4802. line-height: 1;
  4803. transition: color 0.2s;
  4804. &:hover {
  4805. color: #fff;
  4806. }
  4807. }
  4808. .admin--alert-modal .admin--modal-body {
  4809. padding: 30px 20px;
  4810. .admin--alert-content p {
  4811. margin: 0;
  4812. font-size: 15px;
  4813. line-height: 1.6;
  4814. color: #e0e0e0;
  4815. }
  4816. }
  4817. .admin--alert-modal .admin--modal-footer {
  4818. padding: 15px 20px;
  4819. border-top: 1px solid #404040;
  4820. display: flex;
  4821. gap: 10px;
  4822. justify-content: flex-end;
  4823. }
  4824. .admin--alert-modal .admin--btn-secondary {
  4825. padding: 8px 20px;
  4826. border: 1px solid #404040;
  4827. background: #252525;
  4828. color: #e0e0e0;
  4829. border-radius: 4px;
  4830. cursor: pointer;
  4831. font-size: 14px;
  4832. transition: all 0.2s;
  4833. &:hover {
  4834. background: #2d2d2d;
  4835. }
  4836. }
  4837. .admin--alert-modal .admin--btn-primary {
  4838. padding: 8px 20px;
  4839. border: none;
  4840. background: var(--admin-accent-primary);
  4841. color: white;
  4842. border-radius: 4px;
  4843. cursor: pointer;
  4844. font-size: 14px;
  4845. transition: all 0.2s;
  4846. &:hover {
  4847. background: var(--admin-accent-hover);
  4848. }
  4849. }
  4850. // Modal Animation
  4851. @keyframes slideUp {
  4852. from {
  4853. opacity: 0;
  4854. transform: translateY(30px);
  4855. }
  4856. to {
  4857. opacity: 1;
  4858. transform: translateY(0);
  4859. }
  4860. }
  4861. .modal-fade-enter-active {
  4862. transition: opacity 0.3s ease;
  4863. .admin--alert-modal {
  4864. animation: slideUp 0.3s ease-out;
  4865. }
  4866. }
  4867. .modal-fade-leave-active {
  4868. transition: opacity 0.2s ease;
  4869. }
  4870. .modal-fade-enter-from,
  4871. .modal-fade-leave-to {
  4872. opacity: 0;
  4873. }