admin.scss 160 KB

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