admin.scss 176 KB

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