admin.scss 150 KB

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