admin.scss 151 KB

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