admin.scss 166 KB

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