.swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.swiper-slide {
    flex: 0 0 100%;
    position: relative;
    height: 100%;
}

.swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-slide span {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
    z-index: 5;
}

/* 分页指示器 */
.swiper-pagination {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet.active {
    background-color: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* 导航按钮 */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0.8;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-next::before,
.swiper-button-prev::before {
    content: '';
    width: 12px;
    height: 12px;
    border-left: 2px solid #2c6e49;
    border-bottom: 2px solid #2c6e49;
    display: block;
}

.swiper-button-prev::before {
    transform: rotate(45deg);
    margin-left: 3px;
}

.swiper-button-next::before {
    transform: rotate(-135deg);
    margin-right: 3px;
}

/* 加载指示器 */
.banner-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(44, 110, 73, 0.2);
    z-index: 20;
    overflow: hidden;
}

.banner-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #2c6e49, #4caf7c);
    transition: width 0.3s ease;
}