admin.scss 173 KB

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