/* --- 关键修改：调整 z-index 策略 --- */

/* 1. 给所有 .carousel-item 设置一个基础的、较低的 z-index */
/* 基础样式 */
.carousel-item {
    position: absolute;
    top: 0;
    left: 50%; /* 初始位置居中 */
    width: 800px;
    opacity: 0;
    transform: translateX(-50%) scale(0.8) translateY(20px); /* 使用 translateX(-50%) 来保持居中 */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 当前激活项 */
.carousel-item.active {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0); /* 保持居中 */
    z-index: 2; /* 确保它在最上层 */
    /*left: 50%;*/
    /* 保持居中 */
}

/* 前一项 */
.carousel-item.prev {
    opacity: 0.7;
    transform: translateX(-80%) scale(0.9); /* 向左偏移 */
    z-index: 1; /* 在 .active 之下 */
    /*left: 50%; */
    /* 基于居中的调整 */
}

/* 后一项 */
.carousel-item.next {
    opacity: 0.7;
    transform: translateX(-20%) scale(0.9); /* 向右偏移 */
    z-index: 1; /* 在 .active 之下 */
    /*left: 50%;*/
    /* 基于居中的调整 */
}

/* --- 其他样式保持不变 --- */

.carousel-container {
    position: relative;
    width: 100%;
    height: 480px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-viewport {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    /* 无需 flex 或 transform 过渡 */
}

/* 分页指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3; /* 确保指示器在最上层 */
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: white;
}

/* 控制箭头 */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3; /* 确保箭头在最上层 */
    opacity: 0.7;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.carousel-arrow:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-arrow-prev {
    left: 20px;
}

.carousel-arrow-next {
    right: 20px;
}

/* 图片样式 */
.carousel-item img {
    object-fit: cover;
    background-color: #f0f0f0;
}