/* 轮播图容器样式 */
.swiper-container {
    position: relative;
    width: 100%;
    height: calc(475 / 375 * 100vw);
    overflow: hidden;
}

/* 轮播轨道样式 */
.swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* 轮播项样式 */
.swiper-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* 导航按钮样式（当前已移除按钮，保留样式以备不时之需） */
.swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.3s;
    z-index: 10;
}

.swiper-button:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.swiper-prev {
    left: 15px;
}

.swiper-next {
    right: 15px;
}

/* 指示器样式 */
.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D5D1D1;
    cursor: pointer;
    transition: all 0.3s;
}

.swiper-pagination-bullet.active {
    background-color: #DE1FFF;
    width: 20px;
    border-radius: 3px;
}

/* 防止用户选中文字 */
.swiper-container {
    user-select: none;
    -webkit-user-select: none;
}