admin.scss 147 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622
  1. @charset "UTF-8";
  2. @use "sass:math";
  3. // Utility classes for padding and margin (1-100)
  4. @for $i from 1 through 200 {
  5. // Padding
  6. .pt--#{$i} {
  7. padding-top: #{$i}px !important;
  8. }
  9. .pr--#{$i} {
  10. padding-right: #{$i}px !important;
  11. }
  12. .pb--#{$i} {
  13. padding-bottom: #{$i}px !important;
  14. }
  15. .pl--#{$i} {
  16. padding-left: #{$i}px !important;
  17. }
  18. .p--#{$i} {
  19. padding: #{$i}px !important;
  20. }
  21. // Margin
  22. .mt--#{$i} {
  23. margin-top: #{$i}px !important;
  24. }
  25. .mr--#{$i} {
  26. margin-right: #{$i}px !important;
  27. }
  28. .mb--#{$i} {
  29. margin-bottom: #{$i}px !important;
  30. }
  31. .ml--#{$i} {
  32. margin-left: #{$i}px !important;
  33. }
  34. .m--#{$i} {
  35. margin: #{$i}px !important;
  36. }
  37. @media (max-width: 720px) {
  38. .pt--#{$i} {
  39. padding-top: #{math.div($i, 2)}px !important;
  40. }
  41. .pr--#{$i} {
  42. padding-right: #{math.div($i, 2)}px !important;
  43. }
  44. .pb--#{$i} {
  45. padding-bottom: #{math.div($i, 2)}px !important;
  46. }
  47. .pl--#{$i} {
  48. padding-left: #{math.div($i, 2)}px !important;
  49. }
  50. .p--#{$i} {
  51. padding: #{math.div($i, 2)}px !important;
  52. }
  53. .mt--#{$i} {
  54. margin-top: #{math.div($i, 2)}px !important;
  55. }
  56. .mr--#{$i} {
  57. margin-right: #{math.div($i, 2)}px !important;
  58. }
  59. .mb--#{$i} {
  60. margin-bottom: #{math.div($i, 2)}px !important;
  61. }
  62. .ml--#{$i} {
  63. margin-left: #{math.div($i, 2)}px !important;
  64. }
  65. .m--#{$i} {
  66. margin: #{math.div($i, 2)}px !important;
  67. }
  68. }
  69. }
  70. @for $i from 12 through 40 {
  71. .ft--#{$i} {
  72. font-size : #{$i}px !important;
  73. }
  74. }
  75. html {
  76. scroll-behavior: smooth;
  77. }
  78. :root {
  79. --max-content-width: 1920px;
  80. --page-margin: 16px;
  81. @media (min-width: 375px) {
  82. --page-margin: 28px;
  83. }
  84. @media (min-width: 768px) {
  85. --page-margin: 40px;
  86. }
  87. @media (min-width: 1024px) {
  88. --page-margin: 60px;
  89. }
  90. @media (min-width: 1440px) {
  91. --page-margin: 96px;
  92. }
  93. @media (min-width: 1920px) {
  94. --page-margin: 96px;
  95. }
  96. @property --gradient-start {
  97. syntax: '<color>';
  98. initial-value: transparent;
  99. inherits: false;
  100. }
  101. @property --gradient-end {
  102. syntax: '<color>';
  103. initial-value: transparent;
  104. inherits: false;
  105. }
  106. --spacing-relative-2xs: 4px;
  107. --spacing-relative-xs: 8px;
  108. --spacing-relative-sm: 12px;
  109. --spacing-relative-md: 16px;
  110. --spacing-relative-lg: 24px;
  111. --spacing-relative-xl: 28px;
  112. --spacing-relative-2xl: 36px;
  113. --spacing-relative-3xl: 40px;
  114. --spacing-relative-4xl: 48px;
  115. --spacing-relative-5xl: 64px;
  116. --spacing-relative-6xl: 80px;
  117. --spacing-relative-7xl: 96px;
  118. --spacing-relative-8xl: 120px;
  119. @media (min-width: 768px) {
  120. --spacing-relative-3xl: 48px;
  121. --spacing-relative-4xl: 64px;
  122. --spacing-relative-5xl: 72px;
  123. --spacing-relative-6xl: 88px;
  124. --spacing-relative-7xl: 104px;
  125. --spacing-relative-8xl: 136px;
  126. }
  127. @media (min-width: 1024px) {
  128. --spacing-relative-2xl: 40px;
  129. --spacing-relative-3xl: 56px;
  130. --spacing-relative-4xl: 72px;
  131. --spacing-relative-5xl: 88px;
  132. --spacing-relative-6xl: 104px;
  133. --spacing-relative-7xl: 128px;
  134. --spacing-relative-8xl: 168px;
  135. }
  136. @media (min-width: 1440px) {
  137. --spacing-relative-xl: 32px;
  138. --spacing-relative-2xl: 56px;
  139. --spacing-relative-3xl: 72px;
  140. --spacing-relative-4xl: 88px;
  141. --spacing-relative-5xl: 104px;
  142. --spacing-relative-6xl: 120px;
  143. --spacing-relative-7xl: 160px;
  144. --spacing-relative-8xl: 216px;
  145. }
  146. @media (min-width: 1920px) {
  147. --spacing-relative-xl: 40px;
  148. --spacing-relative-2xl: 72px;
  149. --spacing-relative-3xl: 88px;
  150. --spacing-relative-4xl: 104px;
  151. --spacing-relative-5xl: 120px;
  152. --spacing-relative-6xl: 136px;
  153. --spacing-relative-7xl: 176px;
  154. --spacing-relative-8xl: 248px;
  155. }
  156. }
  157. /*=================================================
  158. |컴포넌트 별 css
  159. |START
  160. =================================================*/
  161. /*=================================================
  162. |컴포넌트 별 css
  163. |END
  164. =================================================*/
  165. .radius--img--wrap {
  166. overflow: hidden;
  167. border-radius: 20px;
  168. }
  169. // 딜러 검색 드롭다운 스타일
  170. .dealer--search--section {
  171. width: 100%;
  172. max-width: 1920px;
  173. margin: 0 auto;
  174. padding: 80px 96px;
  175. background-color: hsla(216, 23%, 8%, 1);
  176. }
  177. .dealer--search--container {
  178. display: flex;
  179. flex-direction: column;
  180. gap: 48px;
  181. border-top: 1px solid rgba(252, 252, 253, 0.15);
  182. }
  183. .dealer--category--wrap {
  184. display: flex;
  185. flex-direction: column;
  186. }
  187. .dealer--category--title {
  188. font-size: 28px;
  189. font-weight: 600;
  190. margin: 0 0 24px 0;
  191. color: rgb(252, 252, 253);
  192. padding-bottom: 16px;
  193. border-bottom: 2px solid rgba(252, 252, 253, 0.3);
  194. }
  195. .dealer--region--item {
  196. border-bottom: 1px solid rgba(252, 252, 253, 0.15);
  197. }
  198. .dealer--region--header {
  199. width: 100%;
  200. display: flex;
  201. justify-content: space-between;
  202. align-items: center;
  203. padding: 20px 24px;
  204. background-color: transparent;
  205. border: none;
  206. color: rgb(252, 252, 253);
  207. cursor: pointer;
  208. transition: all 0.3s ease;
  209. &:hover {
  210. background-color: rgba(252, 252, 253, 0.05);
  211. }
  212. &.active {
  213. background-color: rgba(252, 252, 253, 0.08);
  214. }
  215. }
  216. .dealer--region--name {
  217. font-size: 18px;
  218. font-weight: 500;
  219. }
  220. .dealer--toggle--icon {
  221. font-size: 28px;
  222. line-height: 1;
  223. transition: transform 0.3s ease;
  224. }
  225. .dealer--list--content {
  226. padding: 0 24px 24px;
  227. animation: slideDown 0.3s ease;
  228. }
  229. @keyframes slideDown {
  230. from {
  231. opacity: 0;
  232. transform: translateY(-10px);
  233. }
  234. to {
  235. opacity: 1;
  236. transform: translateY(0);
  237. }
  238. }
  239. .dealer--list {
  240. list-style: none;
  241. padding: 0;
  242. padding-left: 10px;
  243. margin: 0;
  244. display: flex;
  245. flex-direction: column;
  246. gap: 0px;
  247. li {
  248. margin: 0;
  249. position: relative;
  250. &:before {
  251. content: '>';
  252. font-size: 12px;
  253. margin-right: 10px;
  254. }
  255. a {
  256. text-decoration: underline;
  257. }
  258. }
  259. }
  260. .dealer--link {
  261. display: inline-block;
  262. color: rgba(252, 252, 253, 0.7);
  263. text-decoration: none;
  264. font-size: 16px;
  265. transition: all 0.2s ease;
  266. padding: 8px 0;
  267. &:hover {
  268. color: rgb(252, 252, 253);
  269. text-decoration: underline;
  270. }
  271. }
  272. // 반응형 처리
  273. @media (max-width: 1024px) {
  274. .dealer--search--section {
  275. padding: 60px 48px;
  276. }
  277. .dealer--search--container {
  278. gap: 40px;
  279. }
  280. .dealer--category--title {
  281. font-size: 24px;
  282. margin-bottom: 20px;
  283. padding-bottom: 12px;
  284. }
  285. .dealer--region--header {
  286. padding: 16px 20px;
  287. }
  288. .dealer--region--name {
  289. font-size: 16px;
  290. }
  291. .dealer--list--content {
  292. padding: 0 20px 20px;
  293. }
  294. .dealer--list {
  295. gap: 6px;
  296. }
  297. }
  298. @media (max-width: 768px) {
  299. .dealer--search--section {
  300. padding: 40px 24px;
  301. }
  302. .dealer--search--container {
  303. gap: 32px;
  304. }
  305. .dealer--category--title {
  306. font-size: 20px;
  307. margin-bottom: 16px;
  308. padding-bottom: 10px;
  309. }
  310. .dealer--region--header {
  311. padding: 14px 16px;
  312. }
  313. .dealer--region--name {
  314. font-size: 15px;
  315. }
  316. .dealer--toggle--icon {
  317. font-size: 24px;
  318. }
  319. .dealer--list--content {
  320. padding: 0 16px 16px;
  321. }
  322. .dealer--list {
  323. gap: 6px;
  324. }
  325. .dealer--link {
  326. font-size: 14px;
  327. padding: 6px 0;
  328. }
  329. }
  330. // 딜러 검색 페이지 스타일
  331. .dealer--search--section {
  332. padding: 64px 96px;
  333. .dealer--search--container {
  334. margin: 0 auto;
  335. }
  336. .dealer--category--wrap {
  337. display: flex;
  338. flex-direction: column;
  339. //gap: 16px;
  340. }
  341. .dealer--region--item {
  342. border-bottom: 1px solid rgba(252, 252, 253, 0.1);
  343. }
  344. .dealer--region--header {
  345. width: 100%;
  346. display: flex;
  347. justify-content: space-between;
  348. align-items: center;
  349. padding: 24px 0;
  350. background: transparent;
  351. border: none;
  352. color: #fcfcfd;
  353. font-size: 24px;
  354. font-weight: 400;
  355. transition: all 0.3s;
  356. &:hover {
  357. color: rgba(252, 252, 253, 0.7);
  358. }
  359. &.active {
  360. color: #fcfcfd;
  361. }
  362. }
  363. .dealer--region--name {
  364. font-size: 24px;
  365. }
  366. .dealer--toggle--icon {
  367. font-size: 32px;
  368. line-height: 1;
  369. font-weight: 300;
  370. }
  371. .dealer--list--content {
  372. padding-bottom: 24px;
  373. }
  374. .dealer--list {
  375. display: flex;
  376. flex-direction: column;
  377. gap: 16px;
  378. >li {
  379. list-style: none;
  380. }
  381. }
  382. .dealer--link {
  383. display: inline-block;
  384. color: rgba(252, 252, 253, 0.7);
  385. font-size: 16px;
  386. text-decoration: underline;
  387. text-underline-offset: 4px;
  388. transition: all 0.3s;
  389. background: transparent;
  390. border: none;
  391. font-weight: 400;
  392. padding: 0;
  393. cursor: pointer;
  394. &:hover {
  395. color: #fcfcfd;
  396. }
  397. }
  398. }
  399. // 딜러 팝업 스타일
  400. .dealer--popup--overlay {
  401. position: fixed;
  402. top: 0;
  403. left: 0;
  404. width: 100%;
  405. height: 100%;
  406. background-color: rgba(0, 0, 0, 0.5);
  407. display: flex;
  408. justify-content: center;
  409. align-items: center;
  410. z-index: 9999;
  411. padding: 20px;
  412. }
  413. .dealer--popup--container {
  414. position: relative;
  415. background-color: #ffffff;
  416. border-radius: 20px;
  417. max-width: 1024px;
  418. width: 100%;
  419. max-height: 90vh;
  420. overflow-y: auto;
  421. box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  422. &::-webkit-scrollbar {
  423. width: 8px;
  424. }
  425. &::-webkit-scrollbar-track {
  426. background: transparent;
  427. }
  428. &::-webkit-scrollbar-thumb {
  429. background: rgba(0, 0, 0, 0.2);
  430. border-radius: 4px;
  431. &:hover {
  432. background: rgba(0, 0, 0, 0.3);
  433. }
  434. }
  435. @media (min-width: 320px) {
  436. padding: 16px;
  437. }
  438. @media (min-width: 375px) {
  439. padding: 28px;
  440. }
  441. @media (min-width: 768px) {
  442. padding: 48px;
  443. }
  444. @media (min-width: 1024px) {
  445. padding: 56px;
  446. }
  447. @media (min-width: 1440px) {
  448. padding: 64px;
  449. }
  450. }
  451. .dealer--popup--close {
  452. position: absolute;
  453. top: 24px;
  454. right: 24px;
  455. width: 40px;
  456. height: 40px;
  457. background: transparent;
  458. border: none;
  459. cursor: pointer;
  460. z-index: 1;
  461. display: flex;
  462. justify-content: center;
  463. align-items: center;
  464. border-radius: 50%;
  465. transition: all 0.3s;
  466. &:hover {
  467. background-color: rgba(0, 0, 0, 0.05);
  468. }
  469. .close--icon {
  470. width: 24px;
  471. height: 24px;
  472. position: relative;
  473. &::before,
  474. &::after {
  475. content: '';
  476. position: absolute;
  477. top: 50%;
  478. left: 50%;
  479. width: 20px;
  480. height: 2px;
  481. background-color: #333333;
  482. }
  483. &::before {
  484. transform: translate(-50%, -50%) rotate(45deg);
  485. }
  486. &::after {
  487. transform: translate(-50%, -50%) rotate(-45deg);
  488. }
  489. }
  490. }
  491. .dealer--popup--content {
  492. margin: auto;
  493. max-width: var(--max-content-width);
  494. display: grid;
  495. grid-template-columns: 1fr;
  496. grid-template-rows: 1fr;
  497. grid-template-areas: "media" "textarea";
  498. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  499. @media (min-width: 1024px) {
  500. grid-template-columns: 1fr 1fr;
  501. grid-template-areas: "media textarea";
  502. }
  503. @media (min-width: 1440px) {
  504. grid-template-columns: 1fr 1fr;
  505. grid-template-areas: "media textarea";
  506. }
  507. .dealer--thumb--wrap {
  508. border-radius: 20px;
  509. overflow: hidden;
  510. }
  511. .dealer--infos--wrap {
  512. grid-area: textarea;
  513. align-self: center;
  514. @media screen and (min-width: 320px) {
  515. padding-block-start: var(--spacing-relative-lg);
  516. }
  517. @media screen and (min-width: 1024px) {
  518. display: flex;
  519. flex-direction: column;
  520. -webkit-box-pack: center;
  521. justify-content: center;
  522. align-items: flex-start;
  523. padding-inline-start: var(--spacing-relative-2xl);
  524. padding-inline-end: var(--spacing-relative-2xl);
  525. padding-block-start: 0px;
  526. }
  527. }
  528. }
  529. .dealer--popup--header {
  530. .dealer--name {
  531. margin: 0px;
  532. color: #1a1a1a;
  533. letter-spacing: 0px;
  534. font-weight: 400;
  535. text-decoration: none;
  536. font-size: 24px;
  537. line-height: 36px;
  538. font-stretch: 130%;
  539. @media (min-width: 1024px) {
  540. font-size: 28px;
  541. line-height: 40px;
  542. }
  543. @media (min-width: 1440px) {
  544. font-size: 32px;
  545. line-height: 44px;
  546. }
  547. @media (min-width: 1920px) {
  548. font-size: 36px;
  549. line-height: 52px;
  550. }
  551. }
  552. .dealer--type {
  553. display: inline-block;
  554. font-size: 14px;
  555. color: #666666;
  556. padding: 4px 12px;
  557. background-color: rgba(0, 0, 0, 0.05);
  558. border-radius: 100px;
  559. }
  560. }
  561. .dealer--popup--body {
  562. display: flex;
  563. flex-direction: column;
  564. gap: 8px;
  565. padding-top: 8px;
  566. }
  567. .dealer--info--section {
  568. display: flex;
  569. flex-direction: column;
  570. gap: 8px;
  571. .info--label {
  572. margin: 0px;
  573. color: #666666;
  574. letter-spacing: 0px;
  575. font-weight: 400;
  576. text-decoration: none;
  577. font-size: 16px;
  578. line-height: 24px;
  579. font-stretch: 105%;
  580. a {
  581. word-break: break-all;
  582. }
  583. }
  584. .phone--link,
  585. .email--link,
  586. .website--link {
  587. color: #2563eb;
  588. text-decoration: underline;
  589. text-underline-offset: 4px;
  590. transition: all 0.3s;
  591. &:hover {
  592. color: #1d4ed8;
  593. }
  594. }
  595. .business--hours--item {
  596. line-height: 1.8;
  597. }
  598. }
  599. .dealer--popup--footer {
  600. margin-top: 40px;
  601. padding-top: 24px;
  602. border-top: 1px solid #e0e0e0;
  603. display: flex;
  604. justify-content: center;
  605. }
  606. .dealer--popup--empty {
  607. padding: 80px 48px;
  608. text-align: center;
  609. >p {
  610. font-size: 16px;
  611. color: #666666;
  612. }
  613. }
  614. // 팝업 페이드 애니메이션
  615. .dealer--popup--fade-enter-active,
  616. .dealer--popup--fade-leave-active {
  617. transition: opacity 0.3s ease;
  618. .dealer--popup--container {
  619. transition: transform 0.3s ease, opacity 0.3s ease;
  620. }
  621. }
  622. .dealer--popup--fade-enter-from,
  623. .dealer--popup--fade-leave-to {
  624. opacity: 0;
  625. .dealer--popup--container {
  626. transform: scale(0.95);
  627. opacity: 0;
  628. }
  629. }
  630. .dealer--popup--fade-enter-to,
  631. .dealer--popup--fade-leave-from {
  632. opacity: 1;
  633. .dealer--popup--container {
  634. transform: scale(1);
  635. opacity: 1;
  636. }
  637. }
  638. /*=================================================
  639. |버튼 리스트 css
  640. |end
  641. =================================================*/
  642. header {
  643. position: sticky;
  644. top: 0px;
  645. z-index: 1000;
  646. background-color: #ffffff;
  647. border-bottom: 1px solid #E9E9E9;
  648. .header--wrap {
  649. max-width: 1440px;
  650. // padding:25px 0px;
  651. background-color: #fff;
  652. align-items: center;
  653. margin: 0 auto;
  654. display: flex;
  655. justify-content: space-between;
  656. position: relative;
  657. z-index: 1001;
  658. nav {
  659. display: flex;
  660. align-items: center;
  661. >ul {
  662. display: flex;
  663. align-items: center;
  664. >li {
  665. width: 200px;
  666. white-space: nowrap;
  667. height: 90px;
  668. display: flex;
  669. position: relative;
  670. align-items: center;
  671. justify-content: center;
  672. cursor: pointer;
  673. >a {
  674. width: 100%;
  675. color: #222;
  676. text-align: center;
  677. // padding: 0 60px;
  678. display: inline-block;
  679. font-size: 16px;
  680. font-style: normal;
  681. font-weight: 700 !important;
  682. text-transform: uppercase;
  683. transition: color 0.3s;
  684. &:hover {
  685. color: #076FED;
  686. }
  687. }
  688. &:hover {
  689. .sub--menu--wrap {
  690. max-height: 550px;
  691. }
  692. }
  693. .sub--menu--wrap {
  694. max-height: 0px;
  695. overflow: hidden;
  696. transition: max-height 0.3s;
  697. background-color: #fff;
  698. top: 90.5px;
  699. &.sub1 {
  700. position: fixed;
  701. border-bottom-left-radius: 30px;
  702. border-bottom-right-radius: 30px;
  703. max-width: 1440px;
  704. left: 50%;
  705. transform: translateX(-50%);
  706. width: 100%;
  707. >div {
  708. padding: 60px 0;
  709. display: flex;
  710. justify-content: center;
  711. align-items: center;
  712. gap: 70px;
  713. &.active {
  714. max-height: 300px;
  715. }
  716. li {
  717. a {
  718. display: flex;
  719. gap: 25px;
  720. flex-direction: column;
  721. max-width: 180px;
  722. text-align: center;
  723. color: #000;
  724. font-size: 16px;
  725. font-weight: 500;
  726. text-transform: uppercase;
  727. img {
  728. transition: all 0.3s;
  729. }
  730. &:hover {
  731. color: #076fed;
  732. img {
  733. transform: scale(1.1);
  734. }
  735. }
  736. }
  737. }
  738. }
  739. }
  740. &.sub2 {
  741. position: absolute;
  742. border-bottom-left-radius: 20px;
  743. border-bottom-right-radius: 20px;
  744. width: 280px;
  745. left: calc(50% - 140px);
  746. >div {
  747. padding: 20px 40px;
  748. display: flex;
  749. flex-direction: column;
  750. //height: 550px;
  751. line-height: 1;
  752. li {
  753. a {
  754. cursor: pointer;
  755. color: #000;
  756. padding: 20px 0;
  757. font-size: 16px;
  758. font-weight: 500;
  759. display: flex;
  760. justify-content: space-between;
  761. align-items: center;
  762. transition: color 0.3s;
  763. &:hover {
  764. color: #076fed;
  765. }
  766. }
  767. }
  768. }
  769. }
  770. &.sub3 {
  771. position: absolute;
  772. border-bottom-left-radius: 20px;
  773. border-bottom-right-radius: 20px;
  774. width: 280px;
  775. left: calc(50% - 140px);
  776. //left: -32px;
  777. transition: all 0.3s;
  778. &:has(.active) {
  779. width: 630px;
  780. }
  781. &.h--200 {
  782. >div {
  783. height: 320px;
  784. }
  785. }
  786. &.h--400 {
  787. >div {
  788. height: 432px;
  789. }
  790. }
  791. >div {
  792. height: 375px;
  793. // max-height: 550px;
  794. background-color: #fff;
  795. position: relative;
  796. .sub--menu--left {
  797. width: 280px;
  798. padding: 20px 40px;
  799. line-height: 1;
  800. li {
  801. padding: 20px 0;
  802. cursor: pointer;
  803. color: #000;
  804. font-size: 16px;
  805. font-weight: 500;
  806. display: flex;
  807. justify-content: space-between;
  808. align-items: center;
  809. transition: color 0.3s;
  810. &:hover,
  811. &.active {
  812. color: #076fed;
  813. .ico {
  814. background-image: url(/img/ico--header--arrow--blue.svg);
  815. }
  816. }
  817. .ico {
  818. width: 18px;
  819. background-image: url(/img/ico--header--arrow.svg);
  820. height: 18px;
  821. }
  822. }
  823. }
  824. .sub--menu--right {
  825. position: absolute;
  826. left: 280px;
  827. border-left: 1px solid #E5E5E5;
  828. width: 350px;
  829. padding: 40px 35px;
  830. height: 100%;
  831. top: 0;
  832. >div {
  833. opacity: 0;
  834. transition: opacity 0.3s;
  835. display: none;
  836. pointer-events: none;
  837. flex-direction: column;
  838. gap: 40px;
  839. li {
  840. line-height: 1;
  841. a {
  842. display: inline-block;
  843. color: #333;
  844. font-size: 16px;
  845. font-weight: 400;
  846. width: 100%;
  847. transition: all 0.3s;
  848. &:hover {
  849. color: #076fed;
  850. }
  851. }
  852. }
  853. &.active {
  854. display: flex;
  855. pointer-events: all;
  856. opacity: 1;
  857. }
  858. }
  859. }
  860. }
  861. }
  862. }
  863. }
  864. }
  865. }
  866. }
  867. }
  868. footer {
  869. width: 100%;
  870. //--one-footer-color-black: hsla(216, 26%, 1%, 1);
  871. --one-footer-color-white: hsla(216, 33%, 99%, 1);
  872. --one-footer-neutral-5: hsla(216, 26%, 1%, 0.6);
  873. --one-footer-neutral-10: hsla(216, 17%, 26%, 1);
  874. --one-footer-neutral-20: hsla(216, 14%, 35%, 1);
  875. --one-footer-neutral-70: hsla(216, 33%, 99%, 0.6);
  876. --one-footer-side-spacing: 16px;
  877. --one-footer-space-xs: var(--spacing-relative-xs);
  878. --one-footer-space-s: var(--spacing-relative-sm);
  879. --one-footer-space-m: var(--spacing-relative-md);
  880. --one-footer-space-l: var(--spacing-relative-lg);
  881. --one-footer-space-xl: var(--spacing-relative-xl);
  882. --one-footer-space-xxl: var(--spacing-relative-2xl);
  883. --one-footer-space-xxxl: var(--spacing-relative-3xl);
  884. background: var(--one-footer-color-black);
  885. box-sizing: border-box;
  886. color: var(--one-footer-color-white);
  887. @media (min-width: 375px) {
  888. --one-footer-side-spacing: 28px;
  889. }
  890. @media (min-width: 768px) {
  891. --one-footer-side-spacing: 40px;
  892. }
  893. @media (min-width: 1024px) {
  894. --one-footer-side-spacing: 60px;
  895. }
  896. .footer--wrap {
  897. max-width: 1440px;
  898. width: 100%;
  899. margin: 0 auto;
  900. display: flex;
  901. flex-direction: column;
  902. .footer--site--map {
  903. width: 100%;
  904. max-width: 1440px;
  905. margin: 0 auto;
  906. padding: 70px 0px 40px;
  907. >ul {
  908. display: block;
  909. list-style: none;
  910. row-gap: 40px;
  911. padding: 0px;
  912. width: 100%;
  913. @media (min-width: 768px) {
  914. display: flex;
  915. flex-flow: wrap;
  916. width: 100%;
  917. }
  918. >li {
  919. margin-bottom: -1px;
  920. @media (min-width: 768px) {
  921. //margin: 0px 24px 40px 0px;
  922. width: calc(33.333%);
  923. &:first-of-type {
  924. margin-top: 0px;
  925. }
  926. >h2 {
  927. border: none !important;
  928. }
  929. >ul {
  930. >h3 {
  931. color: #E9E9E9;
  932. font-size: 14px;
  933. font-style: normal;
  934. font-weight: 500;
  935. line-height: 100%;
  936. /* 14px */
  937. text-transform: uppercase;
  938. display: flex;
  939. }
  940. >li {
  941. padding-left: 0;
  942. padding-right: 0;
  943. margin-bottom: 25px;
  944. a {
  945. color: #E9E9E9;
  946. font-size: 14px;
  947. font-style: normal;
  948. font-weight: 500;
  949. line-height: 100%;
  950. /* 14px */
  951. text-transform: uppercase;
  952. display: flex;
  953. }
  954. }
  955. }
  956. }
  957. @media (min-width: 1440px) {
  958. width: calc(100% / 6);
  959. }
  960. >h2 {
  961. color: var(--one-footer-color-white);
  962. display: flex;
  963. flex-flow: row;
  964. -webkit-box-pack: justify;
  965. justify-content: space-between;
  966. padding: var(--one-footer-space-m) 20px;
  967. width: 100%;
  968. margin: 0px;
  969. color: #FFF;
  970. font-size: 18px;
  971. font-style: normal;
  972. font-weight: 700;
  973. line-height: 100%;
  974. /* 18px */
  975. text-transform: uppercase;
  976. text-decoration: none;
  977. border-top: 1px solid #4A4A4A;
  978. border-bottom: 1px solid #4A4A4A;
  979. @media (min-width: 768px) {
  980. padding: 0px;
  981. width: auto;
  982. margin-bottom: 30px;
  983. }
  984. @media (min-width: 1440px) {
  985. font-size: 18px;
  986. line-height: 28px;
  987. }
  988. @media (min-width: 1920px) {
  989. font-size: 20px;
  990. line-height: 32px;
  991. }
  992. }
  993. }
  994. }
  995. }
  996. }
  997. }
  998. // ============================================
  999. // Admin Panel Dark Theme Styles
  1000. // ============================================
  1001. // Light Theme Color Variables
  1002. :root {
  1003. --admin-yellow: #e8b546;
  1004. --admin-red: #E85D3F;
  1005. --admin-blue: #3c80f2;
  1006. --admin-bg-navy: #1a2332;
  1007. --admin-bg-primary: rgba(246, 247, 248, 1);
  1008. --admin-bg-secondary: #ffffff;
  1009. --admin-bg-tertiary: #f6f7f8;
  1010. --admin-text-primary: #181d29;
  1011. --admin-text-secondary: #666b75;
  1012. --admin-text-muted: #a8adb8;
  1013. --admin-border-color: #e0e0e0;
  1014. --admin-accent-primary: #1A2332;
  1015. --admin-accent-hover: #1A2332;
  1016. --admin-success: #10b981;
  1017. --admin-warning: #f59e0b;
  1018. --admin-error: #ef4444;
  1019. --admin-shadow: rgba(0, 0, 0, 0.1);
  1020. }
  1021. // Admin Login Page
  1022. .admin--login {
  1023. min-height: 100vh;
  1024. width: 100%;
  1025. min-width: 1680px;
  1026. background: var(--admin-bg-primary);
  1027. .login--container {
  1028. display: flex;
  1029. width: 100%;
  1030. min-width: 1680px;
  1031. min-height: 100vh;
  1032. }
  1033. // 왼쪽 영역 (50%) - 로고 + 설명
  1034. .login--layout {
  1035. flex: 0 0 50%;
  1036. max-width: 50%;
  1037. min-height: 100vh;
  1038. background: #1A2332;
  1039. color: #fcfcfd;
  1040. display: flex;
  1041. align-items: center;
  1042. justify-content: center;
  1043. padding: 80px 96px;
  1044. position: relative;
  1045. overflow: hidden;
  1046. &::before {
  1047. content: '';
  1048. position: absolute;
  1049. top: -200px;
  1050. right: -200px;
  1051. width: 600px;
  1052. height: 600px;
  1053. border-radius: 50%;
  1054. opacity: 0.08;
  1055. background: var(--admin-yellow);
  1056. pointer-events: none;
  1057. }
  1058. &::after {
  1059. content: '';
  1060. position: absolute;
  1061. bottom: 100px;
  1062. left: 80px;
  1063. width: 300px;
  1064. height: 300px;
  1065. border-radius: 50%;
  1066. background: #e85c3f;
  1067. opacity: 0.08;
  1068. pointer-events: none;
  1069. }
  1070. .login--layout-inner {
  1071. position: relative;
  1072. z-index: 1;
  1073. width: 100%;
  1074. max-width: 560px;
  1075. display: flex;
  1076. flex-direction: column;
  1077. gap: 48px;
  1078. }
  1079. .login--brand {
  1080. display: flex;
  1081. gap: 16px;
  1082. align-items: center;
  1083. .login--brand--logo{
  1084. width: 56px;
  1085. height: 56px;
  1086. border-radius: 12px;
  1087. background-color: var(--admin-yellow);
  1088. font-size: 28px;
  1089. text-align: center;
  1090. display: flex;
  1091. align-items: center;
  1092. justify-content: center;
  1093. }
  1094. .login--brand-title {
  1095. font-size: 22px;
  1096. font-weight: 600;
  1097. color: #fcfcfd;
  1098. letter-spacing: -0.11px;
  1099. }
  1100. .login--brand-tagline {
  1101. font-size: 10px;
  1102. letter-spacing: 1px;
  1103. text-transform: uppercase;
  1104. color: var(--admin-yellow);
  1105. margin: 0;
  1106. font-weight: 500;
  1107. }
  1108. }
  1109. .login--deco--line{
  1110. position: relative;
  1111. width: 240px;
  1112. height: 240px;
  1113. margin: 0 auto;
  1114. .circle1{
  1115. position: absolute;
  1116. width: 100%;
  1117. height: 100%;
  1118. border-radius: 50%;
  1119. border: 1.5px solid var(--admin-yellow);
  1120. opacity: 0.3;
  1121. }
  1122. .circle2{
  1123. position: absolute;
  1124. width: 160px;
  1125. height: 160px;
  1126. top: calc(50% - 80px);
  1127. left: calc(50% - 80px);
  1128. border-radius: 50%;
  1129. border: 1px solid var(--admin-yellow);
  1130. opacity: 0.3;
  1131. }
  1132. .circle3{
  1133. font-size: 100px;
  1134. width: 160px;
  1135. height: 160px;
  1136. position: absolute;
  1137. top: calc(50% - 80px);
  1138. left: calc(50% - 80px);
  1139. display: flex;
  1140. align-items: center;
  1141. justify-content: center;
  1142. }
  1143. }
  1144. .login--intro {
  1145. .login--intro-title {
  1146. font-size: 36px;
  1147. font-weight: 600;
  1148. color: #fff;
  1149. }
  1150. .login--intro-desc {
  1151. font-size: 14px;
  1152. letter-spacing: 2.1px;
  1153. line-height: 1.7;
  1154. margin-bottom: 15px;
  1155. color: var(--admin-yellow);
  1156. }
  1157. .login--intro-list {
  1158. color: #b2bdcc;
  1159. font-size: 13px;
  1160. font-weight: 400;
  1161. }
  1162. }
  1163. .login--copyright {
  1164. font-size: 13px;
  1165. color: rgba(252, 252, 253, 0.4);
  1166. letter-spacing: 0.5px;
  1167. }
  1168. }
  1169. // 오른쪽 영역 (50%) - 로그인 폼
  1170. .login--panel {
  1171. flex: 0 0 50%;
  1172. max-width: 50%;
  1173. min-height: 100vh;
  1174. display: flex;
  1175. align-items: center;
  1176. justify-content: center;
  1177. padding: 80px 96px;
  1178. background: var(--admin-bg-secondary);
  1179. }
  1180. .login--box {
  1181. width: 100%;
  1182. max-width: 480px;
  1183. background: var(--admin-bg-secondary);
  1184. padding: 0;
  1185. border: none;
  1186. box-shadow: none;
  1187. border-radius: 0;
  1188. }
  1189. .login--logo {
  1190. margin-bottom: 48px;
  1191. > span{
  1192. color: var(--admin-yellow);
  1193. font-size: 12px;
  1194. font-weight: 700;
  1195. letter-spacing: 0.96px;
  1196. }
  1197. h1 {
  1198. font-size: 40px;
  1199. font-weight: 700;
  1200. color: var(--admin-text-primary);
  1201. margin: 0 0 8px 0;
  1202. }
  1203. .subtitle {
  1204. font-size: 14px;
  1205. color: var(--admin-text-secondary);
  1206. margin: 0;
  1207. }
  1208. }
  1209. .login--error {
  1210. background: rgba(239, 68, 68, 0.1);
  1211. border: 1px solid var(--admin-error);
  1212. color: var(--admin-error);
  1213. padding: 12px 16px;
  1214. border-radius: 6px;
  1215. margin-bottom: 20px;
  1216. font-size: 14px;
  1217. }
  1218. .login--form {
  1219. .form--group {
  1220. margin-bottom: 20px;
  1221. }
  1222. .form--input {
  1223. width: 100%;
  1224. padding: 14px 16px;
  1225. background: var(--admin-bg-tertiary);
  1226. border: 1px solid var(--admin-border-color);
  1227. border-radius: 6px;
  1228. color: var(--admin-text-primary);
  1229. font-size: 14px;
  1230. transition: all 0.3s ease;
  1231. &:focus {
  1232. outline: none;
  1233. border-color: var(--admin-accent-primary);
  1234. box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  1235. }
  1236. &::placeholder {
  1237. color: var(--admin-text-muted);
  1238. }
  1239. &:disabled {
  1240. opacity: 0.5;
  1241. cursor: not-allowed;
  1242. }
  1243. }
  1244. .form--options {
  1245. display: flex;
  1246. justify-content: space-between;
  1247. align-items: center;
  1248. margin-bottom: 24px;
  1249. .checkbox--label {
  1250. display: flex;
  1251. align-items: center;
  1252. cursor: pointer;
  1253. font-size: 14px;
  1254. color: var(--admin-text-secondary);
  1255. input[type="checkbox"] {
  1256. margin-right: 8px;
  1257. cursor: pointer;
  1258. }
  1259. }
  1260. .forgot--password {
  1261. font-size: 14px;
  1262. color: var(--admin-accent-primary);
  1263. text-decoration: none;
  1264. transition: color 0.3s ease;
  1265. &:hover {
  1266. color: var(--admin-accent-hover);
  1267. }
  1268. }
  1269. }
  1270. .login--button {
  1271. width: 100%;
  1272. height: 56px;
  1273. line-height: 56px;
  1274. background: var(--admin-accent-primary);
  1275. color: var(--admin-yellow);
  1276. border: none;
  1277. border-radius: 10px;
  1278. font-size: 15px;
  1279. font-weight: 600;
  1280. cursor: pointer;
  1281. transition: all 0.3s ease;
  1282. &:hover:not(:disabled) {
  1283. background: var(--admin-accent-hover);
  1284. transform: translateY(-2px);
  1285. box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  1286. }
  1287. &:active:not(:disabled) {
  1288. transform: translateY(0);
  1289. }
  1290. &:disabled {
  1291. opacity: 0.6;
  1292. cursor: not-allowed;
  1293. }
  1294. }
  1295. }
  1296. .login--footer {
  1297. margin-top: 32px;
  1298. text-align: center;
  1299. p {
  1300. font-size: 12px;
  1301. color: var(--admin-text-muted);
  1302. margin: 0;
  1303. }
  1304. }
  1305. }
  1306. // Admin Layout
  1307. .admin--layout {
  1308. background: var(--admin-bg-primary);
  1309. }
  1310. // Admin Header
  1311. .admin--header {
  1312. position: fixed;
  1313. top: 0;
  1314. left: 240px;
  1315. right: 0;
  1316. height: 64px;
  1317. background: var(--admin-bg-secondary);
  1318. border-bottom: 1px solid var(--admin-border-color);
  1319. display: flex;
  1320. justify-content: space-between;
  1321. align-items: center;
  1322. padding: 0 32px;
  1323. z-index: 1000;
  1324. .admin--header-left {
  1325. display: flex;
  1326. flex-direction: column;
  1327. h1 {
  1328. font-size: 18px;
  1329. font-weight: 700;
  1330. color: var(--admin-text-primary);
  1331. margin: 0;
  1332. }
  1333. }
  1334. .admin--header-right {
  1335. display: flex;
  1336. gap: 12px;
  1337. }
  1338. .admin--header-btn {
  1339. padding: 8px 20px;
  1340. background: var(--admin-bg-tertiary);
  1341. color: var(--admin-text-primary);
  1342. border: 1px solid var(--admin-border-color);
  1343. border-radius: 6px;
  1344. font-size: 14px;
  1345. font-weight: 500;
  1346. cursor: pointer;
  1347. transition: all 0.3s ease;
  1348. &:hover {
  1349. background: var(--admin-bg-primary);
  1350. border-color: var(--admin-accent-primary);
  1351. }
  1352. &.admin--header-btn-logout {
  1353. background: var(--admin-accent-primary);
  1354. border-color: var(--admin-accent-primary);
  1355. color: #ffffff !important;
  1356. &:hover {
  1357. background: var(--admin-accent-hover);
  1358. border-color: var(--admin-accent-hover);
  1359. color: #ffffff !important;
  1360. }
  1361. }
  1362. }
  1363. }
  1364. // Admin Content Wrapper
  1365. .admin--content--wrapper {
  1366. display: flex;
  1367. margin-top: 64px;
  1368. min-height: calc(100vh - 64px);
  1369. }
  1370. // Admin Sidebar
  1371. .admin--sidebar {
  1372. width: 240px;
  1373. position: fixed;
  1374. left: 0;
  1375. top: 0px;
  1376. bottom: 0;
  1377. overflow-y: auto;
  1378. background-color: var(--admin-bg-navy);
  1379. padding: 24px 16px;
  1380. .admin--brand{
  1381. display: flex;
  1382. gap: 12px;
  1383. align-items: center;
  1384. .brand--logo{
  1385. width: 36px;
  1386. height: 36px;
  1387. border-radius: 8px;
  1388. display: flex;
  1389. align-items: center;
  1390. justify-content: center;
  1391. text-align: center;
  1392. background-color: var(--admin-yellow);
  1393. }
  1394. .brand--title{
  1395. color: #fff;
  1396. font-size: 15px;
  1397. display: flex;
  1398. flex-direction: column;
  1399. font-weight: 700;
  1400. span{
  1401. color: var(--admin-yellow);
  1402. font-size: 10px;
  1403. font-weight: 600;
  1404. letter-spacing: 1.2px;
  1405. }
  1406. }
  1407. }
  1408. &::-webkit-scrollbar {
  1409. width: 6px;
  1410. }
  1411. &::-webkit-scrollbar-track {
  1412. background: var(--admin-bg-primary);
  1413. }
  1414. &::-webkit-scrollbar-thumb {
  1415. background: var(--admin-border-color);
  1416. border-radius: 3px;
  1417. &:hover {
  1418. background: var(--admin-text-muted);
  1419. }
  1420. }
  1421. }
  1422. // Admin GNB
  1423. .admin--gnb {
  1424. margin-top: 28px;
  1425. .admin--gnb-group {
  1426. margin-bottom: 8px;
  1427. }
  1428. .admin--gnb-title {
  1429. padding: 12px 24px;
  1430. font-size: 13px;
  1431. font-weight: 400;
  1432. color: var(--admin-text-muted);
  1433. cursor: pointer;
  1434. display: flex;
  1435. justify-content: space-between;
  1436. align-items: center;
  1437. transition: all 0.3s ease;
  1438. user-select: none;
  1439. font-weight: 400;
  1440. &:has(.admin--gnb-arrow.is-open){
  1441. color: #fff;
  1442. font-weight: 600;
  1443. }
  1444. &:hover {
  1445. color: #fff;
  1446. }
  1447. .admin--gnb-arrow {
  1448. font-size: 10px;
  1449. transition: transform 0.3s ease;
  1450. &.is-open {
  1451. transform: rotate(-180deg);
  1452. }
  1453. }
  1454. }
  1455. // children 없는 단일 링크 메뉴
  1456. .admin--gnb-title-link {
  1457. position: relative;
  1458. border-radius: 6px;
  1459. color: var(--admin-text-muted);
  1460. font-size: 13px;
  1461. font-weight: 400;
  1462. &.is-active {
  1463. color: #fff;
  1464. background: #262f40;
  1465. font-weight: 600;
  1466. &::before{
  1467. content: '';
  1468. display: inline-block;
  1469. position: absolute;
  1470. top: 0;
  1471. left: 0;
  1472. height: 100%;
  1473. width: 3px;
  1474. border-radius: 6px;
  1475. background-color: var(--admin-yellow);
  1476. }
  1477. }
  1478. }
  1479. .admin--gnb-submenu {
  1480. list-style: none;
  1481. padding: 0;
  1482. margin: 0;
  1483. }
  1484. .admin--gnb-item {
  1485. position: relative;
  1486. border-radius: 6px;
  1487. color: var(--admin-text-muted);
  1488. font-size: 13px;
  1489. font-weight: 400;
  1490. &.is-active {
  1491. .admin--gnb-link {
  1492. color: #fff;
  1493. background: #262f40;
  1494. font-weight: 600;
  1495. &::before{
  1496. content: '';
  1497. display: inline-block;
  1498. position: absolute;
  1499. top: 0;
  1500. left: 20px;
  1501. height: 100%;
  1502. width: 3px;
  1503. border-radius: 6px;
  1504. background-color: var(--admin-yellow);
  1505. }
  1506. }
  1507. }
  1508. }
  1509. .admin--gnb-link {
  1510. display: block;
  1511. margin-left: 20px;
  1512. padding: 12px 24px;
  1513. font-size: 13px;
  1514. color: #78808c;
  1515. border-radius: 6px;
  1516. text-decoration: none;
  1517. transition: all 0.3s ease;
  1518. &:hover {
  1519. color: #fff;
  1520. background: #262f40;
  1521. }
  1522. }
  1523. }
  1524. // Submenu Animation
  1525. .admin--submenu-enter-active,
  1526. .admin--submenu-leave-active {
  1527. transition: all 0.3s ease;
  1528. overflow: hidden;
  1529. }
  1530. .admin--submenu-enter-from,
  1531. .admin--submenu-leave-to {
  1532. opacity: 0;
  1533. max-height: 0;
  1534. }
  1535. .admin--submenu-enter-to,
  1536. .admin--submenu-leave-from {
  1537. opacity: 1;
  1538. max-height: 500px;
  1539. }
  1540. // Admin Main Content
  1541. .admin--main {
  1542. flex: 1;
  1543. margin-left: 240px;
  1544. padding: 32px;
  1545. background: var(--admin-bg-primary);
  1546. }
  1547. // Admin Page Header
  1548. .admin--page-header {
  1549. display: flex;
  1550. justify-content: space-between;
  1551. align-items: center;
  1552. }
  1553. .admin--page-title {
  1554. font-size: 28px;
  1555. font-weight: 700;
  1556. color: var(--admin-text-primary);
  1557. margin: 0;
  1558. }
  1559. // Admin Breadcrumb
  1560. .admin--breadcrumb {
  1561. display: flex;
  1562. align-items: center;
  1563. font-size: 12px;
  1564. .admin--breadcrumb-link {
  1565. color: var(--admin-text-secondary);
  1566. text-decoration: none;
  1567. transition: color 0.3s ease;
  1568. &:hover {
  1569. color: var(--admin-accent-primary);
  1570. }
  1571. }
  1572. .admin--breadcrumb-current {
  1573. color: #666b75;
  1574. font-weight: 400;
  1575. }
  1576. .admin--breadcrumb-separator {
  1577. color: #666b75;
  1578. font-weight: 400;
  1579. }
  1580. }
  1581. // Admin Page Content
  1582. .admin--page-content {
  1583. background: var(--admin-bg-secondary);
  1584. border-radius: 8px;
  1585. padding: 24px;
  1586. border: 1px solid var(--admin-border-color);
  1587. }
  1588. // Admin Dashboard
  1589. .admin--dashboard {
  1590. .admin--dashboard-welcome {
  1591. margin-bottom: 32px;
  1592. h3 {
  1593. font-size: 24px;
  1594. color: var(--admin-text-primary);
  1595. margin: 0 0 8px 0;
  1596. }
  1597. p {
  1598. font-size: 14px;
  1599. color: var(--admin-text-secondary);
  1600. margin: 0;
  1601. }
  1602. }
  1603. .admin--dashboard-stats {
  1604. display: grid;
  1605. grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  1606. gap: 20px;
  1607. margin-bottom: 32px;
  1608. }
  1609. .admin--stat-card {
  1610. background: var(--admin-bg-tertiary);
  1611. border: 1px solid var(--admin-border-color);
  1612. border-radius: 8px;
  1613. padding: 24px;
  1614. display: flex;
  1615. align-items: center;
  1616. gap: 16px;
  1617. transition: all 0.3s ease;
  1618. &:hover {
  1619. border-color: var(--admin-accent-primary);
  1620. transform: translateY(-2px);
  1621. box-shadow: 0 4px 12px var(--admin-shadow);
  1622. }
  1623. .admin--stat-icon {
  1624. font-size: 36px;
  1625. }
  1626. .admin--stat-content {
  1627. flex: 1;
  1628. h4 {
  1629. font-size: 14px;
  1630. color: var(--admin-text-secondary);
  1631. margin: 0 0 8px 0;
  1632. font-weight: 500;
  1633. }
  1634. .admin--stat-number {
  1635. font-size: 28px;
  1636. color: var(--admin-text-primary);
  1637. margin: 0;
  1638. font-weight: 700;
  1639. }
  1640. }
  1641. }
  1642. .admin--dashboard-recent {
  1643. h4 {
  1644. font-size: 18px;
  1645. color: var(--admin-text-primary);
  1646. margin: 0 0 16px 0;
  1647. }
  1648. .admin--recent-list {
  1649. background: var(--admin-bg-tertiary);
  1650. border: 1px solid var(--admin-border-color);
  1651. border-radius: 8px;
  1652. padding: 24px;
  1653. .admin--no-data {
  1654. text-align: center;
  1655. color: var(--admin-text-muted);
  1656. margin: 0;
  1657. }
  1658. }
  1659. }
  1660. }
  1661. // Admin Form Styles
  1662. .admin--form {
  1663. .admin--form-group {
  1664. margin-bottom: 24px;
  1665. }
  1666. .admin--form-label {
  1667. display: block;
  1668. font-size: 14px;
  1669. font-weight: 500;
  1670. color: var(--admin-text-primary);
  1671. margin-bottom: 8px;
  1672. .admin--required {
  1673. color: var(--admin-error);
  1674. margin-left: 4px;
  1675. }
  1676. }
  1677. .admin--form-input,
  1678. .admin--form-textarea,
  1679. .admin--form-select {
  1680. width: 100%;
  1681. padding: 12px;
  1682. background: #fff;
  1683. border: 1px solid var(--admin-border-color);
  1684. border-radius: 6px;
  1685. color: var(--admin-text-primary);
  1686. font-size: 13px;
  1687. transition: all 0.3s ease;
  1688. &:focus {
  1689. // outline: none;
  1690. // border-color: var(--admin-accent-primary);
  1691. // box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  1692. }
  1693. &::placeholder {
  1694. color: var(--admin-text-muted);
  1695. }
  1696. &:disabled {
  1697. opacity: 0.5;
  1698. cursor: not-allowed;
  1699. background-color: var(--admin-bg-tertiary);
  1700. }
  1701. }
  1702. .admin--form-textarea {
  1703. min-height: 120px;
  1704. resize: vertical;
  1705. }
  1706. .admin--form-select {
  1707. cursor: pointer;
  1708. appearance: none;
  1709. -webkit-appearance: none;
  1710. -moz-appearance: none;
  1711. padding-right: 36px;
  1712. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666B75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  1713. background-repeat: no-repeat;
  1714. background-position: right 12px center;
  1715. }
  1716. // 다중 입력 필드
  1717. .admin--multi-input-wrapper {
  1718. .admin--multi-input-item {
  1719. display: flex;
  1720. gap: 12px;
  1721. margin-bottom: 12px;
  1722. align-items: flex-start;
  1723. .admin--sender-row {
  1724. display: flex;
  1725. gap: 10px;
  1726. flex: 1;
  1727. }
  1728. .admin--form-input {
  1729. flex: 1;
  1730. }
  1731. .admin--btn-remove {
  1732. padding: 12px 20px;
  1733. background: var(--admin-error);
  1734. color: #fff;
  1735. border: none;
  1736. border-radius: 6px;
  1737. font-size: 14px;
  1738. font-weight: 500;
  1739. cursor: pointer;
  1740. transition: all 0.3s ease;
  1741. white-space: nowrap;
  1742. &:hover {
  1743. background: #dc2626;
  1744. }
  1745. }
  1746. }
  1747. .admin--btn-add {
  1748. padding: 10px 20px;
  1749. background: var(--admin-bg-tertiary);
  1750. color: var(--admin-text-secondary);
  1751. border: 1px dashed var(--admin-border-color);
  1752. border-radius: 6px;
  1753. font-size: 14px;
  1754. font-weight: 500;
  1755. cursor: pointer;
  1756. transition: all 0.3s ease;
  1757. &:hover {
  1758. background: var(--admin-bg-primary);
  1759. border-color: var(--admin-accent-primary);
  1760. color: var(--admin-text-primary);
  1761. }
  1762. }
  1763. }
  1764. // 폼 액션 버튼
  1765. .admin--form-actions {
  1766. display: flex;
  1767. gap: 12px;
  1768. margin-top: 32px;
  1769. padding-top: 24px;
  1770. border-top: 1px solid var(--admin-border-color);
  1771. }
  1772. .admin--btn {
  1773. padding: 12px;
  1774. border: none;
  1775. border-radius: 4px;
  1776. font-size: 13px;
  1777. font-weight: 600;
  1778. cursor: pointer;
  1779. transition: all 0.3s ease;
  1780. min-width: 100px;
  1781. color: #666b75;
  1782. border: 1px solid #e8eaef;
  1783. &:disabled {
  1784. opacity: 0.5;
  1785. cursor: not-allowed;
  1786. }
  1787. }
  1788. .ml--auto{
  1789. margin-left: auto;
  1790. }
  1791. .mr--auto{
  1792. margin-right: auto;
  1793. }
  1794. .admin--btn-red{
  1795. background-color: #e85d3f;
  1796. color: #fff;
  1797. }
  1798. .admin--btn-blue{
  1799. background-color: #3c80f2;
  1800. color: #fff;
  1801. }
  1802. .admin--btn-red-border{
  1803. border-color: #e85d3f;
  1804. color: #e85d3f;
  1805. }
  1806. .admin--btn-primary {
  1807. background: var(--admin-accent-primary);
  1808. color: #ffffff;
  1809. &:hover:not(:disabled) {
  1810. background: var(--admin-accent-hover);
  1811. transform: translateY(-2px);
  1812. box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  1813. }
  1814. }
  1815. .admin--btn-secondary {
  1816. background: var(--admin-bg-tertiary);
  1817. color: var(--admin-text-primary);
  1818. border: 1px solid var(--admin-border-color);
  1819. &:hover:not(:disabled) {
  1820. background: var(--admin-bg-primary);
  1821. border-color: var(--admin-accent-primary);
  1822. }
  1823. }
  1824. // 알림 메시지
  1825. .admin--alert {
  1826. padding: 12px 16px;
  1827. border-radius: 6px;
  1828. margin-top: 20px;
  1829. font-size: 14px;
  1830. }
  1831. .admin--alert-success {
  1832. background: rgba(16, 185, 129, 0.1);
  1833. border: 1px solid var(--admin-success);
  1834. color: var(--admin-success);
  1835. }
  1836. .admin--alert-error {
  1837. background: rgba(239, 68, 68, 0.1);
  1838. border: 1px solid var(--admin-error);
  1839. color: var(--admin-error);
  1840. }
  1841. .admin--alert-warning {
  1842. background: rgba(245, 158, 11, 0.1);
  1843. border: 1px solid var(--admin-warning);
  1844. color: var(--admin-warning);
  1845. }
  1846. }
  1847. // 로딩
  1848. .admin--loading {
  1849. display: flex;
  1850. align-items: center;
  1851. justify-content: center;
  1852. padding: 60px 20px;
  1853. color: var(--admin-text-secondary);
  1854. font-size: 16px;
  1855. }
  1856. // 전역 로딩 오버레이
  1857. .admin--loading-overlay {
  1858. position: fixed;
  1859. top: 0;
  1860. left: 0;
  1861. right: 0;
  1862. bottom: 0;
  1863. background: rgba(0, 0, 0, 0.5);
  1864. display: flex;
  1865. align-items: center;
  1866. justify-content: center;
  1867. z-index: 99999;
  1868. }
  1869. // 스피너
  1870. .admin--spinner {
  1871. width: 50px;
  1872. height: 50px;
  1873. border: 4px solid rgba(255, 255, 255, 0.3);
  1874. border-top-color: #fff;
  1875. border-radius: 50%;
  1876. animation: admin-spin 0.8s linear infinite;
  1877. }
  1878. @keyframes admin-spin {
  1879. to {
  1880. transform: rotate(360deg);
  1881. }
  1882. }
  1883. // 검색 박스
  1884. .admin--search-box {
  1885. background: var(--admin-bg-secondary);
  1886. border: 1px solid var(--admin-border-color);
  1887. border-radius: 8px;
  1888. padding: 20px;
  1889. margin-bottom: 20px;
  1890. display: flex;
  1891. justify-content: space-between;
  1892. align-items: center;
  1893. gap: 20px;
  1894. &.type2{
  1895. flex-direction: column;
  1896. align-items: start;
  1897. gap: 8px;
  1898. }
  1899. .admin--search--inner--box{
  1900. display: flex;
  1901. justify-content: space-between;
  1902. align-items: center;
  1903. width: 100%;
  1904. gap: 20px;
  1905. }
  1906. .admin--search-form {
  1907. display: flex;
  1908. gap: 12px;
  1909. align-items: center;
  1910. flex: 1;
  1911. .admin--quick-range{
  1912. display: flex;
  1913. gap: 8px;
  1914. .range--btn{
  1915. width: 60px;
  1916. font-weight: 400;
  1917. min-width: 60px;
  1918. padding: 12px 0;
  1919. color: #1a2b4a;
  1920. }
  1921. }
  1922. .admin--filter-radio{
  1923. display: flex;
  1924. gap: 6px;
  1925. .filter--btn{
  1926. width: 64px;
  1927. font-weight: 400;
  1928. min-width: 60px;
  1929. padding: 12px 0;
  1930. color: #1a2b4a;
  1931. transition: all 0.15s ease;
  1932. &.is-active{
  1933. background: var(--admin-accent-primary);
  1934. color: #fff;
  1935. border-color: var(--admin-accent-primary);
  1936. }
  1937. }
  1938. }
  1939. }
  1940. // 검색 박스 내 모든 select, input 통일된 스타일
  1941. .admin--search-select,
  1942. .admin--form-select,
  1943. .admin--form-input,
  1944. .admin--search-input {
  1945. border: 1px solid #e8eaef !important;
  1946. border-radius: 4px;
  1947. padding: 12px;
  1948. font-size: 13px !important;
  1949. background-color: #fff;
  1950. line-height: normal;
  1951. &::placeholder{
  1952. color: #a8adb8;
  1953. }
  1954. }
  1955. .admin--form-select{
  1956. cursor: pointer;
  1957. appearance: none;
  1958. -webkit-appearance: none;
  1959. -moz-appearance: none;
  1960. padding-right: 36px;
  1961. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666B75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  1962. background-repeat: no-repeat;
  1963. background-position: right 12px center;
  1964. }
  1965. .admin--search-select,
  1966. .admin--form-select {
  1967. width: 140px;
  1968. }
  1969. .admin--form-input,
  1970. .admin--search-input {
  1971. flex: 1;
  1972. max-width: 400px;
  1973. }
  1974. .admin--btn-add{
  1975. width: 140px;
  1976. background-color: #e85d3f;
  1977. border-radius: 6px;
  1978. color: #fff;
  1979. font-weight: 600;
  1980. font-size: 13px;
  1981. padding: 12px;
  1982. cursor: pointer;
  1983. }
  1984. }
  1985. // 날짜 입력 필드
  1986. .admin--date-input {
  1987. cursor: pointer;
  1988. &::-webkit-calendar-picker-indicator {
  1989. cursor: pointer;
  1990. opacity: 0.7;
  1991. transition: opacity 0.2s;
  1992. &:hover {
  1993. opacity: 1;
  1994. }
  1995. }
  1996. }
  1997. // 날짜 범위
  1998. .admin--date-range {
  1999. display: flex;
  2000. align-items: center;
  2001. gap: 12px;
  2002. .admin--date-separator {
  2003. color: var(--admin-text-secondary);
  2004. font-size: 14px;
  2005. }
  2006. .admin--form-input {
  2007. flex: 1;
  2008. max-width: 200px;
  2009. }
  2010. }
  2011. // 테이블
  2012. .admin--table-wrapper {
  2013. background: var(--admin-bg-secondary);
  2014. border: 1px solid var(--admin-border-color);
  2015. border-radius: 8px;
  2016. overflow-x: auto;
  2017. }
  2018. .admin--table {
  2019. width: 100%;
  2020. border-collapse: collapse;
  2021. thead {
  2022. background: #F8F9FB;
  2023. border-bottom: 1px solid #E8EAEF;
  2024. th {
  2025. padding: 14px 16px;
  2026. text-align: center;
  2027. font-size: 12px;
  2028. font-weight: 600;
  2029. color: #666b75;
  2030. white-space: nowrap;
  2031. letter-spacing: 0.36px;
  2032. }
  2033. }
  2034. tbody {
  2035. tr {
  2036. border-bottom: 1px solid #E8EAEF;
  2037. transition: background 0.3s ease;
  2038. &:hover {
  2039. background: var(--admin-bg-tertiary);
  2040. }
  2041. &:last-child {
  2042. border-bottom: none;
  2043. }
  2044. &.admin--table-row-clickable {
  2045. cursor: pointer;
  2046. &:hover {
  2047. background: var(--admin-bg-primary);
  2048. }
  2049. }
  2050. }
  2051. td {
  2052. padding: 14px 16px;
  2053. font-size: 13px;
  2054. font-weight: 500;
  2055. color: #1a2b4a;
  2056. vertical-align: middle;
  2057. text-align: center;
  2058. &.left{
  2059. text-align: left;
  2060. }
  2061. &.color--yellow{
  2062. color: var(--admin-yellow);
  2063. font-weight: 700;
  2064. }
  2065. &.date{
  2066. color: #666b75;
  2067. font-size: 12px;
  2068. font-weight: 400;
  2069. }
  2070. &.point{
  2071. color: #e85d3f;
  2072. font-weight: 700;
  2073. }
  2074. }
  2075. .admin--table-title {
  2076. color: var(--admin-text-primary);
  2077. font-weight: 500;
  2078. max-width: 300px;
  2079. overflow: hidden;
  2080. text-overflow: ellipsis;
  2081. white-space: nowrap;
  2082. }
  2083. .admin--table-loading,
  2084. .admin--table-empty {
  2085. text-align: center;
  2086. padding: 60px 20px;
  2087. color: var(--admin-text-muted);
  2088. }
  2089. }
  2090. .admin--table-actions {
  2091. display: flex;
  2092. gap: 8px;
  2093. .admin--btn-blue{
  2094. background-color: #3c80f2;
  2095. color: #fff;
  2096. font-size: 12px;
  2097. }
  2098. }
  2099. }
  2100. // 배지
  2101. .admin--badge {
  2102. display: inline-block;
  2103. padding: 4px 12px;
  2104. border-radius: 12px;
  2105. font-size: 12px;
  2106. font-weight: 600;
  2107. white-space: nowrap;
  2108. &.admin--badge-html {
  2109. background: rgba(59, 130, 246, 0.1);
  2110. color: #3b82f6;
  2111. }
  2112. &.admin--badge-image {
  2113. background: rgba(16, 185, 129, 0.1);
  2114. color: #10b981;
  2115. }
  2116. &.admin--badge-active {
  2117. background: rgba(16, 185, 129, 0.1);
  2118. color: var(--admin-success);
  2119. }
  2120. &.admin--badge-scheduled {
  2121. background: rgba(245, 158, 11, 0.1);
  2122. color: var(--admin-warning);
  2123. }
  2124. &.admin--badge-ended {
  2125. background: rgba(107, 114, 128, 0.1);
  2126. color: #6b7280;
  2127. }
  2128. &.item--ticket{
  2129. background-color: #E8F0FE;
  2130. color: #3c80f2;
  2131. }
  2132. &.item--point{
  2133. color: #e85d3f;
  2134. background-color: #FFF8DE;
  2135. }
  2136. &.item--badge{
  2137. color: #2DB672;
  2138. background-color: #E8F7ED;
  2139. }
  2140. }
  2141. // 작은 버튼
  2142. .admin--btn-small {
  2143. padding: 12px 24px;
  2144. border: none;
  2145. border-radius: 4px;
  2146. font-size: 13px;
  2147. font-weight: 500;
  2148. cursor: pointer;
  2149. transition: all 0.3s ease;
  2150. white-space: nowrap;
  2151. line-height: normal;
  2152. min-width: 100px;
  2153. &.admin--btn-small-primary {
  2154. background: var(--admin-accent-primary);
  2155. color: #fff;
  2156. &:hover {
  2157. background: var(--admin-accent-hover);
  2158. }
  2159. }
  2160. &.admin--btn-small-danger {
  2161. background: var(--admin-error);
  2162. color: #fff;
  2163. &:hover {
  2164. background: #dc2626;
  2165. }
  2166. }
  2167. }
  2168. // 페이지네이션
  2169. .admin--pagination {
  2170. display: flex;
  2171. justify-content: flex-end;
  2172. align-items: center;
  2173. gap: 8px;
  2174. margin-top: 24px;
  2175. .admin--pagination-btn {
  2176. min-width: 32px;
  2177. height: 32px;
  2178. max-width: 32px;
  2179. border-radius: 6px;
  2180. cursor: pointer;
  2181. transition: all 0.3s ease;
  2182. background-color: #fff;
  2183. border: 1px solid #e8eaef;
  2184. font-size: 11px;
  2185. font-weight: 400;
  2186. color: #666b75;
  2187. &.is-active {
  2188. color: #fff;
  2189. font-weight: 700;
  2190. background-color: var(--admin-blue);
  2191. pointer-events: none;
  2192. }
  2193. &:disabled {
  2194. opacity: 0.5;
  2195. cursor: not-allowed;
  2196. }
  2197. }
  2198. }
  2199. // 라디오 그룹
  2200. .admin--radio-group {
  2201. display: flex;
  2202. gap: 20px;
  2203. flex-wrap: wrap;
  2204. }
  2205. .admin--radio-label {
  2206. display: flex;
  2207. align-items: center;
  2208. gap: 8px;
  2209. cursor: pointer;
  2210. font-size: 13px;
  2211. color: #666b75;
  2212. transition: color 0.3s ease;
  2213. input[type="radio"] {
  2214. cursor: pointer;
  2215. margin: 0;
  2216. }
  2217. &:hover {
  2218. color: var(--admin-text-primary);
  2219. }
  2220. }
  2221. // 날짜 범위
  2222. .admin--date-range {
  2223. display: flex;
  2224. align-items: center;
  2225. gap: 12px;
  2226. .admin--date-separator {
  2227. color: var(--admin-text-secondary);
  2228. font-weight: 500;
  2229. }
  2230. }
  2231. // 시간 입력 그룹 (AM/PM + 시 + 분)
  2232. .admin--time-group {
  2233. display: flex;
  2234. align-items: center;
  2235. gap: 10px;
  2236. flex-wrap: wrap;
  2237. .admin--time-input {
  2238. width: 80px;
  2239. text-align: center;
  2240. }
  2241. }
  2242. .admin--hint {
  2243. margin-left: 6px;
  2244. color: var(--admin-text-secondary);
  2245. font-size: 12px;
  2246. font-weight: 400;
  2247. }
  2248. // 사이즈 그룹
  2249. .admin--size-group {
  2250. display: flex;
  2251. gap: 20px;
  2252. .admin--size-item {
  2253. display: flex;
  2254. align-items: center;
  2255. gap: 8px;
  2256. label {
  2257. font-size: 14px;
  2258. color: var(--admin-text-secondary);
  2259. min-width: 40px;
  2260. }
  2261. .admin--form-input {
  2262. max-width: 120px;
  2263. }
  2264. span {
  2265. font-size: 14px;
  2266. color: var(--admin-text-secondary);
  2267. }
  2268. }
  2269. }
  2270. // 파일 입력
  2271. .admin--form-file {
  2272. width: 100%;
  2273. padding: 12px 16px;
  2274. background: var(--admin-bg-tertiary);
  2275. border: 1px solid var(--admin-border-color);
  2276. border-radius: 6px;
  2277. color: #fff;
  2278. font-size: 14px;
  2279. cursor: pointer;
  2280. &::-webkit-file-upload-button {
  2281. padding: 8px 16px;
  2282. background: var(--admin-accent-primary);
  2283. color: #fff;
  2284. border: none;
  2285. border-radius: 4px;
  2286. font-size: 13px;
  2287. font-weight: 500;
  2288. cursor: pointer;
  2289. margin-right: 12px;
  2290. }
  2291. }
  2292. // 이미지 미리보기
  2293. .admin--image-preview {
  2294. margin-top: 16px;
  2295. position: relative;
  2296. display: inline-block;
  2297. max-width: 400px;
  2298. img {
  2299. max-width: 100%;
  2300. border-radius: 8px;
  2301. border: 1px solid var(--admin-border-color);
  2302. display: block;
  2303. }
  2304. .admin--btn-remove-image {
  2305. position: absolute;
  2306. top: 12px;
  2307. right: 12px;
  2308. padding: 8px 16px;
  2309. background: var(--admin-error);
  2310. color: #fff;
  2311. border: none;
  2312. border-radius: 4px;
  2313. font-size: 13px;
  2314. font-weight: 500;
  2315. cursor: pointer;
  2316. transition: all 0.3s ease;
  2317. &:hover {
  2318. background: #dc2626;
  2319. }
  2320. }
  2321. }
  2322. // 비밀번호 입력 래퍼
  2323. .admin--password-input-wrapper {
  2324. position: relative;
  2325. .admin--form-input {
  2326. padding-right: 50px;
  2327. }
  2328. .admin--password-toggle {
  2329. position: absolute;
  2330. right: 12px;
  2331. top: 50%;
  2332. transform: translateY(-50%);
  2333. background: none;
  2334. border: none;
  2335. font-size: 20px;
  2336. cursor: pointer;
  2337. padding: 4px;
  2338. line-height: 1;
  2339. transition: opacity 0.3s ease;
  2340. &:hover {
  2341. opacity: 0.7;
  2342. }
  2343. }
  2344. }
  2345. // 폼 도움말
  2346. .admin--form-help {
  2347. margin: 8px 0 0 0;
  2348. font-size: 13px;
  2349. color: var(--admin-text-muted);
  2350. font-style: italic;
  2351. }
  2352. // 폼 경고 (좌표 미검출 등)
  2353. .admin--form-warning {
  2354. margin: 8px 0 0 0;
  2355. font-size: 13px;
  2356. color: var(--admin-red);
  2357. }
  2358. // 검색 박스 (큰 버전 - 여러 필터)
  2359. .admin--search-box-large {
  2360. .admin--search-filters {
  2361. flex: 1;
  2362. display: flex;
  2363. flex-direction: column;
  2364. gap: 12px;
  2365. .admin--filter-row {
  2366. display: flex;
  2367. align-items: center;
  2368. gap: 12px;
  2369. flex-wrap: wrap;
  2370. .admin--filter-label {
  2371. font-size: 14px;
  2372. color: var(--admin-text-secondary);
  2373. min-width: 60px;
  2374. }
  2375. .admin--form-select,
  2376. .admin--form-input {
  2377. flex: 1;
  2378. min-width: 150px;
  2379. }
  2380. }
  2381. }
  2382. }
  2383. // 테이블 사진
  2384. .admin--table-photo {
  2385. width: 80px;
  2386. height: 120px;
  2387. border-radius: 4px;
  2388. overflow: hidden;
  2389. display: flex;
  2390. align-items: center;
  2391. justify-content: center;
  2392. background: var(--admin-bg-tertiary);
  2393. img {
  2394. width: 100%;
  2395. height: 100%;
  2396. object-fit: cover;
  2397. }
  2398. .admin--table-photo-empty {
  2399. font-size: 11px;
  2400. color: var(--admin-text-muted);
  2401. text-align: center;
  2402. }
  2403. }
  2404. // 테이블 액션 (세로 배치)
  2405. .admin--table-actions-col {
  2406. flex-direction: column;
  2407. gap: 6px;
  2408. .admin--btn-small {
  2409. width: 100%;
  2410. }
  2411. }
  2412. // 작은 버튼 (secondary 추가)
  2413. .admin--btn-small{
  2414. &.admin--btn-small-secondary {
  2415. border-radius: 6px;
  2416. border: 1px solid #E8EAEF;
  2417. background: #FFF;
  2418. &:hover{
  2419. border: 1px solid #e8eaef!important;
  2420. }
  2421. }
  2422. }
  2423. // 엑셀 버튼 (녹색 배경)
  2424. .admin--btn-small-excel {
  2425. background: #217346;
  2426. color: #ffffff;
  2427. border: 1px solid #1a5c37;
  2428. &:hover {
  2429. background: #185c37;
  2430. border-color: #144d2d;
  2431. }
  2432. }
  2433. // Responsive
  2434. @media (max-width: 1024px) {
  2435. .admin--sidebar {
  2436. width: 220px;
  2437. }
  2438. .admin--main {
  2439. margin-left: 220px;
  2440. }
  2441. }
  2442. @media (max-width: 768px) {
  2443. .admin--header {
  2444. padding: 0 16px;
  2445. }
  2446. .admin--sidebar {
  2447. transform: translateX(-100%);
  2448. transition: transform 0.3s ease;
  2449. &.is-open {
  2450. transform: translateX(0);
  2451. }
  2452. }
  2453. .admin--main {
  2454. margin-left: 0;
  2455. padding: 16px;
  2456. }
  2457. .admin--page-header {
  2458. flex-direction: column;
  2459. align-items: flex-start;
  2460. gap: 12px;
  2461. }
  2462. .admin--form {
  2463. .admin--form-actions {
  2464. flex-direction: column;
  2465. .admin--btn {
  2466. width: 100%;
  2467. }
  2468. }
  2469. .admin--multi-input-wrapper {
  2470. .admin--multi-input-item {
  2471. flex-direction: column;
  2472. .admin--btn-remove {
  2473. width: 100%;
  2474. }
  2475. }
  2476. }
  2477. }
  2478. }
  2479. // File Attachment Styles
  2480. .admin--form-file-hidden {
  2481. display: none;
  2482. }
  2483. .admin--file-list {
  2484. margin-bottom: 12px;
  2485. border: 1px solid var(--admin-border-color);
  2486. border-radius: 4px;
  2487. background-color: var(--admin-bg-secondary);
  2488. }
  2489. .admin--file-item {
  2490. display: flex;
  2491. align-items: center;
  2492. padding: 12px 16px;
  2493. border-bottom: 1px solid var(--admin-border-color);
  2494. &:last-child {
  2495. border-bottom: none;
  2496. }
  2497. &:hover {
  2498. background-color: rgba(255, 255, 255, 0.03);
  2499. }
  2500. }
  2501. .admin--file-name {
  2502. flex: 1;
  2503. color: var(--admin-text-primary);
  2504. font-size: 14px;
  2505. overflow: hidden;
  2506. text-overflow: ellipsis;
  2507. white-space: nowrap;
  2508. margin-right: 8px;
  2509. &:hover {
  2510. text-decoration: underline;
  2511. }
  2512. }
  2513. .admin--file-size {
  2514. color: var(--admin-text-secondary);
  2515. font-size: 13px;
  2516. margin-right: 12px;
  2517. white-space: nowrap;
  2518. }
  2519. .admin--btn-remove-file {
  2520. padding: 4px 12px;
  2521. background-color: transparent;
  2522. color: var(--admin-danger-color);
  2523. border: 1px solid var(--admin-danger-color);
  2524. border-radius: 4px;
  2525. font-size: 13px;
  2526. cursor: pointer;
  2527. transition: all 0.2s ease;
  2528. white-space: nowrap;
  2529. &:hover {
  2530. background-color: var(--admin-danger-color);
  2531. color: white;
  2532. }
  2533. }
  2534. // Checkbox Group Styles
  2535. .admin--checkbox-group {
  2536. display: flex;
  2537. gap: 20px;
  2538. }
  2539. .admin--checkbox-label {
  2540. display: flex;
  2541. align-items: center;
  2542. gap: 8px;
  2543. color: var(--admin-text-primary);
  2544. font-size: 14px;
  2545. cursor: pointer;
  2546. input[type="checkbox"] {
  2547. width: 18px;
  2548. height: 18px;
  2549. cursor: pointer;
  2550. accent-color: var(--admin-accent-primary);
  2551. }
  2552. span {
  2553. user-select: none;
  2554. }
  2555. &:hover {
  2556. opacity: 0.8;
  2557. }
  2558. }
  2559. // Admin Footer
  2560. .admin--footer {
  2561. margin-top: 64px;
  2562. padding: 24px 0;
  2563. border-top: 1px solid var(--admin-border-color);
  2564. text-align: center;
  2565. p {
  2566. color: var(--admin-text-muted);
  2567. font-size: 14px;
  2568. margin: 0;
  2569. }
  2570. }
  2571. // IMPORTANT: Force display admin header and footer
  2572. .admin--header {
  2573. display: flex !important;
  2574. min-height: 64px !important;
  2575. background: #ffffff !important;
  2576. visibility: visible !important;
  2577. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  2578. }
  2579. .admin--footer {
  2580. display: block !important;
  2581. min-height: 60px !important;
  2582. background: #ffffff !important;
  2583. visibility: visible !important;
  2584. }
  2585. // Alert Modal Styles
  2586. .admin--modal-overlay {
  2587. position: fixed;
  2588. top: 0;
  2589. left: 0;
  2590. right: 0;
  2591. bottom: 0;
  2592. background: rgba(0, 0, 0, 0.7);
  2593. z-index: 9999;
  2594. display: flex;
  2595. align-items: center;
  2596. justify-content: center;
  2597. }
  2598. .admin--alert-modal {
  2599. background: #ffffff;
  2600. padding: 0;
  2601. border-radius: 8px;
  2602. min-width: 400px;
  2603. max-width: 500px;
  2604. box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  2605. }
  2606. .admin--alert-modal .admin--modal-header {
  2607. padding: 20px;
  2608. border-bottom: 1px solid #e0e0e0;
  2609. display: flex;
  2610. justify-content: space-between;
  2611. align-items: center;
  2612. h4 {
  2613. margin: 0;
  2614. font-size: 18px;
  2615. font-weight: 600;
  2616. color: #1a1a1a;
  2617. }
  2618. }
  2619. .admin--alert-modal .admin--modal-close {
  2620. background: none;
  2621. border: none;
  2622. font-size: 24px;
  2623. cursor: pointer;
  2624. color: #999;
  2625. line-height: 1;
  2626. transition: color 0.2s;
  2627. &:hover {
  2628. color: #333;
  2629. }
  2630. }
  2631. .admin--alert-modal .admin--modal-body {
  2632. padding: 30px 20px;
  2633. .admin--alert-content p {
  2634. margin: 0;
  2635. font-size: 15px;
  2636. line-height: 1.6;
  2637. color: #333333;
  2638. }
  2639. }
  2640. .admin--alert-modal .admin--modal-footer {
  2641. padding: 15px 20px;
  2642. border-top: 1px solid #e0e0e0;
  2643. display: flex;
  2644. gap: 10px;
  2645. justify-content: flex-end;
  2646. }
  2647. .admin--alert-modal .admin--btn-secondary {
  2648. padding: 8px 20px;
  2649. border: 1px solid #e0e0e0;
  2650. background: #f5f5f5;
  2651. color: #333333;
  2652. border-radius: 4px;
  2653. cursor: pointer;
  2654. font-size: 14px;
  2655. transition: all 0.2s;
  2656. &:hover {
  2657. background: #eeeeee;
  2658. }
  2659. }
  2660. .admin--alert-modal .admin--btn-primary {
  2661. padding: 8px 20px;
  2662. border: none;
  2663. background: var(--admin-accent-primary);
  2664. color: white;
  2665. border-radius: 4px;
  2666. cursor: pointer;
  2667. font-size: 14px;
  2668. transition: all 0.2s;
  2669. &:hover {
  2670. background: var(--admin-accent-hover);
  2671. }
  2672. }
  2673. // Modal Animation
  2674. @keyframes slideUp {
  2675. from {
  2676. opacity: 0;
  2677. transform: translateY(30px);
  2678. }
  2679. to {
  2680. opacity: 1;
  2681. transform: translateY(0);
  2682. }
  2683. }
  2684. .modal-fade-enter-active {
  2685. transition: opacity 0.3s ease;
  2686. .admin--alert-modal {
  2687. animation: slideUp 0.3s ease-out;
  2688. }
  2689. }
  2690. .modal-fade-leave-active {
  2691. transition: opacity 0.2s ease;
  2692. }
  2693. .modal-fade-enter-from,
  2694. .modal-fade-leave-to {
  2695. opacity: 0;
  2696. }
  2697. // ScrollCanvasAnimation Component Styles
  2698. .scroll--canvas--animation {
  2699. position: relative;
  2700. width: 100%;
  2701. // 가상 스크롤 공간 (보이지 않음, 스크롤 영역만 확보)
  2702. .scroll--spacer {
  2703. width: 100%;
  2704. pointer-events: none;
  2705. }
  2706. // 고정될 캔버스 영역 (100vh)
  2707. .scroll--canvas--sticky {
  2708. position: absolute;
  2709. top: 0;
  2710. left: 0;
  2711. width: 100%;
  2712. height: 100vh;
  2713. overflow: hidden;
  2714. transition: background-color 0.3s ease;
  2715. // 고정 상태일 때
  2716. &.is--fixed {
  2717. position: fixed;
  2718. top: 0;
  2719. left: 0;
  2720. right: 0;
  2721. z-index: 100;
  2722. }
  2723. // 완료 상태일 때
  2724. &.is--completed {
  2725. position: absolute;
  2726. top: auto;
  2727. bottom: 0;
  2728. }
  2729. }
  2730. // 헤드라인 컨테이너
  2731. .headline--container {
  2732. position: absolute;
  2733. top: 0;
  2734. left: 0;
  2735. right: 0;
  2736. bottom: 0;
  2737. z-index: 10;
  2738. display: flex;
  2739. align-items: center;
  2740. justify-content: center;
  2741. padding: 40px 20px;
  2742. pointer-events: none;
  2743. transition: opacity 0.3s ease;
  2744. .content--container {
  2745. text-align: left;
  2746. padding: 0 var(--spacing-relative-3xl);
  2747. width: 100%;
  2748. }
  2749. .headline--text {
  2750. font-size: clamp(32px, 5vw, 64px);
  2751. font-weight: 700;
  2752. line-height: 1.2;
  2753. margin: 0 0 20px 0;
  2754. letter-spacing: -0.02em;
  2755. animation: fadeInUp 0.8s cubic-bezier(0.15, 0, 0.25, 1) forwards;
  2756. opacity: 0;
  2757. color: rgb(252, 252, 253);
  2758. letter-spacing: 0px;
  2759. font-weight: 400;
  2760. text-decoration: none;
  2761. font-size: 36px;
  2762. line-height: 52px;
  2763. font-stretch: 130%;
  2764. @media (min-width: 768px) {
  2765. font-size: 44px;
  2766. line-height: 60px;
  2767. }
  2768. @media (min-width: 1024px) {
  2769. font-size: 52px;
  2770. line-height: 76px;
  2771. }
  2772. @media (min-width: 1440px) {
  2773. font-size: 60px;
  2774. line-height: 84px;
  2775. }
  2776. @media (min-width: 1920px) {
  2777. font-size: 72px;
  2778. line-height: 100px;
  2779. }
  2780. }
  2781. .subheadline--text {
  2782. font-size: clamp(16px, 2.5vw, 24px);
  2783. font-weight: 400;
  2784. line-height: 1.5;
  2785. margin: 0;
  2786. color: rgba(252, 252, 253, 0.8);
  2787. animation: fadeInUp 0.8s cubic-bezier(0.15, 0, 0.25, 1) 0.2s forwards;
  2788. opacity: 0;
  2789. }
  2790. }
  2791. // 이미지 컨테이너
  2792. .scroll--images--container {
  2793. position: absolute;
  2794. top: 0;
  2795. left: 0;
  2796. width: 100%;
  2797. height: 100%;
  2798. display: flex;
  2799. align-items: center;
  2800. justify-content: center;
  2801. }
  2802. // 캔버스
  2803. .scroll--canvas {
  2804. display: block;
  2805. position: absolute;
  2806. top: 50%;
  2807. left: 50%;
  2808. transform: translate(-50%, -50%);
  2809. max-width: 100%;
  2810. max-height: 100%;
  2811. object-fit: cover;
  2812. }
  2813. }
  2814. // 페이드인 애니메이션
  2815. @keyframes fadeInUp {
  2816. from {
  2817. opacity: 0;
  2818. transform: translateY(40px);
  2819. }
  2820. to {
  2821. opacity: 1;
  2822. transform: translateY(0);
  2823. }
  2824. }
  2825. // 반응형 스타일
  2826. @media (max-width: 1024px) {
  2827. .scroll--canvas--animation {
  2828. .headline--container {
  2829. padding: 30px 15px;
  2830. .headline--text {
  2831. margin-bottom: 15px;
  2832. }
  2833. }
  2834. }
  2835. }
  2836. @media (max-width: 768px) {
  2837. .scroll--canvas--animation {
  2838. .headline--container {
  2839. padding: 20px 15px;
  2840. .headline--text {
  2841. margin-bottom: 12px;
  2842. }
  2843. }
  2844. }
  2845. }
  2846. @media (max-width: 480px) {
  2847. .scroll--canvas--animation {
  2848. .headline--container {
  2849. padding: 15px 10px;
  2850. .content--container {
  2851. max-width: 100%;
  2852. }
  2853. }
  2854. }
  2855. }
  2856. .iframe--wrapper {
  2857. position: relative;
  2858. padding-top: 55.6%;
  2859. iframe {
  2860. position: absolute;
  2861. width: 100%;
  2862. height: 100%;
  2863. top: 0px;
  2864. }
  2865. }
  2866. .sign--wrapper {
  2867. display: flex;
  2868. align-items: center;
  2869. gap: 30px;
  2870. width: 100%;
  2871. justify-content: flex-end;
  2872. }
  2873. // 중복 체크 버튼 스타일
  2874. .admin--input-with-button {
  2875. display: flex;
  2876. gap: 8px;
  2877. align-items: stretch;
  2878. .admin--form-input {
  2879. flex: 1;
  2880. }
  2881. .admin--btn {
  2882. flex-shrink: 0;
  2883. white-space: nowrap;
  2884. height: auto;
  2885. }
  2886. }
  2887. .admin--btn-check {
  2888. background: #2563eb !important;
  2889. color: #ffffff !important;
  2890. border: none;
  2891. padding: 10px 16px;
  2892. border-radius: 4px;
  2893. font-size: 13px;
  2894. font-weight: 500;
  2895. cursor: pointer;
  2896. transition: all 0.3s ease;
  2897. &:hover:not(:disabled) {
  2898. background: #1d4ed8 !important;
  2899. }
  2900. &:disabled {
  2901. opacity: 0.5;
  2902. cursor: not-allowed;
  2903. }
  2904. }
  2905. .admin--form-help {
  2906. margin-top: 6px;
  2907. font-size: 12px;
  2908. line-height: 1.4;
  2909. color: #999;
  2910. }
  2911. .admin--text-success {
  2912. color: #4caf50 !important;
  2913. }
  2914. .admin--text-error {
  2915. color: #f44336 !important;
  2916. }
  2917. .file--item {
  2918. display: flex;
  2919. align-items: center;
  2920. }
  2921. footer {
  2922. position: relative;
  2923. background: #252525;
  2924. .footer--wrap {
  2925. //position: relative;
  2926. .footer--btn--wrap {
  2927. display: flex;
  2928. flex-direction: column;
  2929. position: fixed;
  2930. bottom: 120px;
  2931. //left: calc(100% + 60px);
  2932. right: 110px;
  2933. gap: 12px;
  2934. opacity: 0;
  2935. z-index: 10;
  2936. pointer-events: none;
  2937. transition: all 0.3s;
  2938. &.active {
  2939. pointer-events: all;
  2940. opacity: 1;
  2941. }
  2942. .quick--wrap {
  2943. position: fixed;
  2944. right: 49px;
  2945. border-radius: 20px;
  2946. background: #F5FAFF;
  2947. box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
  2948. width: 192px;
  2949. overflow: hidden;
  2950. transition: all 0.3s;
  2951. border: 1px solid rgba(7, 111, 237, 0.50);
  2952. opacity: 0;
  2953. bottom: 330px;
  2954. pointer-events: none;
  2955. &.active {
  2956. pointer-events: all;
  2957. opacity: 1;
  2958. bottom: 317px;
  2959. }
  2960. .inner--wrap {
  2961. padding: 5px 30px;
  2962. display: flex;
  2963. flex-direction: column;
  2964. li {
  2965. text-align: center;
  2966. display: flex;
  2967. a {
  2968. width: 100%;
  2969. color: #333;
  2970. white-space: nowrap;
  2971. padding: 12.5px 0;
  2972. font-size: 13px;
  2973. text-transform: uppercase;
  2974. font-weight: 500;
  2975. transition: all 0.3s;
  2976. line-height: 1;
  2977. &:hover {
  2978. color: #076FED;
  2979. text-decoration-line: underline;
  2980. text-decoration-style: solid;
  2981. text-decoration-skip-ink: auto;
  2982. text-decoration-thickness: auto;
  2983. text-underline-offset: auto;
  2984. text-underline-position: from-font;
  2985. font-weight: 700;
  2986. }
  2987. }
  2988. }
  2989. }
  2990. }
  2991. .quick--menu {
  2992. display: flex;
  2993. flex-direction: column;
  2994. background-color: #076fed;
  2995. border-radius: 100px;
  2996. box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
  2997. align-items: center;
  2998. justify-content: center;
  2999. width: 70px;
  3000. height: 100px;
  3001. gap: 10px;
  3002. font-size: 12px;
  3003. font-weight: 700;
  3004. color: #fff;
  3005. &.active {
  3006. .ico {
  3007. background-image: url(/img/ico--quick--close.svg);
  3008. }
  3009. }
  3010. .ico {
  3011. width: 24px;
  3012. height: 24px;
  3013. background-image: url(/img/ico--quick.svg);
  3014. }
  3015. }
  3016. .scroll--to--top {
  3017. display: flex;
  3018. flex-direction: column;
  3019. box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
  3020. width: 70px;
  3021. height: 70px;
  3022. border-radius: 50%;
  3023. background-color: #282828;
  3024. gap: 2px;
  3025. justify-content: center;
  3026. font-size: 13px;
  3027. font-weight: 700;
  3028. align-items: center;
  3029. .ico {
  3030. width: 24px;
  3031. height: 24px;
  3032. background-image: url(/img/ico--top--arrow.svg);
  3033. }
  3034. }
  3035. }
  3036. .footer--site--map {
  3037. >ul {
  3038. >li {
  3039. >ul {
  3040. >h3,
  3041. >a {
  3042. position: relative;
  3043. padding-left: 13px;
  3044. margin-bottom: 15px;
  3045. text-transform: capitalize;
  3046. display: block;
  3047. &:before {
  3048. content: '';
  3049. width: 3px;
  3050. height: 3px;
  3051. position: absolute;
  3052. display: block;
  3053. background: #E9E9E9;
  3054. top: 50%;
  3055. left: 0;
  3056. transform: translateY(-50%);
  3057. }
  3058. }
  3059. >li {
  3060. position: relative;
  3061. padding-left: 13px;
  3062. &:before {
  3063. content: '';
  3064. width: 3px;
  3065. height: 3px;
  3066. position: absolute;
  3067. display: block;
  3068. background: #E9E9E9;
  3069. top: 50%;
  3070. left: 0;
  3071. transform: translateY(-50%);
  3072. }
  3073. >a {
  3074. color: #E9E9E9;
  3075. font-size: 14px;
  3076. }
  3077. &.inner--style {
  3078. margin-bottom: 15px;
  3079. &:last-child {
  3080. margin-bottom: 30px;
  3081. }
  3082. &:before {
  3083. display: none;
  3084. }
  3085. a {
  3086. color: #B7B7B7;
  3087. font-size: 14px;
  3088. font-style: normal;
  3089. font-weight: 400;
  3090. line-height: 100%;
  3091. /* 14px */
  3092. text-transform: capitalize;
  3093. }
  3094. }
  3095. }
  3096. }
  3097. }
  3098. }
  3099. }
  3100. }
  3101. .footer--info--wrapper {
  3102. background: #161616;
  3103. .footer--info--wrap {
  3104. position: relative;
  3105. .sns--wrap {
  3106. display: flex;
  3107. justify-content: flex-end;
  3108. margin-bottom: 12px;
  3109. gap: 15px;
  3110. position: absolute;
  3111. top: 50%;
  3112. transform: translateY(-50%);
  3113. right: 0px;
  3114. >a {
  3115. width: 40px;
  3116. height: 40px;
  3117. display: inline-block;
  3118. border-radius: 50%;
  3119. display: flex;
  3120. align-items: center;
  3121. justify-content: center;
  3122. cursor: pointer;
  3123. box-sizing: border-box;
  3124. background: #fff;
  3125. }
  3126. }
  3127. .copy--wrap {
  3128. font-size: 14px;
  3129. color: #fcfcfdb2;
  3130. max-width: 1440px;
  3131. margin: 0 auto;
  3132. padding: 30px 0px;
  3133. position: relative;
  3134. .link--list {
  3135. display: flex;
  3136. flex-wrap: wrap;
  3137. gap: 37px;
  3138. >li {
  3139. position: relative;
  3140. &::after {
  3141. content: '';
  3142. height: 15px;
  3143. width: 1px;
  3144. background: rgba(255, 255, 255, 0.50);
  3145. display: block;
  3146. position: absolute;
  3147. right: -18px;
  3148. top: 50%;
  3149. transform: translateY(-50%);
  3150. }
  3151. &:last-child {
  3152. &::after {
  3153. display: none;
  3154. }
  3155. }
  3156. >a {
  3157. display: inline-block;
  3158. color: rgb(252, 252, 253);
  3159. transition: all 0.3s;
  3160. color: #FFF;
  3161. font-size: 15px;
  3162. font-style: normal;
  3163. font-weight: 700;
  3164. line-height: 100%;
  3165. /* 15px */
  3166. letter-spacing: -0.3px;
  3167. text-transform: capitalize;
  3168. &:hover {
  3169. opacity: 0.7;
  3170. }
  3171. }
  3172. }
  3173. }
  3174. >p {
  3175. //margin-top: 25px;
  3176. }
  3177. }
  3178. }
  3179. }
  3180. @media (max-width: 768px) {
  3181. .footer--wrap {
  3182. .footer--site--map {
  3183. >ul {
  3184. >li {
  3185. >h2 {
  3186. cursor: pointer;
  3187. user-select: none;
  3188. position: relative;
  3189. padding-right: 20px;
  3190. &::after {
  3191. content: '';
  3192. position: absolute;
  3193. right: 20px;
  3194. background-image: url(/img/ico--footer.svg);
  3195. width: 18px;
  3196. min-width: 18px;
  3197. margin-left: 20px;
  3198. height: 18px;
  3199. transition: transform 0.3s ease;
  3200. }
  3201. }
  3202. >ul {
  3203. max-height: 0;
  3204. overflow: hidden;
  3205. transition: max-height 0.3s ease;
  3206. &.active {
  3207. max-height: 1000px;
  3208. }
  3209. }
  3210. }
  3211. }
  3212. }
  3213. }
  3214. }
  3215. }
  3216. .swiper--banner--wrapper {
  3217. width: 100%;
  3218. overflow: hidden;
  3219. .swiper--banner--container {
  3220. position: relative;
  3221. .swiper-button-next,
  3222. .swiper-button-prev {
  3223. display: flex;
  3224. width: 65px;
  3225. height: 65px;
  3226. padding: 21px 20px 20px 21px;
  3227. justify-content: center;
  3228. align-items: center;
  3229. flex-shrink: 0;
  3230. position: absolute;
  3231. top: 50%;
  3232. background: none;
  3233. border-radius: 1000px;
  3234. border: 1px solid #FFF;
  3235. z-index: 9;
  3236. cursor: pointer;
  3237. transition: all 0.3s ease;
  3238. &:hover {
  3239. background: rgba(0, 0, 0, 0.5);
  3240. }
  3241. &::after {
  3242. display: none; // Swiper 기본 화살표 숨김
  3243. }
  3244. svg {
  3245. width: 24px;
  3246. height: 24px;
  3247. fill: none;
  3248. pointer-events: none; // SVG가 클릭을 방해하지 않도록
  3249. }
  3250. }
  3251. .swiper-button-next {
  3252. right: 50%;
  3253. transform: translate(calc(1440px / 2), -50%);
  3254. }
  3255. .swiper-button-prev {
  3256. left: 50%;
  3257. transform: translate(calc(-1440px / 2), -50%);
  3258. }
  3259. // Pagination wrapper with progress and fractions
  3260. .swiper--pagination--wrapper {
  3261. position: absolute;
  3262. bottom: 20px;
  3263. left: 50%;
  3264. transform: translateX(-50%);
  3265. z-index: 9;
  3266. display: flex;
  3267. flex-direction: column;
  3268. align-items: center;
  3269. gap: 12px;
  3270. .swiper-pagination {
  3271. position: relative;
  3272. bottom: auto;
  3273. left: auto;
  3274. transform: none;
  3275. .swiper-pagination-bullet {
  3276. opacity: 1;
  3277. width: 12px;
  3278. height: 12px;
  3279. background: rgba(255, 255, 255, 0.5);
  3280. transition: all 0.3s ease;
  3281. &.swiper-pagination-bullet-active {
  3282. background: #fff;
  3283. }
  3284. }
  3285. }
  3286. .swiper--fraction {
  3287. display: flex;
  3288. align-items: center;
  3289. gap: 4px;
  3290. color: #fff;
  3291. font-size: 16px;
  3292. font-weight: 600;
  3293. .separator {
  3294. opacity: 0.7;
  3295. }
  3296. .total {
  3297. opacity: 0.7;
  3298. }
  3299. }
  3300. .swiper--progressbar {
  3301. width: 200px;
  3302. height: 3px;
  3303. background: rgba(255, 255, 255, 0.3);
  3304. border-radius: 10px;
  3305. overflow: hidden;
  3306. .swiper--progressbar-fill {
  3307. height: 100%;
  3308. background: #fff;
  3309. transition: width 0.3s ease;
  3310. border-radius: 10px;
  3311. }
  3312. }
  3313. }
  3314. // 기존 pagination (호환성 유지)
  3315. .swiper-pagination {
  3316. position: absolute;
  3317. bottom: 20px;
  3318. z-index: 8;
  3319. .swiper-pagination-bullet {
  3320. opacity: 1;
  3321. &.swiper-pagination-bullet-active {
  3322. background: #FFF;
  3323. }
  3324. width:12px;
  3325. height:12px;
  3326. background: rgba(255, 255, 255, 0.50);
  3327. }
  3328. }
  3329. .swiper--banner--section {
  3330. .swiper--container {
  3331. .swiper-wrapper {
  3332. .slide--image {
  3333. height: 550px;
  3334. position: relative;
  3335. img {
  3336. margin: 0 auto;
  3337. width: 100%;
  3338. height: 100%;
  3339. object-fit: cover;
  3340. }
  3341. // 확대 버튼
  3342. .zoom--btn {
  3343. position: absolute;
  3344. top: 20px;
  3345. right: 20px;
  3346. width: 50px;
  3347. height: 50px;
  3348. background: rgba(0, 0, 0, 0.5);
  3349. border: 1px solid rgba(255, 255, 255, 0.3);
  3350. border-radius: 50%;
  3351. display: flex;
  3352. align-items: center;
  3353. justify-content: center;
  3354. cursor: pointer;
  3355. z-index: 10;
  3356. transition: all 0.3s ease;
  3357. &:hover {
  3358. background: rgba(0, 0, 0, 0.7);
  3359. border-color: rgba(255, 255, 255, 0.6);
  3360. transform: scale(1.1);
  3361. }
  3362. svg {
  3363. width: 24px;
  3364. height: 24px;
  3365. }
  3366. }
  3367. .desc--wrapper {
  3368. position: absolute;
  3369. top: 100px;
  3370. left: 50%;
  3371. transform: translateX(-50%);
  3372. width: 100%;
  3373. display: flex;
  3374. align-items: center;
  3375. flex-direction: column;
  3376. h2 {
  3377. color: #FFF;
  3378. text-align: center;
  3379. font-size: 45px;
  3380. font-style: normal;
  3381. font-weight: 700;
  3382. line-height: 1.2;
  3383. text-transform: uppercase;
  3384. }
  3385. h3 {
  3386. color: #FFF;
  3387. text-align: center;
  3388. font-size: 20px;
  3389. font-style: normal;
  3390. font-weight: 400;
  3391. //line-height: 100%; /* 20px */
  3392. text-transform: uppercase;
  3393. margin-top: 25px;
  3394. }
  3395. .more--detail--href {
  3396. border-radius: 100px;
  3397. border: 1px solid #FFF;
  3398. color: #FFF;
  3399. text-align: center;
  3400. font-size: 15px;
  3401. font-style: normal;
  3402. font-weight: 700;
  3403. line-height: 100%;
  3404. /* 15px */
  3405. letter-spacing: -0.3px;
  3406. text-transform: uppercase;
  3407. padding: 18px 20px;
  3408. min-width: 150px;
  3409. }
  3410. }
  3411. }
  3412. }
  3413. }
  3414. }
  3415. }
  3416. }
  3417. .swiper--banner--wrapper2 {
  3418. width: 100%;
  3419. overflow: hidden;
  3420. border-radius: 30px;
  3421. max-height: 600px;
  3422. .swiper--banner--container {
  3423. position: relative;
  3424. .type--connection {
  3425. position: absolute;
  3426. top: 45px;
  3427. right: 45px;
  3428. z-index: 10;
  3429. &.exterior {
  3430. color: #FFF;
  3431. font-size: 14px;
  3432. font-style: normal;
  3433. font-weight: 700;
  3434. line-height: 100%;
  3435. /* 14px */
  3436. text-transform: uppercase;
  3437. border-radius: 1000px;
  3438. background: #076FED;
  3439. padding: 15px 20px;
  3440. gap: 10px;
  3441. display: flex;
  3442. align-items: center;
  3443. }
  3444. &.interior {
  3445. color: #FFF;
  3446. font-size: 14px;
  3447. font-style: normal;
  3448. font-weight: 700;
  3449. line-height: 100%;
  3450. /* 14px */
  3451. text-transform: uppercase;
  3452. border-radius: 1000px;
  3453. background: #0AF;
  3454. padding: 15px 20px;
  3455. gap: 10px;
  3456. display: flex;
  3457. align-items: center;
  3458. }
  3459. }
  3460. // Pagination wrapper with progress and fractions
  3461. .swiper--pagination--wrapper {
  3462. position: absolute;
  3463. bottom: 65px;
  3464. right: 45px;
  3465. z-index: 9;
  3466. display: flex;
  3467. align-items: center;
  3468. gap: 12px;
  3469. .swiper-pagination {
  3470. display: none;
  3471. position: relative;
  3472. bottom: auto;
  3473. left: auto;
  3474. transform: none;
  3475. .swiper-pagination-bullet {
  3476. opacity: 1;
  3477. width: 12px;
  3478. height: 12px;
  3479. background: rgba(255, 255, 255, 0.5);
  3480. transition: all 0.3s ease;
  3481. &.swiper-pagination-bullet-active {
  3482. background: #fff;
  3483. }
  3484. }
  3485. }
  3486. .swiper--fraction {
  3487. display: flex;
  3488. align-items: center;
  3489. gap: 4px;
  3490. color: #fff;
  3491. font-size: 14px;
  3492. font-weight: 700;
  3493. .separator {
  3494. color: rgba(255, 255, 255, 0.60);
  3495. font-weight: 400;
  3496. }
  3497. .total {
  3498. color: rgba(255, 255, 255, 0.60);
  3499. font-weight: 400;
  3500. }
  3501. }
  3502. .swiper--progressbar {
  3503. width: 200px;
  3504. height: 3px;
  3505. background: rgba(255, 255, 255, 0.3);
  3506. border-radius: 10px;
  3507. overflow: hidden;
  3508. .swiper--progressbar-fill {
  3509. height: 100%;
  3510. background: #fff;
  3511. transition: width 0.3s ease;
  3512. border-radius: 10px;
  3513. }
  3514. }
  3515. }
  3516. .swiper--banner--section {
  3517. .swiper--container {
  3518. .swiper-wrapper {
  3519. .slide--image {
  3520. position: relative;
  3521. z-index: 1;
  3522. padding-top: 56.5%;
  3523. min-height: 600px;
  3524. >img {
  3525. position: absolute;
  3526. top: 0px;
  3527. width: 100%;
  3528. height: 100%;
  3529. z-index: 1;
  3530. object-fit: cover;
  3531. }
  3532. // 확대 버튼
  3533. .zoom--btn {
  3534. position: absolute;
  3535. bottom: 45px;
  3536. left: 45px;
  3537. display: flex;
  3538. height: 60px;
  3539. padding: 20px 25px;
  3540. justify-content: center;
  3541. align-items: center;
  3542. gap: 10px;
  3543. cursor: pointer;
  3544. z-index: 10;
  3545. transition: all 0.3s ease;
  3546. border-radius: 1000px;
  3547. border: 1px solid #FFF;
  3548. color: #FFF;
  3549. font-size: 14px;
  3550. font-style: normal;
  3551. font-weight: 400;
  3552. line-height: 100%;
  3553. /* 14px */
  3554. text-transform: capitalize;
  3555. svg {
  3556. width: 12px;
  3557. height: 12px;
  3558. }
  3559. }
  3560. .desc--wrapper {
  3561. position: absolute;
  3562. top: 0px;
  3563. left: 0px;
  3564. width: 100%;
  3565. height: 100%;
  3566. display: flex;
  3567. align-items: center;
  3568. justify-content: center;
  3569. flex-direction: column;
  3570. h2 {
  3571. color: #FFF;
  3572. text-align: center;
  3573. font-size: 45px;
  3574. font-style: normal;
  3575. font-weight: 700;
  3576. line-height: 100%;
  3577. /* 45px */
  3578. text-transform: uppercase;
  3579. }
  3580. h3 {
  3581. color: #FFF;
  3582. text-align: center;
  3583. font-size: 20px;
  3584. font-style: normal;
  3585. font-weight: 400;
  3586. line-height: 100%;
  3587. /* 20px */
  3588. text-transform: uppercase;
  3589. margin-top: 25px;
  3590. }
  3591. .more--detail--href {
  3592. border-radius: 100px;
  3593. border: 1px solid #FFF;
  3594. color: #FFF;
  3595. text-align: center;
  3596. font-size: 15px;
  3597. font-style: normal;
  3598. font-weight: 700;
  3599. line-height: 100%;
  3600. /* 15px */
  3601. letter-spacing: -0.3px;
  3602. text-transform: uppercase;
  3603. padding: 18px 20px;
  3604. min-width: 150px;
  3605. }
  3606. }
  3607. }
  3608. }
  3609. }
  3610. }
  3611. }
  3612. }
  3613. .swiper--banner--wrapper3 {
  3614. width: 100%;
  3615. overflow: hidden;
  3616. background: #111;
  3617. .top--text--wrap {
  3618. padding: 80px 0px;
  3619. h2 {
  3620. color: #FFF;
  3621. text-align: center;
  3622. font-size: 40px;
  3623. font-style: normal;
  3624. font-weight: 500;
  3625. line-height: 100%;
  3626. /* 40px */
  3627. text-transform: capitalize;
  3628. }
  3629. >div {
  3630. color: #FFF;
  3631. text-align: center;
  3632. font-size: 18px;
  3633. font-style: normal;
  3634. font-weight: 300;
  3635. line-height: 1.7;
  3636. text-transform: uppercase;
  3637. }
  3638. }
  3639. .swiper--banner--container {
  3640. position: relative;
  3641. .btn--actions {
  3642. display: flex;
  3643. position: absolute;
  3644. top: -27.5px;
  3645. right: 25px;
  3646. height: 55px;
  3647. justify-content: flex-end;
  3648. gap: 15px;
  3649. z-index: 10;
  3650. .swiper-button-next,
  3651. .swiper-button-prev {
  3652. margin-top: 0;
  3653. display: flex;
  3654. width: 55px;
  3655. height: 55px;
  3656. justify-content: center;
  3657. align-items: center;
  3658. flex-shrink: 0;
  3659. background: none;
  3660. border-radius: 1000px;
  3661. border: 0px;
  3662. background: #fff;
  3663. cursor: pointer;
  3664. transition: all 0.3s ease;
  3665. position: static;
  3666. &:hover {
  3667. background: rgba(0, 0, 0, 0.5);
  3668. }
  3669. &::after {
  3670. display: none; // Swiper 기본 화살표 숨김
  3671. }
  3672. svg {
  3673. width: 24px;
  3674. height: 24px;
  3675. fill: none;
  3676. pointer-events: none; // SVG가 클릭을 방해하지 않도록
  3677. }
  3678. }
  3679. }
  3680. // Pagination wrapper with progress and fractions
  3681. .swiper--pagination--wrapper {
  3682. position: absolute;
  3683. bottom: 20px;
  3684. left: 50%;
  3685. transform: translateX(-50%);
  3686. z-index: 9;
  3687. display: flex;
  3688. flex-direction: column;
  3689. align-items: center;
  3690. gap: 12px;
  3691. .swiper-pagination {
  3692. position: relative;
  3693. bottom: auto;
  3694. left: auto;
  3695. transform: none;
  3696. .swiper-pagination-bullet {
  3697. opacity: 1;
  3698. width: 12px;
  3699. height: 12px;
  3700. background: rgba(255, 255, 255, 0.5);
  3701. transition: all 0.3s ease;
  3702. &.swiper-pagination-bullet-active {
  3703. background: #fff;
  3704. }
  3705. }
  3706. }
  3707. }
  3708. // 기존 pagination (호환성 유지)
  3709. .swiper-pagination {
  3710. position: absolute;
  3711. bottom: 20px;
  3712. z-index: 9;
  3713. display: none;
  3714. .swiper-pagination-bullet {
  3715. opacity: 1;
  3716. &.swiper-pagination-bullet-active {
  3717. background: #FFF;
  3718. }
  3719. width:12px;
  3720. height:12px;
  3721. background: rgba(255, 255, 255, 0.50);
  3722. }
  3723. }
  3724. .swiper--banner--section {
  3725. .swiper--container {
  3726. .swiper-wrapper {
  3727. .slide--image {
  3728. position: relative;
  3729. img {
  3730. width: 100%;
  3731. margin: 0 auto;
  3732. object-fit: cover;
  3733. }
  3734. .desc--wrapper {
  3735. position: absolute;
  3736. bottom: 0;
  3737. width: 100%;
  3738. max-width: 1440px;
  3739. margin: 0 auto;
  3740. left: 50%;
  3741. transform: translateX(-50%);
  3742. background: rgba(0, 0, 0, 0.50);
  3743. .desc--wrap {
  3744. padding: 50px 60px;
  3745. align-self: stretch;
  3746. gap: 25px;
  3747. flex-direction: column;
  3748. display: flex;
  3749. position: relative;
  3750. height: 100%;
  3751. width: 100%;
  3752. }
  3753. h2 {
  3754. color: #FFF;
  3755. font-size: 22px;
  3756. font-style: normal;
  3757. font-weight: 500;
  3758. line-height: 100%;
  3759. /* 22px */
  3760. text-transform: uppercase;
  3761. }
  3762. h4 {
  3763. color: #FFF;
  3764. font-size: 17px;
  3765. font-style: normal;
  3766. font-weight: 400;
  3767. line-height: 1.9;
  3768. }
  3769. }
  3770. }
  3771. }
  3772. }
  3773. }
  3774. }
  3775. }
  3776. /* 차량 상세 정보 스팩 */
  3777. .trim--spec--wrap {
  3778. width: 100%;
  3779. max-width: 1440px;
  3780. margin: 0 auto;
  3781. ul {
  3782. display: flex;
  3783. width: 100%;
  3784. align-items: flex-start;
  3785. justify-content: center;
  3786. padding: 40px 0px;
  3787. border-radius: 30px;
  3788. background: #F9F9F9;
  3789. li {
  3790. width: calc(100% / 3);
  3791. display: flex;
  3792. flex-direction: column;
  3793. justify-content: center;
  3794. align-items: center;
  3795. border-right: 1px solid #DEDEDE;
  3796. padding: 15px 20px;
  3797. &:last-child {
  3798. border-right: 0px;
  3799. }
  3800. >span {
  3801. color: #000;
  3802. text-align: center;
  3803. font-size: 16px;
  3804. font-style: normal;
  3805. font-weight: 400;
  3806. line-height: 100%;
  3807. /* 16px */
  3808. text-transform: uppercase;
  3809. }
  3810. >div {
  3811. color: #000;
  3812. font-size: 22px;
  3813. font-style: normal;
  3814. font-weight: 700;
  3815. text-align: center;
  3816. //line-height: 100%; /* 22px */
  3817. flex-wrap: wrap;
  3818. //text-transform: uppercase;
  3819. justify-content: center;
  3820. display: flex;
  3821. align-items: center;
  3822. margin-top: 25px;
  3823. >u {
  3824. text-decoration: none;
  3825. color: #000;
  3826. font-size: 16px;
  3827. font-style: normal;
  3828. font-weight: 500;
  3829. line-height: 1.3;
  3830. text-align: left;
  3831. width: 90px;
  3832. margin-right: 20px;
  3833. display: flex;
  3834. align-items: center;
  3835. }
  3836. >i {
  3837. margin: 0 5px;
  3838. text-transform: lowercase;
  3839. color: #000;
  3840. text-align: center;
  3841. font-size: 22px;
  3842. font-style: normal;
  3843. font-weight: 700;
  3844. line-height: 100%;
  3845. /* 22px */
  3846. }
  3847. span {
  3848. display: inline-flex;
  3849. width: 1px;
  3850. height: 18px;
  3851. background: #CACACA;
  3852. margin: 0 10px;
  3853. }
  3854. em {
  3855. font-style: normal;
  3856. color: #000;
  3857. font-size: 16px;
  3858. font-style: normal;
  3859. font-weight: 400;
  3860. line-height: 100%;
  3861. /* 16px */
  3862. text-transform: uppercase;
  3863. margin-left: 5px;
  3864. position: relative;
  3865. i {
  3866. font-style: normal;
  3867. color: #076FED;
  3868. font-size: 12px;
  3869. font-style: normal;
  3870. font-weight: 700;
  3871. line-height: 100%;
  3872. /* 12px */
  3873. text-transform: uppercase;
  3874. position: absolute;
  3875. top: -1px;
  3876. right: -10px;
  3877. }
  3878. }
  3879. }
  3880. }
  3881. }
  3882. }
  3883. .title--visual {
  3884. margin-top: 120px;
  3885. &.dark--type {
  3886. background: #FAFAFA;
  3887. margin-top: 0px;
  3888. padding: 80px 0px;
  3889. }
  3890. h2 {
  3891. color: #000;
  3892. text-align: center;
  3893. font-size: 45px;
  3894. font-style: normal;
  3895. font-weight: 500;
  3896. //line-height: 100%; /* 45px */
  3897. text-transform: capitalize;
  3898. span {
  3899. font-weight: 400;
  3900. }
  3901. &.side--title {
  3902. color: #111;
  3903. text-align: center;
  3904. font-size: 35px;
  3905. font-style: normal;
  3906. font-weight: 500;
  3907. //line-height: 100%; /* 30px */
  3908. text-transform: uppercase;
  3909. }
  3910. &.side--title2 {
  3911. color: #111;
  3912. text-align: center;
  3913. font-size: 25px;
  3914. font-style: normal;
  3915. font-weight: 500;
  3916. line-height: 100%;
  3917. /* 25px */
  3918. letter-spacing: -0.5px;
  3919. text-transform: uppercase;
  3920. }
  3921. &.side--title3 {
  3922. color: #000;
  3923. font-size: 30px;
  3924. font-weight: 700;
  3925. }
  3926. }
  3927. .middle--title {
  3928. color: #00095B;
  3929. text-align: center;
  3930. font-size: 20px;
  3931. font-style: normal;
  3932. font-weight: 500;
  3933. //line-height: 100%; /* 20px */
  3934. text-transform: uppercase;
  3935. margin-top: 40px;
  3936. }
  3937. .sub--title {
  3938. margin-top: 45px;
  3939. color: #222;
  3940. text-align: center;
  3941. font-size: 18px;
  3942. font-style: normal;
  3943. font-weight: 300;
  3944. line-height: 1.7;
  3945. // text-transform: uppercase;
  3946. }
  3947. .sub--title2 {
  3948. margin-top: 40px;
  3949. text-align: center;
  3950. color: #111;
  3951. font-size: 25px;
  3952. font-weight: 700;
  3953. @media(max-width: 1024px) {
  3954. margin-top: 20px;
  3955. font-size: 20px;
  3956. }
  3957. }
  3958. }
  3959. .models--visual--01 {
  3960. width: 100%;
  3961. max-width: 1440px;
  3962. margin: 0 auto;
  3963. overflow: hidden;
  3964. border-radius: 20px;
  3965. position: relative;
  3966. aspect-ratio: 1440 / 530; // 비율 유지
  3967. &.type--5 {
  3968. aspect-ratio: 1440 / 650; // 비율 유지
  3969. .thumb--wrap {
  3970. top: 0%;
  3971. }
  3972. }
  3973. &.type--4 {
  3974. aspect-ratio: 1440 / 530; // 비율 유지
  3975. .thumb--wrap {
  3976. top: 0%;
  3977. img {
  3978. width: 100%;
  3979. height: 100%;
  3980. max-height: 530px;
  3981. }
  3982. }
  3983. }
  3984. &.type--3 {
  3985. aspect-ratio: 1440 / 530; // 비율 유지
  3986. .thumb--wrap {
  3987. top: 0%;
  3988. img {
  3989. width: 100%;
  3990. height: auto;
  3991. }
  3992. }
  3993. }
  3994. &.type--2 {
  3995. //aspect-ratio: 1440 / 650; // 비율 유지
  3996. .thumb--wrap {
  3997. top: -20%;
  3998. img {
  3999. width: 100%;
  4000. height: auto;
  4001. }
  4002. }
  4003. }
  4004. .thumb--wrap {
  4005. width: 100%;
  4006. height: 150%; // 높이를 늘려서 여유 공간 확보
  4007. position: relative;
  4008. top: -50%; // 위로 이동
  4009. img {
  4010. object-fit: cover;
  4011. object-position: center top; // 이미지 상단 기준으로 정렬
  4012. width: 100%;
  4013. height: 100%;
  4014. }
  4015. }
  4016. }
  4017. .car--price--small--pic--wrap {
  4018. >div {
  4019. h2 {
  4020. color: #000;
  4021. text-align: center;
  4022. font-size: 30px;
  4023. font-style: normal;
  4024. font-weight: 500;
  4025. line-height: 1.4;
  4026. text-transform: capitalize;
  4027. }
  4028. .car--list--wrap {
  4029. padding-top: 60px;
  4030. ;
  4031. ul {
  4032. display: flex;
  4033. align-items: flex-start;
  4034. justify-content: center;
  4035. gap: 100px;
  4036. li {
  4037. display: flex;
  4038. flex-direction: column;
  4039. align-items: center;
  4040. justify-content: flex-start;
  4041. text-align: center;
  4042. .desc--wrap {
  4043. padding-top: 30px;
  4044. h2 {
  4045. color: #00095B;
  4046. text-align: center;
  4047. font-size: 22px;
  4048. font-style: normal;
  4049. font-weight: 500;
  4050. //line-height: 100%; /* 22px */
  4051. text-transform: capitalize;
  4052. .trim--desc {
  4053. color: #00095B;
  4054. font-weight: 500;
  4055. font-size: 16px;
  4056. }
  4057. &.black {
  4058. color: #22292B;
  4059. font-weight: 700;
  4060. }
  4061. }
  4062. .price--wrap {
  4063. color: #000;
  4064. text-align: center;
  4065. font-size: 18px;
  4066. font-style: normal;
  4067. font-weight: 300;
  4068. // line-height: 100%; /* 18px */
  4069. text-transform: uppercase;
  4070. position: relative;
  4071. display: flex;
  4072. flex-wrap: wrap;
  4073. justify-content: center;
  4074. align-items: center;
  4075. margin-top: 25px;
  4076. &.flex--column {
  4077. flex-direction: column;
  4078. }
  4079. em {
  4080. color: #000;
  4081. font-size: 18px;
  4082. font-style: normal;
  4083. font-weight: 500;
  4084. line-height: 100%;
  4085. text-transform: uppercase;
  4086. position: relative;
  4087. margin-left: 3px;
  4088. i {
  4089. position: absolute;
  4090. top: -1px;
  4091. right: -10px;
  4092. color: #1700F4;
  4093. text-align: center;
  4094. font-size: 12px;
  4095. font-style: normal;
  4096. font-weight: 500;
  4097. line-height: 100%;
  4098. /* 12px */
  4099. text-transform: uppercase;
  4100. }
  4101. }
  4102. }
  4103. }
  4104. }
  4105. }
  4106. }
  4107. }
  4108. }
  4109. // Lightbox Styles
  4110. .lightbox--overlay {
  4111. position: fixed;
  4112. top: 0;
  4113. left: 0;
  4114. right: 0;
  4115. bottom: 0;
  4116. background: rgba(0, 0, 0, 0.95);
  4117. z-index: 10000;
  4118. display: flex;
  4119. align-items: center;
  4120. justify-content: center;
  4121. padding: 20px;
  4122. .lightbox--close {
  4123. position: absolute;
  4124. top: 20px;
  4125. right: 20px;
  4126. width: 50px;
  4127. height: 50px;
  4128. background: rgba(255, 255, 255, 0.1);
  4129. border: 1px solid rgba(255, 255, 255, 0.3);
  4130. border-radius: 50%;
  4131. display: flex;
  4132. align-items: center;
  4133. justify-content: center;
  4134. cursor: pointer;
  4135. z-index: 10001;
  4136. transition: all 0.3s ease;
  4137. &:hover {
  4138. background: rgba(255, 255, 255, 0.2);
  4139. transform: rotate(90deg);
  4140. }
  4141. svg {
  4142. width: 32px;
  4143. height: 32px;
  4144. }
  4145. }
  4146. .lightbox--prev,
  4147. .lightbox--next {
  4148. position: absolute;
  4149. top: 50%;
  4150. transform: translateY(-50%);
  4151. width: 60px;
  4152. height: 60px;
  4153. background: rgba(255, 255, 255, 0.1);
  4154. border: 1px solid rgba(255, 255, 255, 0.3);
  4155. border-radius: 50%;
  4156. display: flex;
  4157. align-items: center;
  4158. justify-content: center;
  4159. cursor: pointer;
  4160. z-index: 10001;
  4161. transition: all 0.3s ease;
  4162. &:hover {
  4163. background: rgba(255, 255, 255, 0.2);
  4164. transform: translateY(-50%) scale(1.1);
  4165. }
  4166. &:disabled {
  4167. opacity: 0.3;
  4168. cursor: not-allowed;
  4169. &:hover {
  4170. transform: translateY(-50%);
  4171. }
  4172. }
  4173. svg {
  4174. width: 40px;
  4175. height: 40px;
  4176. }
  4177. }
  4178. .lightbox--prev {
  4179. left: 20px;
  4180. }
  4181. .lightbox--next {
  4182. right: 20px;
  4183. }
  4184. .lightbox--content {
  4185. width: 100%;
  4186. height: 100%;
  4187. display: flex;
  4188. align-items: center;
  4189. justify-content: center;
  4190. position: relative;
  4191. .lightbox--swiper {
  4192. width: 100%;
  4193. height: 100%;
  4194. max-width: 90vw;
  4195. max-height: 90vh;
  4196. .swiper-wrapper {
  4197. .swiper-slide {
  4198. display: flex;
  4199. align-items: center;
  4200. justify-content: center;
  4201. img {
  4202. max-width: 100%;
  4203. max-height: 90vh;
  4204. width: auto;
  4205. height: auto;
  4206. object-fit: contain;
  4207. border-radius: 8px;
  4208. }
  4209. }
  4210. }
  4211. }
  4212. .lightbox--info {
  4213. position: absolute;
  4214. bottom: 30px;
  4215. left: 50%;
  4216. transform: translateX(-50%);
  4217. z-index: 10001;
  4218. .lightbox--fraction {
  4219. display: flex;
  4220. align-items: center;
  4221. gap: 8px;
  4222. padding: 12px 24px;
  4223. background: rgba(0, 0, 0, 0.6);
  4224. border-radius: 30px;
  4225. color: #fff;
  4226. font-size: 18px;
  4227. font-weight: 600;
  4228. backdrop-filter: blur(10px);
  4229. }
  4230. }
  4231. }
  4232. }
  4233. // Lightbox Animation
  4234. .lightbox-fade-enter-active,
  4235. .lightbox-fade-leave-active {
  4236. transition: opacity 0.3s ease;
  4237. }
  4238. .lightbox-fade-enter-from,
  4239. .lightbox-fade-leave-to {
  4240. opacity: 0;
  4241. }
  4242. .caution--text--foot {
  4243. display: flex;
  4244. width: 100%;
  4245. gap: 10px;
  4246. background: #F7F7F7;
  4247. padding: 70px 0px;
  4248. .caution--text {
  4249. max-width: 1440px;
  4250. margin: 0 auto;
  4251. color: #000;
  4252. font-size: 17px;
  4253. font-style: normal;
  4254. font-weight: 300;
  4255. line-height: 1.8;
  4256. letter-spacing: -0.34px;
  4257. text-transform: uppercase;
  4258. }
  4259. }
  4260. // 반응형
  4261. @media (max-width: 768px) {
  4262. .swiper--banner--wrapper {
  4263. .swiper--banner--container {
  4264. .swiper--pagination--wrapper {
  4265. .swiper--progressbar {
  4266. width: 150px;
  4267. }
  4268. .swiper--fraction {
  4269. font-size: 14px;
  4270. }
  4271. }
  4272. .zoom--btn {
  4273. width: 40px;
  4274. height: 40px;
  4275. top: 10px;
  4276. right: 10px;
  4277. svg {
  4278. width: 20px;
  4279. height: 20px;
  4280. }
  4281. }
  4282. }
  4283. }
  4284. .lightbox--overlay {
  4285. .lightbox--prev,
  4286. .lightbox--next {
  4287. width: 50px;
  4288. height: 50px;
  4289. svg {
  4290. width: 30px;
  4291. height: 30px;
  4292. }
  4293. }
  4294. .lightbox--prev {
  4295. left: 10px;
  4296. }
  4297. .lightbox--next {
  4298. right: 10px;
  4299. }
  4300. .lightbox--content {
  4301. .lightbox--info {
  4302. bottom: 20px;
  4303. .lightbox--fraction {
  4304. font-size: 16px;
  4305. padding: 10px 20px;
  4306. }
  4307. }
  4308. }
  4309. }
  4310. }
  4311. .theme--wrap {
  4312. display: flex;
  4313. flex-direction: column;
  4314. margin: 0 auto;
  4315. max-width: 1440px;
  4316. align-items: center;
  4317. justify-content: center;
  4318. gap: 120px;
  4319. .theme--img {
  4320. >p {
  4321. margin-bottom: 35px;
  4322. color: #000;
  4323. font-size: 19px;
  4324. font-weight: 400;
  4325. text-align: center;
  4326. text-transform: capitalize;
  4327. @media(max-width: 500px) {
  4328. margin-bottom: 10px;
  4329. }
  4330. }
  4331. .img--wrap {
  4332. border-radius: 20px;
  4333. overflow: hidden;
  4334. img {
  4335. width: 100%;
  4336. }
  4337. }
  4338. }
  4339. .theme--top {
  4340. display: flex;
  4341. gap: 40px;
  4342. }
  4343. .theme--bot {
  4344. gap: 30px;
  4345. display: flex;
  4346. .theme--img {
  4347. border-radius: 20px;
  4348. overflow: hidden;
  4349. img {
  4350. width: 100%;
  4351. }
  4352. }
  4353. }
  4354. }
  4355. .gallery--wrap {
  4356. margin: 0 auto;
  4357. max-width: 1440px;
  4358. display: flex;
  4359. align-items: center;
  4360. justify-content: space-between;
  4361. .thumb--wrap {
  4362. // width:calc(50% - 20px);
  4363. width: 100%;
  4364. .slide--image {
  4365. padding-top: 0px !important;
  4366. }
  4367. }
  4368. }
  4369. .models--visual--grid {
  4370. width: 100%;
  4371. ul {
  4372. max-width: 1440px;
  4373. margin: 0 auto;
  4374. display: flex;
  4375. align-items: flex-start;
  4376. justify-content: center;
  4377. gap: 30px;
  4378. li {
  4379. width: calc((100% - 60px) / 3);
  4380. .desc--wrap {
  4381. padding-top: 50px;
  4382. h2 {
  4383. color: #111;
  4384. text-align: center;
  4385. font-size: 25px;
  4386. font-style: normal;
  4387. font-weight: 500;
  4388. line-height: 1.3;
  4389. //text-transform: uppercase;
  4390. }
  4391. .captions {
  4392. color: #222;
  4393. text-align: center;
  4394. font-size: 17px;
  4395. font-style: normal;
  4396. font-weight: 300;
  4397. line-height: 1.7;
  4398. //text-transform: uppercase;
  4399. margin-top: 40px;
  4400. }
  4401. }
  4402. .thumb--wrap {
  4403. position: relative;
  4404. aspect-ratio: 46/35;
  4405. overflow: hidden;
  4406. border-radius: 20px;
  4407. img {
  4408. width: 100%;
  4409. height: 100%;
  4410. position: absolute;
  4411. top: 50%;
  4412. transform: translateY(-50%);
  4413. object-fit: cover;
  4414. }
  4415. }
  4416. }
  4417. }
  4418. }
  4419. .ovwner--wrapper {
  4420. width: 100%;
  4421. max-width: 1440px;
  4422. margin: 0 auto;
  4423. padding-bottom: 120px;
  4424. &.type--2 {
  4425. max-width: 100%;
  4426. .inner--wrap {
  4427. max-width: 1440px;
  4428. margin: 0 auto;
  4429. }
  4430. }
  4431. .title--visual {
  4432. text-align: center;
  4433. .desc {
  4434. color: #333;
  4435. text-align: center;
  4436. font-size: 18px;
  4437. font-style: normal;
  4438. font-weight: 300;
  4439. line-height: 1.7;
  4440. /* 18px */
  4441. letter-spacing: -0.36px;
  4442. text-transform: uppercase;
  4443. &.type2 {
  4444. color: #00095b;
  4445. margin-top: 50px;
  4446. font-weight: 500;
  4447. font-size: 22px;
  4448. letter-spacing: -0.44px;
  4449. }
  4450. }
  4451. }
  4452. .nav--desc--wrap {
  4453. margin-top: 80px;
  4454. margin-bottom: 240px;
  4455. @media(max-width: 1024px) {
  4456. margin-bottom: 120px;
  4457. }
  4458. p {
  4459. color: #333;
  4460. font-size: 22px;
  4461. font-weight: 400;
  4462. @media(max-width: 1024px) {
  4463. font-size: 18px;
  4464. }
  4465. b {
  4466. font-weight: 700;
  4467. color: #00095b;
  4468. }
  4469. }
  4470. }
  4471. .contact--wrap {
  4472. display: flex;
  4473. justify-content: space-between;
  4474. gap: 50px;
  4475. text-align: center;
  4476. margin-top: 100px;
  4477. .contact {
  4478. background-color: #fafafa;
  4479. padding: 60px 20px 80px;
  4480. width: 33%;
  4481. display: flex;
  4482. flex-direction: column;
  4483. align-items: center;
  4484. .quick--more {
  4485. border-radius: 10px;
  4486. border: 1px solid rgba(0, 9, 91, 0.50);
  4487. display: inline-flex;
  4488. padding: 20px;
  4489. justify-content: center;
  4490. align-items: center;
  4491. gap: 10px;
  4492. color: #00095B;
  4493. text-align: center;
  4494. font-size: 14px;
  4495. font-style: normal;
  4496. font-weight: 500;
  4497. line-height: 100%;
  4498. /* 14px */
  4499. letter-spacing: -0.28px;
  4500. text-transform: uppercase;
  4501. }
  4502. .mailto--type {
  4503. font-size: 20px;
  4504. font-weight: 400;
  4505. color: #00095B;
  4506. @media(max-width: 768px) {
  4507. font-size: 18px;
  4508. }
  4509. }
  4510. .ico {
  4511. margin-bottom: 40px;
  4512. width: 100px;
  4513. height: 100px;
  4514. background-color: #f3f3f3;
  4515. border-radius: 50%;
  4516. background-image: url(/img/ico--contact1.svg);
  4517. }
  4518. &:nth-of-type(2) {
  4519. .ico {
  4520. background-image: url(/img/ico--contact2.svg);
  4521. }
  4522. }
  4523. &:nth-of-type(3) {
  4524. .ico {
  4525. background-image: url(/img/ico--contact4.svg);
  4526. }
  4527. }
  4528. }
  4529. h3 {
  4530. color: #000;
  4531. font-size: 18px;
  4532. letter-spacing: -0.36px;
  4533. margin-bottom: 30px;
  4534. font-weight: 500;
  4535. }
  4536. span {
  4537. margin-bottom: 30px;
  4538. font-size: 20px;
  4539. font-weight: 500;
  4540. letter-spacing: -0.4px;
  4541. color: #00095b;
  4542. }
  4543. p {
  4544. color: #333;
  4545. font-size: 16px;
  4546. font-weight: 400;
  4547. letter-spacing: -0.32px;
  4548. }
  4549. }
  4550. .contact--wrap2 {
  4551. margin-top: 100px;
  4552. display: flex;
  4553. gap: 50px;
  4554. .contact {
  4555. width: 33%;
  4556. display: flex;
  4557. padding: 60px 35px;
  4558. align-items: center;
  4559. background-color: #fafafa;
  4560. gap: 30px;
  4561. border-radius: 30px;
  4562. .ico {
  4563. min-width: 120px;
  4564. width: 120px;
  4565. height: 120px;
  4566. background-color: #fff;
  4567. border-radius: 50%;
  4568. background-image: url(/img/owner/ico--contact1.svg);
  4569. background-repeat: no-repeat;
  4570. background-position: center;
  4571. background-size: 55px 55px;
  4572. }
  4573. &:nth-child(2) {
  4574. .ico {
  4575. background-image: url(/img/owner/ico--contact2.svg);
  4576. }
  4577. }
  4578. &:nth-child(3) {
  4579. .ico {
  4580. background-image: url(/img/owner/ico--contact4.svg);
  4581. }
  4582. }
  4583. .info--wrap {
  4584. display: flex;
  4585. flex-direction: column;
  4586. gap: 20px;
  4587. .quick--more {
  4588. border-radius: 10px;
  4589. border: 1px solid rgba(34, 41, 43, 0.50);
  4590. display: inline-flex;
  4591. padding: 20px 25px;
  4592. justify-content: center;
  4593. align-items: center;
  4594. gap: 10px;
  4595. color: #22292B;
  4596. text-align: center;
  4597. font-size: 14px;
  4598. font-style: normal;
  4599. font-weight: 500;
  4600. line-height: 100%;
  4601. /* 14px */
  4602. letter-spacing: -0.28px;
  4603. text-transform: uppercase;
  4604. }
  4605. .mailto--type {
  4606. font-size: 16px;
  4607. color: #222;
  4608. }
  4609. >h3 {
  4610. color: #111;
  4611. font-size: 17px;
  4612. font-weight: 400;
  4613. line-height: 1;
  4614. }
  4615. >span {
  4616. font-size: 28px;
  4617. font-weight: 700;
  4618. color: #111;
  4619. line-height: 1;
  4620. }
  4621. >p {
  4622. color: #444;
  4623. font-size: 17px;
  4624. font-weight: 400;
  4625. }
  4626. }
  4627. }
  4628. }
  4629. .text--tab--layout {
  4630. position: sticky;
  4631. top: 0px;
  4632. z-index: 20;
  4633. ul {
  4634. display: flex;
  4635. align-items: center;
  4636. overflow-x: auto;
  4637. justify-content: flex-start;
  4638. gap: 15px;
  4639. li {
  4640. cursor: pointer;
  4641. &.actv {
  4642. a {
  4643. background-color: #000;
  4644. border-color: #000;
  4645. color: #fff;
  4646. }
  4647. }
  4648. a {
  4649. border-radius: 100px;
  4650. border: 1px solid #E8E8E8;
  4651. background: #FFF;
  4652. display: flex;
  4653. padding: 22px 30px;
  4654. align-items: center;
  4655. justify-content: center;
  4656. color: #444;
  4657. white-space: nowrap;
  4658. font-size: 16px;
  4659. font-style: normal;
  4660. font-weight: 400;
  4661. line-height: 100%;
  4662. /* 16px */
  4663. letter-spacing: -0.32px;
  4664. text-transform: uppercase;
  4665. }
  4666. }
  4667. }
  4668. }
  4669. .owner--inner--content {
  4670. .thumb {
  4671. img {
  4672. width: 100%;
  4673. object-fit: contain;
  4674. }
  4675. }
  4676. .desc--wrapper {
  4677. >h2 {
  4678. color: #111;
  4679. font-size: 30px;
  4680. font-style: normal;
  4681. font-weight: 500;
  4682. letter-spacing: -0.6px;
  4683. text-transform: uppercase;
  4684. }
  4685. >h3 {
  4686. color: #111;
  4687. font-size: 19px;
  4688. font-weight: 500;
  4689. letter-spacing: -0.38px;
  4690. }
  4691. .captions {
  4692. padding-top: 40px;
  4693. color: #333;
  4694. font-size: 18px;
  4695. font-style: normal;
  4696. font-weight: 300;
  4697. line-height: 1.7;
  4698. /* 18px */
  4699. letter-spacing: -0.36px;
  4700. text-transform: uppercase;
  4701. &.fz--17 {
  4702. font-size: 17px;
  4703. }
  4704. >h3 {
  4705. color: #111;
  4706. font-size: 18px;
  4707. font-style: normal;
  4708. font-weight: 400;
  4709. letter-spacing: -0.36px;
  4710. text-transform: uppercase;
  4711. }
  4712. >ul {
  4713. padding-top: 60px;
  4714. li {
  4715. position: relative;
  4716. color: #111;
  4717. font-size: 17px;
  4718. font-style: normal;
  4719. font-weight: 400;
  4720. //line-height: 100%; /* 17px */
  4721. line-height: 1.4;
  4722. letter-spacing: -0.34px;
  4723. text-transform: uppercase;
  4724. padding-left: 20px;
  4725. margin-bottom: 15px;
  4726. &:before {
  4727. content: '';
  4728. display: block;
  4729. width: 3px;
  4730. height: 3px;
  4731. background: #111;
  4732. position: absolute;
  4733. left: 10px;
  4734. top: 9px;
  4735. }
  4736. }
  4737. }
  4738. .add--text {
  4739. color: #333;
  4740. font-size: 18px;
  4741. font-style: normal;
  4742. font-weight: 300;
  4743. letter-spacing: -0.36px;
  4744. text-transform: uppercase;
  4745. padding-top: 60px;
  4746. }
  4747. }
  4748. }
  4749. }
  4750. .owner--part--wrap {
  4751. display: flex;
  4752. flex-direction: column;
  4753. margin-top: 150px;
  4754. gap: 50px;
  4755. .owner--part {
  4756. padding: 120px 100px;
  4757. background-color: #252525;
  4758. display: flex;
  4759. align-items: center;
  4760. gap: 100px;
  4761. .ico {
  4762. width: 200px;
  4763. background-size: 70px 70px;
  4764. min-width: 200px;
  4765. border-radius: 100px;
  4766. background-color: #fff;
  4767. height: 200px;
  4768. background-image: url(/img/owner/ico--parts1.svg);
  4769. }
  4770. &:nth-of-type(2) {
  4771. .ico {
  4772. background-image: url(/img/owner/ico--parts2.svg);
  4773. }
  4774. }
  4775. .part--content {
  4776. >h3 {
  4777. margin-bottom: 40px;
  4778. color: #fff;
  4779. font-size: 30px;
  4780. font-weight: 500;
  4781. letter-spacing: -0.6px;
  4782. }
  4783. >p {
  4784. color: #fff;
  4785. font-size: 17px;
  4786. font-weight: 300;
  4787. letter-spacing: -0.34px;
  4788. line-height: 1.7;
  4789. }
  4790. }
  4791. }
  4792. }
  4793. }
  4794. .nav--dis--wrap {
  4795. &.active {
  4796. .dis--cont {
  4797. max-height: 1000px;
  4798. }
  4799. .dis--btn {
  4800. .ico {
  4801. transform: rotate(0deg);
  4802. }
  4803. }
  4804. }
  4805. .dis--btn {
  4806. border-top: 1px solid #D3D3D3;
  4807. border-bottom: 1px solid #D3D3D3;
  4808. text-align: center;
  4809. display: flex;
  4810. align-items: center;
  4811. justify-content: center;
  4812. gap: 15px;
  4813. color: #076fed;
  4814. font-size: 16px;
  4815. cursor: pointer;
  4816. font-weight: 500;
  4817. text-transform: uppercase;
  4818. padding: 30px;
  4819. line-height: 1;
  4820. .ico {
  4821. width: 20px;
  4822. height: 20px;
  4823. transition: all 0.3s;
  4824. transform: rotate(180deg);
  4825. background-image: url(/img/owner/ico--arrow--blue.svg);
  4826. }
  4827. }
  4828. .dis--cont {
  4829. background-color: #f9f9f9;
  4830. color: #111;
  4831. max-height: 0;
  4832. overflow: hidden;
  4833. transition: max-height 0.3s;
  4834. font-size: 16px;
  4835. font-weight: 300;
  4836. p {
  4837. padding: 60px 0;
  4838. }
  4839. }
  4840. }
  4841. .consumable--parts--wrap {
  4842. .prm--service {
  4843. >h2 {
  4844. color: #111;
  4845. text-align: center;
  4846. font-size: 30px;
  4847. font-style: normal;
  4848. margin-bottom: 40px;
  4849. font-weight: 500;
  4850. //line-height: 100%; /* 30px */
  4851. letter-spacing: -0.6px;
  4852. text-transform: capitalize;
  4853. }
  4854. .sub--title {
  4855. color: #333;
  4856. text-align: center;
  4857. font-size: 18px;
  4858. font-style: normal;
  4859. font-weight: 300;
  4860. line-height: 1.7;
  4861. text-transform: uppercase;
  4862. }
  4863. .sub--list {
  4864. gap: 15px;
  4865. flex-direction: column;
  4866. align-items: center;
  4867. max-width: 1024px;
  4868. margin: 0 auto 70px;
  4869. >li {
  4870. width: 100%;
  4871. text-align: left;
  4872. color: #111;
  4873. align-items: start;
  4874. font-size: 17px;
  4875. font-weight: 300;
  4876. letter-spacing: -0.34px;
  4877. position: relative;
  4878. padding-left: 15px;
  4879. &::before {
  4880. position: absolute;
  4881. top: 10px;
  4882. left: 0;
  4883. background-color: #111;
  4884. content: '';
  4885. width: 3px;
  4886. height: 3px;
  4887. display: inline-block;
  4888. }
  4889. }
  4890. }
  4891. >ul {
  4892. display: flex;
  4893. align-items: flex-start;
  4894. justify-content: center;
  4895. padding-top: 70px;
  4896. >li {
  4897. width: calc(100% / 3);
  4898. display: flex;
  4899. align-items: center;
  4900. justify-content: center;
  4901. flex-direction: column;
  4902. .thumb {
  4903. width: 150px;
  4904. height: 150px;
  4905. display: flex;
  4906. align-items: center;
  4907. justify-content: center;
  4908. border-radius: 1000px;
  4909. background: #F6F6F6;
  4910. }
  4911. .captions {
  4912. color: #000;
  4913. text-align: center;
  4914. font-size: 17px;
  4915. font-style: normal;
  4916. font-weight: 300;
  4917. line-height: 1.7;
  4918. padding-top: 35px;
  4919. text-transform: uppercase;
  4920. }
  4921. }
  4922. }
  4923. }
  4924. .dbl--contents {
  4925. >ul {
  4926. display: flex;
  4927. align-items: flex-start;
  4928. justify-content: center;
  4929. gap: 50px;
  4930. li {
  4931. width: calc(50% - 25px);
  4932. .thumb {
  4933. overflow: hidden;
  4934. border-radius: 30px;
  4935. }
  4936. .desc--wrap {
  4937. h2 {
  4938. text-align: left;
  4939. color: #000;
  4940. font-size: 20px;
  4941. font-style: normal;
  4942. font-weight: 500;
  4943. //line-height: 100%; /* 20px */
  4944. text-transform: uppercase;
  4945. }
  4946. >ul {
  4947. width: 100%;
  4948. padding-top: 30px;
  4949. li {
  4950. position: relative;
  4951. text-align: left;
  4952. padding-left: 20px;
  4953. width: 100%;
  4954. margin-bottom: 10px;
  4955. color: #222;
  4956. font-size: 17px;
  4957. font-style: normal;
  4958. font-weight: 300;
  4959. line-height: 1.7;
  4960. /* 17px */
  4961. text-transform: uppercase;
  4962. &:before {
  4963. content: '';
  4964. display: block;
  4965. width: 3px;
  4966. height: 3px;
  4967. background-color: #000;
  4968. position: absolute;
  4969. left: 10px;
  4970. top: 12px;
  4971. }
  4972. }
  4973. }
  4974. }
  4975. }
  4976. }
  4977. }
  4978. .essential--maintenace--wrap {
  4979. background: #FAFAFA;
  4980. .inner--wrap {
  4981. .title--visual {
  4982. >h2 {
  4983. color: #111;
  4984. text-align: center;
  4985. font-size: 30px;
  4986. font-style: normal;
  4987. font-weight: 500;
  4988. //line-height: 100%; /* 30px */
  4989. letter-spacing: -0.6px;
  4990. text-transform: capitalize;
  4991. }
  4992. >.captions {
  4993. color: #333;
  4994. text-align: center;
  4995. font-size: 18px;
  4996. font-style: normal;
  4997. font-weight: 300;
  4998. line-height: 1.7;
  4999. text-transform: uppercase;
  5000. }
  5001. }
  5002. }
  5003. .columb--thume--3 {
  5004. >ul {
  5005. display: flex;
  5006. align-items: flex-start;
  5007. justify-content: center;
  5008. gap: 50px;
  5009. >li {
  5010. width: calc((100% - 100px) / 3);
  5011. text-align: center;
  5012. .thumb {
  5013. overflow: hidden;
  5014. border-radius: 30px;
  5015. }
  5016. .captions {
  5017. padding-top: 30px;
  5018. color: #000;
  5019. text-align: center;
  5020. font-size: 18px;
  5021. font-style: normal;
  5022. font-weight: 500;
  5023. //line-height: 100%; /* 18px */
  5024. text-transform: uppercase;
  5025. }
  5026. }
  5027. }
  5028. }
  5029. .column--3 {
  5030. >ul {
  5031. display: flex;
  5032. align-items: flex-start;
  5033. justify-content: center;
  5034. >li {
  5035. width: calc(100% / 3);
  5036. display: flex;
  5037. align-items: center;
  5038. justify-content: center;
  5039. flex-direction: column;
  5040. .thumb {
  5041. width: 150px;
  5042. height: 150px;
  5043. display: flex;
  5044. align-items: center;
  5045. justify-content: center;
  5046. border-radius: 1000px;
  5047. background: #F3F3F3;
  5048. }
  5049. .caption {
  5050. padding-top: 35px;
  5051. color: #000;
  5052. text-align: center;
  5053. font-size: 17px;
  5054. font-style: normal;
  5055. font-weight: 300;
  5056. //line-height: 100%; /* 17px */
  5057. }
  5058. }
  5059. }
  5060. }
  5061. }
  5062. .used--essential--wrap {
  5063. width: 100%;
  5064. margin: 0 auto;
  5065. max-width: 1440px;
  5066. padding-bottom: 150px;
  5067. .title--visual {
  5068. >h2 {
  5069. color: #111;
  5070. text-align: center;
  5071. font-size: 30px;
  5072. font-style: normal;
  5073. font-weight: 500;
  5074. //line-height: 100%; /* 30px */
  5075. letter-spacing: -0.6px;
  5076. text-transform: capitalize;
  5077. }
  5078. .captions {
  5079. color: #333;
  5080. text-align: center;
  5081. font-size: 18px;
  5082. font-style: normal;
  5083. font-weight: 300;
  5084. line-height: 1.7;
  5085. /* 18px */
  5086. text-transform: uppercase;
  5087. padding-top: 40px;
  5088. }
  5089. }
  5090. .column--3 {
  5091. padding-top: 70px;
  5092. >ul {
  5093. display: flex;
  5094. align-items: flex-start;
  5095. justify-content: center;
  5096. >li {
  5097. display: flex;
  5098. align-items: center;
  5099. justify-content: center;
  5100. flex-direction: column;
  5101. text-align: center;
  5102. width: calc(100% / 3);
  5103. .thumb {
  5104. width: 150px;
  5105. height: 150px;
  5106. border-radius: 1000px;
  5107. background: #F6F6F6;
  5108. display: flex;
  5109. align-items: center;
  5110. justify-content: center;
  5111. }
  5112. .caption {
  5113. padding-top: 35px;
  5114. color: #000;
  5115. text-align: center;
  5116. font-size: 17px;
  5117. font-style: normal;
  5118. font-weight: 300;
  5119. line-height: 1.7;
  5120. /* 17px */
  5121. text-transform: uppercase;
  5122. }
  5123. }
  5124. }
  5125. }
  5126. }
  5127. .column--4 {
  5128. >h2 {
  5129. color: #111;
  5130. text-align: center;
  5131. font-size: 30px;
  5132. font-style: normal;
  5133. font-weight: 700;
  5134. //line-height: 100%; /* 30px */
  5135. text-transform: uppercase;
  5136. }
  5137. >ul {
  5138. padding-top: 70px;
  5139. display: flex;
  5140. gap: 20px;
  5141. li {
  5142. width: calc((100% - 60px) / 3);
  5143. border-radius: 30px;
  5144. border: 1px solid #E0E0E0;
  5145. background: #FFF;
  5146. padding: 45px;
  5147. .thumb {
  5148. width: 56px;
  5149. height: 56px;
  5150. }
  5151. >h2 {
  5152. padding-top: 50px;
  5153. color: #000;
  5154. font-size: 20px;
  5155. font-style: normal;
  5156. font-weight: 500;
  5157. line-height: 1.7;
  5158. /* 20px */
  5159. letter-spacing: -0.4px;
  5160. text-transform: uppercase;
  5161. margin-bottom: 30px;
  5162. }
  5163. >div {
  5164. color: #000;
  5165. font-size: 16px;
  5166. font-style: normal;
  5167. font-weight: 300;
  5168. line-height: 1.7;
  5169. /* 16px */
  5170. letter-spacing: -0.32px;
  5171. text-transform: uppercase;
  5172. }
  5173. }
  5174. }
  5175. }
  5176. }
  5177. .service--card--wrap {
  5178. display: flex;
  5179. gap: 100px;
  5180. align-items: center;
  5181. .img--wrap {
  5182. width: 50%;
  5183. }
  5184. .desc--wrap {
  5185. width: 50%;
  5186. >h3 {
  5187. margin-bottom: 25px;
  5188. color: #000;
  5189. font-size: 30px;
  5190. font-weight: 500;
  5191. }
  5192. >p {
  5193. color: #000;
  5194. font-size: 18px;
  5195. font-weight: 400;
  5196. letter-spacing: -0.36px;
  5197. margin-bottom: 25px;
  5198. }
  5199. >ul {
  5200. display: flex;
  5201. flex-direction: column;
  5202. gap: 25px;
  5203. >li {
  5204. color: #222;
  5205. font-size: 17px;
  5206. font-weight: 300;
  5207. position: relative;
  5208. padding-left: 13px;
  5209. &::before {
  5210. top: 10px;
  5211. left: 0;
  5212. position: absolute;
  5213. content: '';
  5214. width: 3px;
  5215. height: 3px;
  5216. background-color: #595959;
  5217. display: inline-block;
  5218. }
  5219. }
  5220. }
  5221. }
  5222. }
  5223. .dbl--info--cont {
  5224. >ul {
  5225. display: flex;
  5226. gap: 50px;
  5227. >li {
  5228. background: #FAFAFA;
  5229. border-radius: 30px;
  5230. width: 100%;
  5231. max-width: calc((100% - 25px) / 2);
  5232. padding: 50px 70px;
  5233. display: flex;
  5234. align-items: center;
  5235. gap: 50px;
  5236. .thumb {
  5237. width: 100px;
  5238. height: 100px;
  5239. min-width: 100px;
  5240. border-radius: 100px;
  5241. background: #0AF;
  5242. display: inline-flex;
  5243. align-items: center;
  5244. justify-content: center;
  5245. }
  5246. .desc {
  5247. >h2 {
  5248. color: #111;
  5249. font-size: 20px;
  5250. font-style: normal;
  5251. font-weight: 700;
  5252. //line-height: 100%; /* 20px */
  5253. letter-spacing: -0.4px;
  5254. text-transform: uppercase;
  5255. margin-bottom: 24px;
  5256. }
  5257. .phone {
  5258. color: #00095B;
  5259. font-size: 20px;
  5260. font-style: normal;
  5261. font-weight: 700;
  5262. //line-height: 100%; /* 20px */
  5263. letter-spacing: -0.4px;
  5264. text-transform: uppercase;
  5265. }
  5266. }
  5267. }
  5268. }
  5269. }
  5270. .tfs--drop--menus {
  5271. >ul {
  5272. >li {
  5273. .title {
  5274. margin-top: -1px;
  5275. width: 100%;
  5276. display: flex;
  5277. align-items: center;
  5278. justify-content: flex-start;
  5279. font-weight: 700;
  5280. border-top: 1px solid #DBDBDB;
  5281. border-bottom: 1px solid #DBDBDB;
  5282. background: #F8F8F8;
  5283. padding: 32px 25px;
  5284. position: relative;
  5285. cursor: pointer;
  5286. &:after {
  5287. content: '';
  5288. display: block;
  5289. width: 24px;
  5290. height: 24px;
  5291. background: url(/img/ico--chv--down.svg) no-repeat center;
  5292. position: absolute;
  5293. top: 50%;
  5294. transform: translateY(-50%) rotate(180deg);
  5295. right: 25px;
  5296. }
  5297. }
  5298. &.open {
  5299. .title {
  5300. &:after {
  5301. transform: translateY(-50%) rotate(0deg);
  5302. }
  5303. }
  5304. .drop--contents {
  5305. display: block;
  5306. }
  5307. }
  5308. .drop--contents {
  5309. padding: 50px 25px;
  5310. display: none;
  5311. &.type2 {
  5312. padding: 50px;
  5313. }
  5314. h2 {
  5315. color: #111;
  5316. font-size: 18px;
  5317. font-style: normal;
  5318. font-weight: 500;
  5319. line-height: 100%;
  5320. /* 18px */
  5321. letter-spacing: -0.36px;
  5322. text-transform: uppercase;
  5323. margin-bottom: 20px;
  5324. position: relative;
  5325. padding-left: 20px;
  5326. &::before {
  5327. content: '';
  5328. display: block;
  5329. width: 3px;
  5330. height: 3px;
  5331. background-color: #111;
  5332. position: absolute;
  5333. top: 7px;
  5334. left: 10px;
  5335. }
  5336. }
  5337. h3 {
  5338. color: #111;
  5339. font-size: 18px;
  5340. font-style: normal;
  5341. font-weight: 500;
  5342. //line-height: 100%; /* 18px */
  5343. letter-spacing: -0.36px;
  5344. text-transform: uppercase;
  5345. margin-bottom: 20px;
  5346. }
  5347. ul {
  5348. >li {
  5349. color: #333;
  5350. font-size: 17px;
  5351. font-style: normal;
  5352. font-weight: 300;
  5353. //line-height: 100%; /* 17px */
  5354. letter-spacing: -0.34px;
  5355. text-transform: lowercase;
  5356. margin-bottom: 20px;
  5357. position: relative;
  5358. padding-left: 20px;
  5359. &:before {
  5360. content: '';
  5361. display: block;
  5362. width: 3px;
  5363. height: 3px;
  5364. background-color: #333;
  5365. position: absolute;
  5366. top: 10px;
  5367. left: 10px;
  5368. }
  5369. &:last-child {
  5370. margin-bottom: 0px;
  5371. }
  5372. }
  5373. }
  5374. div {
  5375. color: #333;
  5376. font-size: 17px;
  5377. font-style: normal;
  5378. font-weight: 300;
  5379. line-height: 1.7;
  5380. /* 17px */
  5381. letter-spacing: -0.34px;
  5382. text-transform: lowercase;
  5383. margin-bottom: 55px;
  5384. padding-left: 20px;
  5385. &.solo {
  5386. margin-bottom: 0px;
  5387. padding-left: 0px;
  5388. }
  5389. }
  5390. p {
  5391. color: #333;
  5392. font-size: 17px;
  5393. font-style: normal;
  5394. font-weight: 300;
  5395. line-height: 1.7;
  5396. letter-spacing: -0.34px;
  5397. text-transform: lowercase;
  5398. position: relative;
  5399. padding-left: 25px;
  5400. &:before {
  5401. content: '*';
  5402. display: block;
  5403. position: absolute;
  5404. left: 10px;
  5405. top: 2px;
  5406. }
  5407. }
  5408. .drop--part--wrap {
  5409. padding: 0;
  5410. margin-bottom: 0;
  5411. align-items: center;
  5412. display: flex;
  5413. gap: 55px;
  5414. .img--wrap {
  5415. width: 258px;
  5416. min-width: 258px;
  5417. padding: 0;
  5418. margin: 0;
  5419. }
  5420. .desc--wrap {
  5421. padding: 0;
  5422. margin: 0;
  5423. ul {
  5424. li {
  5425. color: #111;
  5426. line-height: 1.7;
  5427. &::before {
  5428. top: 12px;
  5429. }
  5430. }
  5431. }
  5432. }
  5433. }
  5434. }
  5435. }
  5436. }
  5437. }
  5438. /* 버튼 리스트 */
  5439. .location--btn {
  5440. color: #111;
  5441. font-size: 15px;
  5442. font-style: normal;
  5443. font-weight: 500;
  5444. line-height: 100%;
  5445. /* 15px */
  5446. letter-spacing: -0.3px;
  5447. text-transform: uppercase;
  5448. border-radius: 10px;
  5449. border: 1px solid rgba(0, 0, 0, 0.50);
  5450. display: inline-flex;
  5451. align-items: center;
  5452. border-radius: 10px;
  5453. justify-content: center;
  5454. padding: 13px 18px;
  5455. gap: 7px;
  5456. }
  5457. .sticky--banner {
  5458. position: sticky;
  5459. top: 0px;
  5460. z-index: 1;
  5461. }
  5462. .outer--wrapper {
  5463. position: relative;
  5464. z-index: 2;
  5465. background-color: #fff;
  5466. padding-top: 100px;
  5467. @media (max-width: 768px) {
  5468. padding-top: 50px;
  5469. }
  5470. }
  5471. .about--wrap {
  5472. .visual--banner--02 {
  5473. .thumb--wrap {
  5474. width: 100%;
  5475. display: flex;
  5476. align-items: flex-start;
  5477. gap: 50px;
  5478. row-gap: 120px;
  5479. flex-wrap: wrap;
  5480. @media (max-width: 768px) {
  5481. row-gap: 50px;
  5482. }
  5483. .thumb--item {
  5484. width: calc(50% - 25px);
  5485. @media (max-width: 768px) {
  5486. width: 100%;
  5487. }
  5488. .desc {
  5489. .t--title {
  5490. color: #000;
  5491. font-size: 20px;
  5492. font-style: normal;
  5493. font-weight: 500;
  5494. line-height: 100%;
  5495. /* 20px */
  5496. text-transform: uppercase;
  5497. padding-top: 30px;
  5498. }
  5499. .captions {
  5500. margin-top: 30px;
  5501. color: #222;
  5502. font-size: 17px;
  5503. font-style: normal;
  5504. font-weight: 300;
  5505. line-height: 1.7;
  5506. text-transform: uppercase;
  5507. }
  5508. }
  5509. .thumb {
  5510. border-radius: 30px;
  5511. overflow: hidden;
  5512. width: 100%;
  5513. img {
  5514. width: 100%;
  5515. height: 100%;
  5516. object-fit: cover;
  5517. }
  5518. }
  5519. }
  5520. }
  5521. }
  5522. .our--vision {
  5523. background: #FAFAFA;
  5524. padding-bottom: 150px;
  5525. @media (max-width:768px) {
  5526. padding-bottom: 50px;
  5527. }
  5528. .vision--wrap {
  5529. padding-top: 70px;
  5530. >ul {
  5531. max-width: 1440px;
  5532. display: flex;
  5533. margin: 0 auto;
  5534. gap: 50px;
  5535. row-gap: 50px;
  5536. li {
  5537. width: calc((100% - 150px) / 4);
  5538. @media(max-width:1440px) {
  5539. width: calc((100% - 50px) / 2);
  5540. }
  5541. text-align: center;
  5542. display: flex;
  5543. flex-direction: column;
  5544. justify-content: flex-start;
  5545. align-items: center;
  5546. .thumb {
  5547. border-radius: 1000px;
  5548. background: #F3F3F3;
  5549. width: 150px;
  5550. height: 150px;
  5551. display: flex;
  5552. align-items: center;
  5553. justify-content: center;
  5554. }
  5555. .desc {
  5556. padding-top: 40px;
  5557. h2 {
  5558. color: #000;
  5559. text-align: center;
  5560. font-size: 19px;
  5561. font-style: normal;
  5562. font-weight: 500;
  5563. line-height: 100%;
  5564. /* 19px */
  5565. text-transform: uppercase;
  5566. }
  5567. .captions {
  5568. color: #333;
  5569. text-align: center;
  5570. font-size: 16px;
  5571. font-style: normal;
  5572. font-weight: 300;
  5573. line-height: 1.7;
  5574. padding-top: 30px;
  5575. }
  5576. }
  5577. }
  5578. }
  5579. }
  5580. }
  5581. .strong--business {
  5582. text-align: center;
  5583. padding-bottom: 150px;
  5584. @media(max-width:768px) {
  5585. padding-bottom: 50px;
  5586. }
  5587. .invest--more--btn {
  5588. color: #FFF;
  5589. font-size: 16px;
  5590. font-style: normal;
  5591. font-weight: 500;
  5592. line-height: 100%;
  5593. /* 16px */
  5594. text-transform: capitalize;
  5595. display: inline-flex;
  5596. padding: 23px 40px;
  5597. justify-content: center;
  5598. align-items: center;
  5599. gap: 10px;
  5600. border-radius: 100px;
  5601. background: #0AF;
  5602. margin-top: 70px;
  5603. @media(max-width:768px) {
  5604. margin-top: 35px;
  5605. }
  5606. }
  5607. }
  5608. }
  5609. .grid--list--items {
  5610. display: flex;
  5611. flex-wrap: wrap;
  5612. gap: 60px;
  5613. .grid--items {
  5614. width: calc((100% - 120px) / 3);
  5615. border: 1px solid #E5E5E5;
  5616. background: #FFF;
  5617. display: flex;
  5618. padding: 70px 50px;
  5619. flex-direction: column;
  5620. align-items: center;
  5621. gap: 40px;
  5622. align-self: stretch;
  5623. .thumb {
  5624. border-radius: 1000px;
  5625. background: #F3F3F3;
  5626. width: 110px;
  5627. height: 110px;
  5628. border-radius: 110px;
  5629. display: flex;
  5630. align-items: center;
  5631. justify-content: center;
  5632. }
  5633. .desc {
  5634. >h2 {
  5635. color: #000;
  5636. text-align: center;
  5637. font-size: 22px;
  5638. font-style: normal;
  5639. font-weight: 700;
  5640. line-height: 100%;
  5641. /* 22px */
  5642. letter-spacing: -0.44px;
  5643. text-transform: capitalize;
  5644. }
  5645. >div {
  5646. color: #444;
  5647. text-align: center;
  5648. font-size: 16px;
  5649. font-style: normal;
  5650. font-weight: 400;
  5651. line-height: 1.7;
  5652. letter-spacing: -0.32px;
  5653. text-transform: capitalize;
  5654. margin-top: 25px;
  5655. }
  5656. }
  5657. }
  5658. }
  5659. .grid--banner--wrapper {
  5660. &.type--2 {
  5661. padding: 95px 60px;
  5662. .grid--items {
  5663. padding: 0px;
  5664. }
  5665. }
  5666. .grid--items {
  5667. display: flex;
  5668. align-items: center;
  5669. justify-content: center;
  5670. gap: 80px;
  5671. padding-top: 80px;
  5672. padding-bottom: 110px;
  5673. width: 100%;
  5674. @media(max-width:1024px) {
  5675. flex-direction: column;
  5676. .grid--desc {
  5677. max-width: 100% !important;
  5678. }
  5679. .grid--banner {
  5680. max-width: 100% !important;
  5681. min-width: 100% !important;
  5682. img {
  5683. width: 100%;
  5684. }
  5685. }
  5686. }
  5687. @media(max-width:1440px) {
  5688. padding-left: 0px;
  5689. padding-right: 0px;
  5690. }
  5691. &.dark {
  5692. background: #FAFAFA;
  5693. }
  5694. &.revers {
  5695. flex-direction: row-reverse;
  5696. @media(max-width:1024px) {
  5697. flex-direction: column;
  5698. }
  5699. }
  5700. @media(max-width:768px) {
  5701. gap: 40px;
  5702. }
  5703. .grid--banner {
  5704. max-width: 650px;
  5705. min-width: 650px;
  5706. }
  5707. .grid--desc {
  5708. max-width: 710px;
  5709. h2 {
  5710. color: #000;
  5711. font-size: 30px;
  5712. font-style: normal;
  5713. font-weight: 500;
  5714. line-height: 100%;
  5715. /* 30px */
  5716. text-transform: uppercase;
  5717. margin-bottom: 35px;
  5718. }
  5719. .captions {
  5720. color: #000;
  5721. font-size: 18px;
  5722. font-style: normal;
  5723. font-weight: 300;
  5724. line-height: 1.7;
  5725. white-space: normal;
  5726. text-transform: uppercase;
  5727. >ul {
  5728. >li {
  5729. color: #333;
  5730. font-size: 18px;
  5731. font-style: normal;
  5732. font-weight: 700;
  5733. //line-height: 100%; /* 18px */
  5734. text-transform: uppercase;
  5735. position: relative;
  5736. padding-left: 10px;
  5737. margin-bottom: 15px;
  5738. &.not--sq {
  5739. li {
  5740. color: #444;
  5741. font-size: 17px;
  5742. font-style: normal;
  5743. font-weight: 400;
  5744. //line-height: 100%; /* 17px */
  5745. text-transform: uppercase;
  5746. }
  5747. &::before {
  5748. display: none;
  5749. }
  5750. }
  5751. &:before {
  5752. content: '';
  5753. display: inline-flex;
  5754. width: 3px;
  5755. height: 3px;
  5756. background: #595959;
  5757. position: absolute;
  5758. left: 0px;
  5759. top: 10px;
  5760. }
  5761. }
  5762. }
  5763. }
  5764. .list--content {
  5765. >ul {
  5766. >li {
  5767. color: #444;
  5768. font-size: 18px;
  5769. font-style: normal;
  5770. font-weight: 400;
  5771. line-height: 1.5;
  5772. text-transform: lowercase;
  5773. margin-bottom: 10px;
  5774. position: relative;
  5775. display: flex;
  5776. align-items: center;
  5777. justify-content: flex-start;
  5778. padding-left: 10px;
  5779. &:before {
  5780. content: '';
  5781. display: inline-flex;
  5782. width: 3px;
  5783. height: 3px;
  5784. background: #595959;
  5785. position: absolute;
  5786. left: 0px;
  5787. top: 12px;
  5788. }
  5789. &:last-child {
  5790. margin-bottom: 0px;
  5791. }
  5792. }
  5793. }
  5794. }
  5795. }
  5796. }
  5797. }
  5798. .g-layout {
  5799. &.active {
  5800. position: relative;
  5801. z-index: 1100;
  5802. }
  5803. }
  5804. .owner--service {
  5805. display: flex;
  5806. align-items: center;
  5807. justify-content: center;
  5808. gap: 65px;
  5809. padding: 60px;
  5810. background: #FAFAFA;
  5811. .thumb {}
  5812. ;
  5813. .desc {
  5814. max-width: 580px;
  5815. h2 {
  5816. color: #111;
  5817. font-size: 30px;
  5818. font-style: normal;
  5819. font-weight: 700;
  5820. line-height: 100%;
  5821. /* 30px */
  5822. letter-spacing: -0.6px;
  5823. text-transform: uppercase;
  5824. }
  5825. >div {
  5826. color: #444;
  5827. font-size: 17px;
  5828. font-style: normal;
  5829. font-weight: 400;
  5830. line-height: 1.7;
  5831. letter-spacing: -0.34px;
  5832. margin-top: 20px;
  5833. }
  5834. }
  5835. }
  5836. .owner--list--content {
  5837. .title {
  5838. display: flex;
  5839. align-items: center;
  5840. justify-content: center;
  5841. h2 {
  5842. color: #222;
  5843. text-align: center;
  5844. font-size: 35px;
  5845. font-style: normal;
  5846. font-weight: 700;
  5847. //line-height: 100%; /* 35px */
  5848. letter-spacing: -0.7px;
  5849. text-transform: uppercase;
  5850. }
  5851. }
  5852. .list--content {
  5853. display: flex;
  5854. align-items: flex-start;
  5855. justify-content: space-between;
  5856. padding-top: 70px;
  5857. gap: 80px;
  5858. >ul {
  5859. width: calc((100% - 160px) / 3);
  5860. @media(max-width:1024px) {
  5861. width: 100%;
  5862. }
  5863. >li {
  5864. position: relative;
  5865. display: flex;
  5866. align-items: center;
  5867. justify-content: flex-start;
  5868. gap: 10px;
  5869. margin-bottom: 15px;
  5870. &:last-child {
  5871. margin-bottom: 0px;
  5872. }
  5873. &:before {
  5874. content: '';
  5875. width: 3px;
  5876. height: 3px;
  5877. display: inline-flex;
  5878. background: #595959;
  5879. }
  5880. }
  5881. }
  5882. }
  5883. }
  5884. .outer--desc {
  5885. padding-top: 70px;
  5886. >ul {
  5887. >li {
  5888. position: relative;
  5889. color: #444;
  5890. font-size: 18px;
  5891. font-style: normal;
  5892. font-weight: 400;
  5893. //line-height: 100%; /* 18px */
  5894. text-transform: lowercase;
  5895. padding-left: 10px;
  5896. margin-bottom: 40px;
  5897. &:last-child {
  5898. margin-bottom: 0px;
  5899. }
  5900. &:before {
  5901. content: '';
  5902. display: inline-flex;
  5903. width: 3px;
  5904. height: 3px;
  5905. background: #595959;
  5906. position: absolute;
  5907. top: 8px;
  5908. left: 0px;
  5909. }
  5910. }
  5911. }
  5912. }
  5913. .column--caption3 {
  5914. max-width: 1440px;
  5915. margin: 0 auto;
  5916. display: flex;
  5917. align-items: flex-start;
  5918. justify-content: space-between;
  5919. >ul {
  5920. width: calc((100% - 160px) / 3);
  5921. >li {
  5922. position: relative;
  5923. padding-left: 12px;
  5924. margin-bottom: 20px;
  5925. &:last-child {
  5926. margin-bottom: 0px;
  5927. }
  5928. &.not--sq {
  5929. padding-left: 10px;
  5930. &::before {
  5931. display: none;
  5932. }
  5933. >ul {
  5934. li {
  5935. padding-left: 12px;
  5936. color: #444;
  5937. font-size: 17px;
  5938. font-style: normal;
  5939. font-weight: 400;
  5940. line-height: 1.7;
  5941. text-transform: uppercase;
  5942. position: relative;
  5943. &:before {
  5944. content: '-';
  5945. position: absolute;
  5946. top: -1px;
  5947. left: 0px;
  5948. }
  5949. }
  5950. }
  5951. }
  5952. &:before {
  5953. content: '';
  5954. display: block;
  5955. width: 3px;
  5956. height: 3px;
  5957. background: #595959;
  5958. position: absolute;
  5959. top: 9px;
  5960. left: 0px;
  5961. }
  5962. }
  5963. }
  5964. }
  5965. .inner--dbl--content {
  5966. padding-top: 50px;
  5967. >ul {
  5968. display: flex;
  5969. align-items: flex-start;
  5970. justify-content: center;
  5971. gap: 80px;
  5972. li {
  5973. .thumb {
  5974. border-radius: 20px;
  5975. border-radius: 20px;
  5976. border: 1px solid #D9D9D9;
  5977. background: #FFF;
  5978. overflow: hidden;
  5979. }
  5980. a {
  5981. margin-top: 30px;
  5982. display: inline-flex;
  5983. align-items: center;
  5984. justify-content: center;
  5985. height: 40px;
  5986. padding: 15px 20px;
  5987. justify-content: center;
  5988. align-items: center;
  5989. gap: 5px;
  5990. border-radius: 100px;
  5991. background: #111;
  5992. color: #FFF;
  5993. font-size: 14px;
  5994. font-style: normal;
  5995. font-weight: 700;
  5996. line-height: 100%;
  5997. /* 14px */
  5998. text-transform: capitalize;
  5999. }
  6000. }
  6001. }
  6002. }
  6003. // 전체 메뉴 (사이트맵)
  6004. .all--menu--wrapper {
  6005. position: fixed;
  6006. top: 0;
  6007. left: 0;
  6008. width: 100%;
  6009. background: #fff;
  6010. z-index: 1002;
  6011. transform: translateY(-100%);
  6012. transition: transform 0.4s ease;
  6013. overflow-y: auto;
  6014. &.active {
  6015. transform: translateY(0);
  6016. }
  6017. .close--btn {
  6018. position: absolute;
  6019. top: 25px;
  6020. right: 0px;
  6021. width: 40px;
  6022. height: 40px;
  6023. background: none;
  6024. border: none;
  6025. cursor: pointer;
  6026. z-index: 10;
  6027. svg {
  6028. width: 100%;
  6029. height: 100%;
  6030. }
  6031. }
  6032. .all--menu--inner {
  6033. max-width: 1440px;
  6034. margin: 0 auto;
  6035. position: relative;
  6036. padding: 35px 0 100px;
  6037. .main--menu--list {
  6038. display: flex;
  6039. gap: 60px;
  6040. li {
  6041. width: 20%;
  6042. h3 {
  6043. font-size: 16px;
  6044. font-weight: 700;
  6045. margin-bottom: 50px;
  6046. line-height: 1;
  6047. color: #00095B;
  6048. text-transform: uppercase;
  6049. }
  6050. }
  6051. }
  6052. .sitemap--list {
  6053. display: flex;
  6054. gap: 60px;
  6055. max-height: 60vh;
  6056. overflow-y: auto;
  6057. >ul {
  6058. width: 20%;
  6059. display: flex;
  6060. flex-direction: column;
  6061. gap: 20px;
  6062. li {
  6063. width: 100%;
  6064. display: flex;
  6065. &:first-child {
  6066. a {
  6067. padding-top: 0;
  6068. &::before {
  6069. top: 10px;
  6070. }
  6071. }
  6072. }
  6073. a {
  6074. padding-top: 15px;
  6075. color: #000;
  6076. font-size: 16px;
  6077. padding-left: 20px;
  6078. width: 100%;
  6079. font-weight: 500;
  6080. position: relative;
  6081. &::before {
  6082. position: absolute;
  6083. content: '';
  6084. display: inline-block;
  6085. width: 5px;
  6086. height: 5px;
  6087. background-color: #333;
  6088. top: 25px;
  6089. left: 0;
  6090. }
  6091. &.sub--type {
  6092. color: #444;
  6093. font-size: 15px;
  6094. padding: 0 20px;
  6095. font-weight: 400;
  6096. &::before {
  6097. display: none;
  6098. }
  6099. }
  6100. }
  6101. }
  6102. }
  6103. }
  6104. }
  6105. }
  6106. // 햄버거 버튼 active 상태 (X 모양)
  6107. .hmb--btn {
  6108. position: relative;
  6109. z-index: 1002;
  6110. svg line {
  6111. transition: all 0.3s ease;
  6112. }
  6113. &.active {
  6114. svg {
  6115. line:nth-child(1) {
  6116. transform: translateY(11px) rotate(45deg);
  6117. transform-origin: 20px 8px;
  6118. }
  6119. line:nth-child(2) {
  6120. opacity: 0;
  6121. }
  6122. line:nth-child(3) {
  6123. transform: translateY(-11px) rotate(-45deg);
  6124. transform-origin: 20px 30px;
  6125. }
  6126. }
  6127. }
  6128. }
  6129. // 모바일 메뉴
  6130. .mobile--menu--wrapper {
  6131. display: none;
  6132. position: fixed;
  6133. top: 0;
  6134. right: 0;
  6135. width: 100%;
  6136. height: 100vh;
  6137. background: #fff;
  6138. z-index: 999;
  6139. transform: translateX(100%);
  6140. transition: transform 0.4s ease;
  6141. overflow-y: auto;
  6142. &.active {
  6143. transform: translateX(0);
  6144. }
  6145. .mobile--menu--inner {
  6146. padding: 72px 20px 60px;
  6147. .mobile--menu--list {
  6148. >li {
  6149. &.active {
  6150. .menu--title {
  6151. span {
  6152. color: #076FED;
  6153. }
  6154. .arrow {
  6155. background-image: url(/img/ico--minus.svg);
  6156. }
  6157. }
  6158. .mobile--sub--menu {
  6159. max-height: 1000px;
  6160. padding: 25px 0;
  6161. border-bottom: 1px solid #b2b2b2;
  6162. }
  6163. }
  6164. .menu--title {
  6165. border-bottom: 1px solid #b2b2b2;
  6166. display: flex;
  6167. justify-content: space-between;
  6168. align-items: center;
  6169. padding: 30px 0;
  6170. cursor: pointer;
  6171. span {
  6172. font-size: 15px;
  6173. font-weight: 700;
  6174. color: #000;
  6175. text-transform: uppercase;
  6176. }
  6177. .arrow {
  6178. width: 22px;
  6179. height: 22px;
  6180. transition: all 0.3s;
  6181. background-image: url(/img/ico--plus.svg);
  6182. }
  6183. }
  6184. .mobile--sub--menu {
  6185. max-height: 0;
  6186. overflow: hidden;
  6187. transition: max-height 0.3s ease, padding 0.3s ease;
  6188. padding: 0;
  6189. display: flex;
  6190. flex-direction: column;
  6191. gap: 15px;
  6192. &.car--menu {
  6193. text-align: center;
  6194. flex-direction: row;
  6195. flex-wrap: wrap;
  6196. gap: 15px;
  6197. li {
  6198. width: calc((100% - 30px) / 3);
  6199. a {
  6200. display: flex;
  6201. flex-direction: column;
  6202. gap: 15px;
  6203. font-size: 14px;
  6204. color: #000;
  6205. font-weight: 400;
  6206. padding: 0;
  6207. }
  6208. }
  6209. }
  6210. li {
  6211. display: flex;
  6212. width: 100%;
  6213. &:first-child {
  6214. h4 {
  6215. margin-top: 0;
  6216. }
  6217. }
  6218. h4 {
  6219. padding-left: 20px;
  6220. position: relative;
  6221. font-size: 16px;
  6222. font-weight: 500;
  6223. margin-bottom: 5px;
  6224. margin-top: 20px;
  6225. >a {
  6226. color: #000;
  6227. font-size: 16px;
  6228. font-weight: 500;
  6229. }
  6230. &::before {
  6231. content: '';
  6232. position: absolute;
  6233. width: 5px;
  6234. top: 8px;
  6235. left: 0;
  6236. height: 5px;
  6237. background-color: #333;
  6238. }
  6239. }
  6240. a {
  6241. font-size: 15px;
  6242. width: 100%;
  6243. padding-left: 20px;
  6244. color: #444;
  6245. font-weight: 400;
  6246. &:hover {}
  6247. }
  6248. }
  6249. }
  6250. }
  6251. }
  6252. }
  6253. }
  6254. .text--justify--left {
  6255. text-align: left !important;
  6256. }
  6257. .text--center {
  6258. text-align: center !important;
  6259. }
  6260. .service--center--ford {
  6261. td {
  6262. text-align: left !important;
  6263. padding-left: 20px !important;
  6264. &.text--center,
  6265. &:last-child {
  6266. text-align: center !important;
  6267. &.text--justify--left {
  6268. text-align: left !important;
  6269. }
  6270. }
  6271. }
  6272. a {
  6273. display: inline-flex;
  6274. align-items: center;
  6275. justify-content: center;
  6276. border-radius: 50px;
  6277. background: #076FED;
  6278. color: #FFF;
  6279. height: 30px;
  6280. font-size: 13px;
  6281. font-style: normal;
  6282. font-weight: 500;
  6283. letter-spacing: -0.26px;
  6284. text-transform: uppercase;
  6285. padding: 0 16px;
  6286. gap: 9px;
  6287. &:before {
  6288. content: "";
  6289. width: 15px;
  6290. min-width: 15px;
  6291. height: 14px;
  6292. display: inline-flex;
  6293. background: url(/img/ico--res--service.svg);
  6294. background-size: contain;
  6295. position: relative;
  6296. top: -1px;
  6297. }
  6298. }
  6299. }
  6300. .admin--form--table{
  6301. width: 100%;
  6302. color: #666b75;
  6303. font-weight: 400;
  6304. font-size: 12px;
  6305. p{
  6306. color: #666b75;
  6307. font-weight: 400;
  6308. font-size: 12px;
  6309. }
  6310. tr{
  6311. border-top: 1px solid #F0F2F6;
  6312. &:last-child{
  6313. border-bottom: 1px solid #F0F2F6;
  6314. }
  6315. }
  6316. th{
  6317. padding: 20px 16px;
  6318. text-align: left;
  6319. color: #1a2b4a;
  6320. font-weight: 700;
  6321. font-size: 13px;
  6322. background-color: #F8f9fb;
  6323. .admin--required{
  6324. color: var(--admin-red);
  6325. }
  6326. }
  6327. td{
  6328. padding: 12px 16px;
  6329. .input--wrap{
  6330. display: flex;
  6331. align-items: center;
  6332. gap: 12px;
  6333. input, select{
  6334. width: 320px;
  6335. &[type=radio]{
  6336. width: auto;
  6337. }
  6338. &.w--full{
  6339. width: 100%;
  6340. }
  6341. &.w--120{
  6342. width: 120px;
  6343. }
  6344. &.w--160{
  6345. width: 160px;
  6346. }
  6347. &.w--200{
  6348. width: 200px;
  6349. }
  6350. &.w--240{
  6351. width: 240px;
  6352. }
  6353. &.w--300{
  6354. width: 300px;
  6355. }
  6356. }
  6357. input[type=radio]{
  6358. appearance: none;
  6359. width: 18px;
  6360. height: 18px;
  6361. border: 1.5px solid #c8d5e6;
  6362. border-radius: 50%;
  6363. &:checked{
  6364. border: 5px solid #3C80F2;
  6365. }
  6366. }
  6367. }
  6368. }
  6369. }
  6370. .admin--form-section-title{
  6371. font-size: 15px;
  6372. font-weight: 700;
  6373. color: #1a2b4a;
  6374. margin: 28px 0 12px;
  6375. &:first-child{
  6376. margin-top: 0;
  6377. }
  6378. }
  6379. .admin--info--box,
  6380. .admin--inf--box{
  6381. background-color: #fff8de;
  6382. border-radius: 6px;
  6383. margin-top: 32px;
  6384. padding: 20px;
  6385. h3{
  6386. color: #e8b547;
  6387. font-size: 14px;
  6388. font-weight: 600;
  6389. letter-spacing: 0.55px;
  6390. margin-bottom: 10px;
  6391. }
  6392. ul{
  6393. li{
  6394. position: relative;
  6395. color: #1a2b4a;
  6396. font-size: 13px;
  6397. font-weight: 400;
  6398. padding-left: 14px;
  6399. &::before{
  6400. content: '';
  6401. position: absolute;
  6402. width: 4px;
  6403. height: 4px;
  6404. border-radius: 50%;
  6405. background-color: #1a2b4a;
  6406. left: 4px;
  6407. top: 8px;
  6408. }
  6409. }
  6410. }
  6411. &.bg--white{
  6412. background-color: #fff;
  6413. border: 1px solid var(--admin-border-color);
  6414. h3{
  6415. color: #1a2b4a;
  6416. margin-bottom: 15px;
  6417. padding-bottom: 13px;
  6418. border-bottom: 1px solid var(--admin-border-color);
  6419. }
  6420. }
  6421. .item--info--box{
  6422. display: flex;
  6423. gap: 24px;
  6424. justify-content: space-between;
  6425. .item--info{
  6426. display: flex;
  6427. flex-direction: column;
  6428. width: 33.3333%;
  6429. .item--badge{
  6430. display: inline-block;
  6431. padding: 4px 12px;
  6432. border-radius: 12px;
  6433. font-size: 12px;
  6434. font-weight: 700;
  6435. white-space: nowrap;
  6436. width: fit-content;
  6437. line-height: 1;
  6438. background-color: #E8F0FE;
  6439. border-radius: 12px;
  6440. color: #3c80f2;
  6441. }
  6442. p{
  6443. margin: 8px 0;
  6444. color: #666b75;
  6445. font-size: 12px;
  6446. font-weight: 400;
  6447. }
  6448. span{
  6449. color: #3c80f2;
  6450. font-weight: 600;
  6451. font-size: 12px;
  6452. font-weight: 600;
  6453. }
  6454. &:nth-child(2){
  6455. .item--badge{
  6456. color: #e85d3f;
  6457. background-color: #FFF8DE;
  6458. }
  6459. span{
  6460. color: #e85d3f;
  6461. }
  6462. }
  6463. &:nth-child(3){
  6464. .item--badge{
  6465. color: #2DB672;
  6466. background-color: #E8F7ED;
  6467. }
  6468. span{
  6469. color: #2DB672;
  6470. }
  6471. }
  6472. }
  6473. }
  6474. }
  6475. .admin--inf--box{
  6476. margin-top: 16px;
  6477. background-color: #F8F9FB;
  6478. h3{
  6479. color: #666B75;
  6480. }
  6481. }
  6482. .item--thumb {
  6483. width: 36px;
  6484. height: 36px;
  6485. border-radius: 6px;
  6486. overflow: hidden;
  6487. border: 1px solid #e8eaef;
  6488. margin: 0 auto;
  6489. }
  6490. .item--thumb img {
  6491. width: 100%;
  6492. height: 100%;
  6493. object-fit: cover;
  6494. display: block;
  6495. }
  6496. // 선상 & 낚시터 사진 추가
  6497. .onboard--photo-grid {
  6498. display: flex;
  6499. flex-wrap: wrap;
  6500. gap: 12px;
  6501. }
  6502. .onboard--photo-item {
  6503. position: relative;
  6504. width: 120px;
  6505. height: 120px;
  6506. border-radius: 8px;
  6507. overflow: hidden;
  6508. border: 1px solid #e8eaef;
  6509. }
  6510. .onboard--photo-item img {
  6511. width: 100%;
  6512. height: 100%;
  6513. object-fit: cover;
  6514. display: block;
  6515. }
  6516. .onboard--photo-remove {
  6517. position: absolute;
  6518. top: 4px;
  6519. right: 4px;
  6520. width: 22px;
  6521. height: 22px;
  6522. border: none;
  6523. border-radius: 50%;
  6524. background: rgba(0, 0, 0, 0.6);
  6525. cursor: pointer;
  6526. &::before{
  6527. content: '×';
  6528. top: -1px;
  6529. right: 6.5px;
  6530. position: absolute;
  6531. font-size: 15px;
  6532. color: #fff;
  6533. }
  6534. }
  6535. .onboard--photo-remove:hover {
  6536. background: rgba(0, 0, 0, 0.85);
  6537. }
  6538. .onboard--photo-badge {
  6539. position: absolute;
  6540. bottom: 4px;
  6541. left: 4px;
  6542. padding: 2px 8px;
  6543. border-radius: 4px;
  6544. background: var(--admin-red);
  6545. color: #fff;
  6546. font-size: 11px;
  6547. font-weight: 600;
  6548. }