admin.scss 152 KB

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