admin.scss 148 KB

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