54 lines
1.3 KiB
CSS
54 lines
1.3 KiB
CSS
@charset "utf-8";
|
|
|
|
/* 💡 [최종 수정] 와이드 슬라이드 스타일 */
|
|
.rb-banner-wide-slide {
|
|
position: relative;
|
|
width: 728px; /* 💡 [핵심] 와이드 배너 너비 고정 */
|
|
height: 90px; /* 💡 [핵심] 와이드 배너 높이 고정 */
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
border-radius: 8px;
|
|
margin: 0 auto; /* 중앙 정렬 */
|
|
}
|
|
|
|
.rb-banner-wide-slide .swiper-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.rb-banner-wide-slide .swiper-slide {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.rb-banner-wide-slide .banner-image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/* 💡 [최종 수정] img 태그 자체의 크기를 와이드 배너(728x90)로 강제 고정 */
|
|
.rb-banner-wide-slide .banner-image img {
|
|
width: 728px !important;
|
|
height: 90px !important;
|
|
object-fit: cover !important;
|
|
display: block;
|
|
}
|
|
|
|
/* Swiper 네비게이션 버튼 스타일 (필요시 수정) */
|
|
.rb-banner-wide-slide .swiper-button-next,
|
|
.rb-banner-wide-slide .swiper-button-prev {
|
|
color: #fff;
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
.rb-banner-wide-slide .swiper-button-next:after,
|
|
.rb-banner-wide-slide .swiper-button-prev:after {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.rb-banner-wide-slide .swiper-pagination-bullet-active {
|
|
background: #fff;
|
|
}
|