/* 分割区域轮播样式 */
.split-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.split-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.split-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    height: 100%;
}

.split-carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.split-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 左右箭头 */
.split-carousel-prev,
.split-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-carousel-prev:hover,
.split-carousel-next:hover {
    background: #1A2F68;
}

.split-carousel-prev {
    left: 10px;
}

.split-carousel-next {
    right: 10px;
}

/* 分页点 */
.split-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.split-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.split-carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #1A2F68;
}

/* 响应式 */
@media (max-width: 768px) {
    .split-carousel-prev,
    .split-carousel-next {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}