admin.scss 168 KB

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