/* 幻灯片样式（类名前缀was-，避免冲突） */
.was-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.was-slider-container {
    display: flex;
    transition: transform 0.5s ease-out;
}

.was-slider-item {
    min-width: 100%;
    position: relative;
}

.was-slider-img {
    width: 100%;
    height: 100%;
    max-height: 200px;
}

.was-slider-title {
    position: absolute;
    left: 20px;
    bottom: 15px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* 幻灯片按钮 */
.was-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 20px;
    border-radius: 50%;
    background: rgb(0 0 0 / 14%);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.was-slider-btn-prev { left: 10px; }
.was-slider-btn-next { right: 10px; }

/* 幻灯片指示器 */
.was-slider-dots {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.was-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
}
.was-slider-dot-active {
    background: white;
    transform: scale(1.2);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .was-slider-img { max-height: 150px; }
    .was-slider-title { font-size: 14px; }
}