admin.scss 149 KB

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