admin.scss 167 KB

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