admin.scss 185 KB

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