admin.scss 146 KB

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