admin.scss 152 KB

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