admin.scss 185 KB

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