.eic-carousel {
    position: relative;
    max-width: 100%;
    margin: 30px auto;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.eic-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.eic-carousel-slide {
    min-width: 100%;
    position: relative;
}

.eic-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.eic-image-caption {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    width: 100%;
    padding: 10px 15px;
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.eic-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.eic-carousel-button:hover {
    background: rgba(255,255,255,0.9);
}

.eic-button-prev {
    left: 15px;
}

.eic-button-next {
    right: 15px;
}

.eic-carousel-indicators {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    gap: 8px;
}

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

.eic-indicator.active {
    background: rgba(255,255,255,1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .eic-carousel {
        margin: 20px 0;
        border-radius: 4px;
        max-width: 100%;
        /* width: 100%; */
        /* overflow: hidden; */
        width: 96%;
        object-fit: cover;
    }
    
    .eic-carousel-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .eic-button-prev {
        left: 8px;
    }
    
    .eic-button-next {
        right: 8px;
    }
    
    .eic-image-caption {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .eic-indicator {
        width: 10px;
        height: 10px;
    }
}