| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445 |
- @charset "UTF-8";
- @font-face {
- font-family: 'AudiType';
- src: url('/fonts/AudiTypeVF.woff2') format('woff2-variations');
- font-display: swap;
- font-style: normal;
- font-stretch: 130%;
- }
- // Utility classes for padding and margin (1-100)
- @for $i from 1 through 200 {
- // Padding
- .pt--#{$i} { padding-top: #{$i}px !important; }
- .pr--#{$i} { padding-right: #{$i}px !important; }
- .pb--#{$i} { padding-bottom: #{$i}px !important; }
- .pl--#{$i} { padding-left: #{$i}px !important; }
- .p--#{$i} { padding: #{$i}px !important; }
- // Margin
- .mt--#{$i} { margin-top: #{$i}px !important; }
- .mr--#{$i} { margin-right: #{$i}px !important; }
- .mb--#{$i} { margin-bottom: #{$i}px !important; }
- .ml--#{$i} { margin-left: #{$i}px !important; }
- .m--#{$i} { margin: #{$i}px !important; }
- }
- :root {
- --max-content-width: 1920px;
- --page-margin: 16px;
- @media (min-width: 375px) {
- --page-margin: 28px;
- }
- @media (min-width: 768px) {
- --page-margin: 40px;
- }
- @media (min-width: 1024px) {
- --page-margin: 60px;
- }
- @media (min-width: 1440px) {
- --page-margin: 96px;
- }
- @media (min-width: 1920px) {
- --page-margin: 96px;
- }
- @property --gradient-start {
- syntax: '<color>';
- initial-value: transparent;
- inherits: false;
- }
- @property --gradient-end {
- syntax: '<color>';
- initial-value: transparent;
- inherits: false;
- }
- --spacing-relative-2xs: 4px;
- --spacing-relative-xs: 8px;
- --spacing-relative-sm: 12px;
- --spacing-relative-md: 16px;
- --spacing-relative-lg: 24px;
- --spacing-relative-xl: 28px;
- --spacing-relative-2xl: 36px;
- --spacing-relative-3xl: 40px;
- --spacing-relative-4xl: 48px;
- --spacing-relative-5xl: 64px;
- --spacing-relative-6xl: 80px;
- --spacing-relative-7xl: 96px;
- --spacing-relative-8xl: 120px;
- @media (min-width: 768px) {
- --spacing-relative-3xl: 48px;
- --spacing-relative-4xl: 64px;
- --spacing-relative-5xl: 72px;
- --spacing-relative-6xl: 88px;
- --spacing-relative-7xl: 104px;
- --spacing-relative-8xl: 136px;
- }
- @media (min-width: 1024px) {
- --spacing-relative-2xl: 40px;
- --spacing-relative-3xl: 56px;
- --spacing-relative-4xl: 72px;
- --spacing-relative-5xl: 88px;
- --spacing-relative-6xl: 104px;
- --spacing-relative-7xl: 128px;
- --spacing-relative-8xl: 168px;
- }
- @media (min-width: 1440px) {
- --spacing-relative-xl: 32px;
- --spacing-relative-2xl: 56px;
- --spacing-relative-3xl: 72px;
- --spacing-relative-4xl: 88px;
- --spacing-relative-5xl: 104px;
- --spacing-relative-6xl: 120px;
- --spacing-relative-7xl: 160px;
- --spacing-relative-8xl: 216px;
- }
- @media (min-width: 1920px) {
- --spacing-relative-xl: 40px;
- --spacing-relative-2xl: 72px;
- --spacing-relative-3xl: 88px;
- --spacing-relative-4xl: 104px;
- --spacing-relative-5xl: 120px;
- --spacing-relative-6xl: 136px;
- --spacing-relative-7xl: 176px;
- --spacing-relative-8xl: 248px;
- }
- }
- //풀사이즈 레이아웃 구성
- .detail--container--full{
- }
- /*=================================================
- |컴포넌트 별 css
- |START
- =================================================*/
- //풀사이즈 배너 텍스트1 형
- .img--section--full{
- width:100%;
- position: relative;
- &[data-type="cover"] {
- >div {
- position: relative;
- height:100vh;
- overflow: hidden;
- }
- img{
- object-fit: cover;
- height:auto;
- position: absolute;
- top:50%;
- transform: translateY(-50%);
- }
- }
- &:before{
- content:'';
- display: block;
- width:100%;
- height:100%;
- position: absolute;
- z-index: 2;
- pointer-events: none;
- inset: 0px;
- z-index: 1;
- background: linear-gradient(rgba(0, 0, 0, 0) 46.66%, rgb(0, 0, 0) 100%);
- }
- img{
- width:100%;
- max-width:100%;
- height:100vh;
- }
- .alt--text{
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 28px;
- line-height: 40px;
- position: absolute;
- bottom:40px;
- left:0px;
- overflow: hidden;
- padding: 0 96px;
- white-space: pre-wrap;
- z-index: 2;
- }
- }
- //풀사이즈 패럴렉스 1형
- .prallax--banner--wrapper{
- position: relative;
- overflow: hidden;
- height:1000px;
-
- .prallax--banner{
- position: absolute;
- width: 100%;
- height: 120%;
- transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
- -webkit-transform: translate3d(0, 0, 0);
- backface-visibility: hidden;
- -webkit-backface-visibility: hidden;
- //perspective: 1000px;
- //-webkit-perspective: 1000px;
- position: absolute;
- top: -17%;
- left: 50%;
- will-change: transform;
- backface-visibility: hidden;
-
- picture {
- width: 100%;
- height: 100%;
- display: block;
- }
-
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- object-position: center;
- transform: translateZ(0); // GPU 가속
- -webkit-transform: translateZ(0);
- }
- }
-
- .text--box--wrapper{
- position: absolute;
- backface-visibility: hidden;
- -webkit-backface-visibility: hidden;
- width: 100%;
- top:147px;
- left: 0px;
- z-index: 1;
- will-change: transform, opacity;
- transform: translate3d(0, 0, 0); // 초기값 GPU 레이어 생성
- -webkit-transform: translate3d(0, 0, 0);
- display: flex;
- -webkit-box-pack: center;
- justify-content: center;
- transition: opacity 0.1s ease-out;
- perspective: 1000px;
- -webkit-perspective: 1000px;
- .text--container{
- max-width:50%;
- position: relative;
- box-sizing: border-box;
- background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
- backdrop-filter: blur(60px);
- display: flex;
- flex-direction: column;
- gap: 24px;
- flex-shrink: 0;
- flex-basis: 86%;
- margin: 88px auto 0 auto;
- padding: 40px;
- border-radius: 20px;
- left: 4%;
- flex-basis: 44%;
- h2{
- margin: 0px;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 24px;
- line-height: 36px;
- font-stretch: 130%;
- }
- p{
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- a{
- transition-timing-function:
- cubic-bezier(0.75, 0.02, 0.5, 1);
- transition-duration: 250ms;
- transition-property: color, text-decoration-color;
- display: inline-flex ;
- -webkit-box-align: center;
- align-items: center;
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: underline 1px rgb(252, 252, 253);
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- color: rgb(252, 252, 253);
- box-sizing: border-box;
- text-underline-offset: 7px;
- padding-bottom: 2px;
- min-height: 24px;
- }
- }
- }
- }
- //Swiper 배너 컴포넌트 (30% + 70% 레이아웃)
- .swiper--banner--wrapper {
- width: 100%;
- padding: 40px 96px;
- &[data-fit="contain"]{
- .swiper--banner--container{
- .swiper--banner--section{
- .swiper--container{
- .swiper-slide{
- .slide--image{
- img{
- object-fit: contain;
- }
- }
- }
- }
- }
- }
- }
- &[data-type="vertical"]{
- padding:0px;
- .swiper--banner--container{
- flex-direction: column-reverse;
- height:auto;
-
- .swiper--controls--section{
- flex-direction: row-reverse;
- @media(min-width:768px){
- padding: 0px 96px;
- }
- @media(min-width:1024px){
- padding: 0px 96px;
- }
- @media(min-width:1440px){
- padding: 0px 96px;
- }
- @media(min-width:1920px){
- padding:24px 96px;
- }
- .text--content{
- width:100%;
- .main--title{
- margin: 0px;
- color: rgb(252, 252, 253);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 20px;
- line-height: 32px;
- font-stretch: 130%;
- @media(min-width:1440px){
- font-size: 24px;
- line-height: 36px;
- }
- }
- .sub--title{
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- }
- }
- > div{
- width:100%;
- max-height:100vh;
- .swiper--container {
-
- .swiper-slide {
- .slide--image {
- border-radius: 0px;
- }
- }
- }
- }
- }
- }
-
- .swiper--banner--container {
- max-width: 1920px;
- height: 70vh;
- margin: 0 auto;
- display: flex;
- min-height: 600px;
-
-
- // 30% 영역: 컨트롤 및 텍스트
- .swiper--controls--section {
- width: 30%;
- padding: 40px;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
-
- .controls--top {
- margin-bottom: 40px;
-
- .pagination--nav--wrapper {
- display: flex;
- align-items: flex-start;
- justify-content: flex-start;
- flex-direction: column;
- gap: 20px;
-
- .swiper-pagination {
- position: relative;
- width: auto;
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 12px;
-
- .swiper-pagination-bullet {
- width: 24px;
- height: 24px;
- background: transparent;
- border-radius: 50%;
- color: rgba(255, 255, 255, 0.6);
- font-size: 14px;
- font-weight: 400;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- transition: all 0.3s ease;
- opacity: 1;
- margin:0px;
-
- &:hover {
- background:rgba(252,252,253,.3)!important;
- color: rgba(255, 255, 255, 0.8);
- }
-
- &.swiper-pagination-bullet-active {
- background: transparent;
- color: #fff;
- font-weight: 600;
- }
- }
- }
-
- .navigation--buttons {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 16px;
- .swiper-pagination{
- top:0px;
- bottom:0px;
- }
- .swiper-button-prev{
- background: url(/img/ico--back--s.svg) no-repeat center;
- }
- .swiper-button-next{
- background: url(/img/ico--forward--s.svg) no-repeat center;
- }
-
- .swiper-button-prev,
- .swiper-button-next {
- position: relative;
- width: 24px;
- height: 24px;
- border-radius: 50%;
- color: white;
- margin: 0;
- transition: all 0.3s ease;
- cursor: pointer;
-
- &:hover{
- background:rgba(252,252,253,.3) ;
- }
-
- &.swiper-button-disabled {
- opacity: 0.3;
- cursor: not-allowed;
-
- &:hover {
- transform: none;
- }
- }
- }
- }
- }
- }
-
- .text--content {
- text-align: center;
- height:60%;
-
- .text--slider {
- position: relative;
- overflow: hidden;
- height:100%;
-
- .text--slide {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- opacity: 0;
- transform: translateX(-100%);
- transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
- text-align: left;
- visibility: hidden;
-
- &.active {
- opacity: 1;
- transform: translateX(0);
- visibility: visible;
- position: relative; // 활성 슬라이드는 relative로 높이 확보
- }
-
- // 이전 슬라이드는 오른쪽으로 사라짐
- &:not(.active) {
- transform: translateX(-100%);
- position: absolute; // 비활성 슬라이드는 absolute로 겹침
- }
- }
- }
-
- .main--title {
- margin:0px;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 20px;
- line-height: 32px;
- font-stretch: 130%;
- padding-bottom:12px;
- }
-
- .sub--title {
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- .desc--title{
- margin-top:25px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 15px;
- line-height: 24px;
- font-stretch: 105%;
- }
-
- .notice--text {
- margin-top: 40px;
- padding-top: 20px;
- // border-top: 1px solid rgba(255, 255, 255, 0.1);
- text-align: left;
-
- p {
- margin: 0;
- color: rgba(252, 252, 253, 0.5);
- font-size: 14px;
- line-height: 20px;
- font-style: italic;
- }
- }
- }
- }
-
- // 70% 영역: 단일 배너
- .swiper--banner--section {
- width: 70%;
- position: relative;
- overflow: hidden;
-
- .swiper--container {
- width: 100%;
- height: 100%;
-
- .swiper-slide {
- .slide--image {
- width: 100%;
- height: 100%;
- border-radius: 20px;
- overflow: hidden;
-
- img {
- width: 100%;
- height: 100%;
- max-height:100vh;
- object-fit: cover;
- object-position: center;
- transition: transform 0.8s ease;
- }
- }
-
- &.swiper-slide-active {
- .slide--image img {
- //transform: scale(1.02);
- }
- }
- }
- }
- }
- }
-
- // 반응형 처리
- @media (max-width: 1024px) {
- .swiper--banner--container {
- flex-direction: column;
-
- .swiper--controls--section {
- width: 100%;
- order: 2;
- padding: 30px 20px;
- }
-
- .swiper--banner--section {
- width: 100%;
- height: 400px;
- order: 1;
- }
- }
- }
-
- @media (max-width: 768px) {
- padding: 40px 0;
-
- .swiper--banner--container {
- .swiper--controls--section {
- padding: 20px;
-
- .text--content {
- .text--slider {
- height: 100px; // 모바일에서는 높이 조정
- }
-
- .main--title {
- font-size: 24px;
- line-height: 32px;
- }
-
- .sub--title {
- font-size: 16px;
- line-height: 22px;
- }
- }
- }
-
- .swiper--banner--section {
- height: 300px;
- }
- }
- }
- }
- .title--visual {
- position: relative;
- width: 100%;
- overflow: hidden;
- padding:40px 0px;
- &[data-type="middle"] {
- .title--visual--wrapper{
- max-width:100%;
- padding:0px 96px;
- .title--visual--content{
- h2{
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 24px;
- line-height: 36px;
- font-stretch: 130%;
-
- @media (min-width: 1024px) {
- font-size: 28px;
- line-height: 40px;
- }
- @media (min-width: 1440px) {
- font-size: 32px;
- line-height: 44px;
- }
- @media (min-width: 1920px) {
- font-size: 36px;
- line-height: 52px;
- }
- }
- }
- }
- }
-
- // 테마별 스타일
- &[data-theme="dark"] {
- color: rgb(252, 252, 253);
-
- .title--description {
- color: rgba(252, 252, 253, 0.8);
- }
- }
-
- &[data-theme="light"] {
- background: rgb(252, 252, 253);
- color: #000;
-
- .title--description {
- color: rgba(0, 0, 0, 0.7);
- }
- }
-
- .title--visual--wrapper {
- margin: 0 auto;
- padding: 0 60px;
- align-content: center;
- box-sizing: content-box;
- display: grid;
- grid-template-columns: 100%;
- padding-bottom: 0px;
- padding-top: 0px;
- @media (min-width:1920px){
- margin: 0 auto;
- max-width:1248px;
- }
-
- @media (max-width: 1024px) {
- padding: 0 40px;
- }
-
- @media (max-width: 768px) {
- padding: 0 20px;
- }
- }
-
- .title--visual--content {
- margin: 0 auto;
-
- &[data-align="left"] {
- margin-left: 0;
- text-align: left;
- .title--main{
- text-align: left;
- }
- }
-
- &[data-align="center"] {
- text-align: center;
- }
-
- &[data-align="right"] {
- margin-right: 0;
- margin-left: auto;
- text-align: right;
- .title--main{
- text-align: right;
- }
- }
-
- // 애니메이션 상태
- &[data-animated="true"] {
- opacity: 0;
- transform: translateY(40px);
- transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
-
- &.visible {
- opacity: 1;
- transform: translateY(0);
- }
- }
- }
-
- .title--main {
- margin: 0 0 24px 0;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 36px;
- line-height: 52px;
- font-stretch: 130%;
- overflow-wrap: break-word;
- text-align: center;
-
- @media (max-width: 1920px) {
- font-size: 72px;
- line-height: 100px;
- }
- @media (max-width: 1440px) {
- font-size: 60px;
- line-height: 84px;
- }
- @media (max-width: 1024px) {
- font-size: 52px;
- line-height: 76px;
- }
-
- @media (max-width: 768px) {
- font-size: 44px;
- line-height: 60px;
- }
- }
-
- .title--description {
- margin: 0;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
-
- .title--additional {
- margin-top: 40px;
-
- @media (max-width: 768px) {
- margin-top: 32px;
- }
- }
- }
- .caution--text--wrapper{
- padding:120px 96px;
- p{
- margin: 0 0 26px 0;
- color: rgba(252, 252, 253, 0.7);
- font-family: AudiType, sans-serif;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- }
- /*=================================================
- |컴포넌트 별 css
- |END
- =================================================*/
- // 로그인 폼 기본 디폴트 디자인
- .admin--login {
- min-height: 100vh;
- background: #000000;
- display: flex;
- align-items: center;
- justify-content: center;
- font-family: 'AudiType', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
-
- .login--container {
- width: 100%;
- max-width: 480px;
- padding: 20px;
- }
-
- .login--box {
- background: #0a0a0a;
- border: 1px solid rgba(255, 255, 255, 0.1);
- border-radius: 12px;
- padding: 60px 40px;
- box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
- }
-
- .login--logo {
- text-align: center;
- margin-bottom: 50px;
-
- h1 {
- font-size: 48px;
- font-weight: 700;
- color: #ffffff;
- letter-spacing: 8px;
- margin: 0;
- font-stretch: 130%;
- }
-
- .subtitle {
- color: rgba(255, 255, 255, 0.4);
- font-size: 14px;
- text-transform: uppercase;
- letter-spacing: 3px;
- margin-top: 10px;
- }
- }
-
- .login--form {
- .form--group {
- margin-bottom: 24px;
- }
-
- .form--input {
- width: 100%;
- height: 52px;
- background: #000000;
- border: 1px solid rgba(255, 255, 255, 0.15);
- border-radius: 8px;
- padding: 0 20px;
- font-size: 15px;
- color: #ffffff;
- transition: all 0.3s ease;
-
- &::placeholder {
- color: rgba(255, 255, 255, 0.6);
- }
-
- &:focus {
- outline: none;
- border-color: rgba(255, 255, 255, 0.4);
- background: rgba(255, 255, 255, 0.02);
- }
-
- &:hover {
- border-color: rgba(255, 255, 255, 0.25);
- }
- }
-
- .form--options {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 32px;
-
- .checkbox--label {
- display: flex;
- align-items: center;
- cursor: pointer;
- color: rgba(255, 255, 255, 0.6);
- font-size: 14px;
-
- input[type="checkbox"] {
- width: 18px;
- height: 18px;
- margin-right: 10px;
- background: #000000;
- border: 1px solid rgba(255, 255, 255, 0.3);
- border-radius: 4px;
- cursor: pointer;
- accent-color: #ffffff;
- }
-
- &:hover {
- color: rgba(255, 255, 255, 0.8);
- }
- }
-
- .forgot--password {
- color: rgba(255, 255, 255, 0.6);
- font-size: 14px;
- text-decoration: none;
- transition: color 0.3s ease;
-
- &:hover {
- color: #ffffff;
- }
- }
- }
-
- .login--button {
- width: 100%;
- height: 52px;
- background: #ffffff;
- color: #000000;
- border: none;
- border-radius: 8px;
- font-size: 16px;
- font-weight: 600;
- letter-spacing: 1px;
- cursor: pointer;
- transition: all 0.3s ease;
-
- &:hover {
- background: rgba(255, 255, 255, 0.9);
- transform: translateY(-2px);
- box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
- }
-
- &:active {
- transform: translateY(0);
- }
- }
- }
-
- .login--footer {
- text-align: center;
- margin-top: 40px;
-
- p {
- color: rgba(255, 255, 255, 0.3);
- font-size: 12px;
- letter-spacing: 0.5px;
- }
- }
- }
- //자세히 보기
- .more--detail--href{
- display: inline-flex;
- align-items: center;
- position: relative;
- letter-spacing: 0px;
- font-weight: 400;
- font-size: 14px;
- min-height:24px;
- &:after{
- content:'';
- display: block;
- width:calc(100% - 24px);
- height:1px;
- background: rgb(252, 252, 253);
- position: absolute;
- bottom:0px;
- left:0px;
- }
- .ico{
- width: 24px;
- height: 24px;
- background-image: url(/img/ico--arrow.svg);
- }
- }
- //탭 링크
- .text--tab--layout{
- display: flex;
- background: linear-gradient(134deg, rgb(44, 52, 63) 0%, rgb(35, 42, 52) 100%);
- position: sticky;
- top: 0;
- z-index: 100;
- @media(min-width:1440px){
- display: grid;
- grid-auto-flow: column;
- grid-template-columns: max-content 1fr auto;
- gap: 28px;
- width: 100%;
- box-sizing: border-box;
- overflow: hidden;
- }
- @media(min-width:1025px){
- padding-block:12px;
- }
- ul{
- display: flex;
- position: relative;
- padding-inline:96px;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: justify;
- justify-content: space-between;
- li {
- &:first-child{
- a{
- margin-left:-12px;
- pointer-events: none;
- }
- }
- a{
- cursor: pointer;
- display: flex;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: center;
- justify-content: center;
- text-decoration: none;
- border-radius: 10px;
- background: rgba(44, 52, 63, 0);
- box-shadow: rgba(219, 223, 230, 0) 0px 0px 0px 1px inset;
- outline-offset: -3px;
- box-sizing: border-box;
- transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
- transition-duration: 250ms;
- transition-property: color, background, box-shadow;
- min-height: 48px;
- min-width: 64px;
- color: rgba(252, 252, 253, 0.7);
- padding: 0px 16px;
- text-align: center;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 14px;
- line-height: 20px;
- font-stretch: 105%;
- &:hover{
- color:rgb(252,252,253);
- background-color: rgb(44,52,63);
- box-shadow: rgba(219, 223,230, .2) 0px 0px 0px 1px inset;
- }
- }
- }
- }
- }
- .inner--link--contents {
- width: 100%;
- padding: 40px 0;
-
- ul {
- list-style: none;
- margin: 0;
- padding: 0;
- display: flex;
- flex-wrap: wrap;
- gap: 24px;
- width: 100%;
- padding:0 96px;
-
- li {
- width:calc( (100% - 48px) / 3);
- --gradient-start: hsla(216, 20%, 17%, 1);
- --gradient-end: hsla(216, 21%, 12%, 1);
- transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
- transition-duration: 250ms;
- transition-property: --gradient-start, --gradient-end, box-shadow;
- padding:28px 16px;
- overflow: hidden;
- border-radius: 20px;
- border: none;
- cursor: pointer;
- box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
- backdrop-filter: blur(40px);
- background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
- display: flex;
- text-decoration: none;
- &:hover{
- --gradient-start: hsla(216, 18%, 21%, 1);
- --gradient-end: hsla(216, 18%, 21%, 1);
- box-shadow: rgb(42,57,64) 0px 0px 0px 1px inset;
- }
- a {
- display: inline-flex;
- align-items: center;
- color: rgba(252, 252, 253, 0.7);;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 12px;
- line-height: 24px;
- font-stretch: 105%;
- padding-left:40px;
- position: relative;
- width:100%;
- svg{
- position: absolute;
- top:50%;
- transform: translateY(-50%);
- right:0px;
- }
- }
- }
- }
- }
- .product--card--wrapper{
- margin: auto;
- max-width: var(--max-content-width);
- padding: var(--spacing-relative-xl) var(--spacing-relative-md);
- padding-inline: var(--page-margin);
- padding-block-end: var(--spacing-relative-2xl);
-
- @media (min-width: 375px) {
- padding-inline: var(--page-margin);
- }
-
- @media (min-width: 768px) {
- padding-inline: var(--page-margin);
- }
-
- @media (min-width: 1024px) {
- padding-inline: var(--spacing-relative-3xl);
- padding-block-end: var(--spacing-relative-2xl);
- }
- @media (min-width: 1440px) {
- padding-inline: var(--page-margin);
- padding-block-end: var(--spacing-relative-2xl);
- }
- &[data-type="square"] {
- max-height:100%!important;
- .product--card{
- max-height:100%!important;
- .product--card--thumb{
- max-height: 100%!important;
- padding-top:50%;
- .product--card--thumb--inner{
- position: absolute;
- inset: 0px;
- height: 100%;
- img{
- position: relative;
- }
- }
- }
- }
- }
- .product--card {
- display: flex;
- overflow: hidden;
- max-height: 50vh;
-
- // 가로 레이아웃
- &[data-layout="horizontal"] {
- flex-direction: row;
- align-items: center;
-
- .product--card--thumb {
- flex: 0 0 40%;
- max-width: 600px;
- }
-
- .product--card--content {
- flex: 1;
- }
-
- // 이미지 오른쪽 배치
- &[data-image-position="right"] {
- flex-direction: row-reverse;
- }
-
- @media (max-width: 1024px) {
- flex-direction: column;
-
- .product--card--thumb {
- flex: 1;
- max-width: 100%;
- }
-
- .product--card--content {
- padding-left: 0;
- padding-right: 0;
- padding-top: 20px;
- }
-
- // 모바일에서는 이미지 위치 상관없이 세로 배치
- &[data-image-position="right"] {
- flex-direction: column;
-
- .product--card--content {
- padding-right: 0;
- padding-top: 20px;
- }
- }
- }
- }
-
- // 세로 레이아웃
- &[data-layout="vertical"] {
- flex-direction: column;
- max-width: 600px;
-
- .product--card--thumb {
- width: 100%;
- }
-
- .product--card--content {
- padding-top: 24px;
- }
- }
-
- .product--card--thumb {
- background: rgba(255, 255, 255, 0.05);
- min-width:50%;
- position: relative;
- max-height: 50vh;
- border-radius: 20px;
- position: relative;
- overflow: hidden;
-
- .product--card--thumb--inner{
- height:100%;
- min-height:50vh;
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- display: block;
- transition: transform 0.6s ease;
- position: absolute;
- height: 100%;
- }
-
- &:hover img {
- transform: scale(1.05);
- }
- }
- }
-
- .product--card--content {
- display: flex;
- flex-direction: column;
- gap: 16px;
- @media screen and (min-width: 320px) {
- padding-block-start: var(--spacing-relative-lg);
- }
- @media screen and (min-width: 1024px) {
- -webkit-box-pack: center;
- justify-content: center;
- align-items: flex-start;
- padding-inline-start: var(--spacing-relative-2xl);
- padding-inline-end: var(--spacing-relative-2xl);
- padding-block-start: 0px;
- }
- }
-
- .product--card--title {
- margin: 0px;
- color: rgb(252, 252, 253);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 24px;
- line-height: 36px;
- font-stretch: 130%;
-
- @media (min-width: 1024px) {
- font-size: 28px;
- line-height: 40px;
- }
- @media (min-width: 1440px) {
- font-size: 32px;
- line-height: 44px;
- }
- @media (min-width: 1920px) {
- font-size: 36px;
- line-height: 52px;
- }
-
- }
-
- .product--card--subtitle {
- margin: 0;
- color: rgba(252, 252, 253, 0.8);
- font-size: 16px;
- line-height: 24px;
-
- }
-
- .product--card--description {
- margin-top: 8px;
-
- p {
- margin: 0px;
- color: rgba(252, 252, 253, 0.7);
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 16px;
- line-height: 24px;
- font-stretch: 105%;
- }
- }
-
- .product--card--actions {
- margin-top: 24px;
- display: flex;
- gap: 16px;
- flex-wrap: wrap;
-
- .default--round--btn {
- flex-direction: column;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: center;
- justify-content: center;
- transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
- transition-duration: 250ms;
- border-radius: 999px;
- cursor: pointer;
- display: inline-flex;
- border: 0px;
- letter-spacing: 0px;
- font-weight: 400;
- text-decoration: none;
- font-size: 14px;
- line-height: 20px;
- font-stretch: 105%;
- padding: 12px 24px;
- min-height: 48px;
- background-color: rgb(24, 29, 37);
- color: rgb(252, 252, 253);
- box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
- transition-property: color, box-shadow, background-color;
-
- &:hover {
- background: rgba(44,52,63);
- box-shadow: rgba(219,223,230, .2) 0px 0px 0px 1px inset;
- }
-
- &:active {
- transform: translateY(0);
- }
- }
- }
-
- @media (max-width: 768px) {
- padding: 24px;
- gap: 24px;
- }
- }
- }
|