admin.scss 149 KB

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