.case-showcase-container {
    display: flex;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
}

/* 左侧图片区域 */
.case-showcase-images {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.case-showcase-container .case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.case-showcase-container .case-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.case-image.prev {
    opacity: 0;
    transform: scale(1.05);
    z-index: 1;
}

/* 图片导航点 */
.image-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.dot.active {
    width: 22px;
    border-radius: 6px;
    background-color: #ffffff;
}

/* 右侧内容区域 */
.case-showcase-content {
    width: 50%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7vw !important;
}

.case-tag {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 33px;
    white-space: nowrap;
    border: 1px solid #4ED48D26;
}

a.view-all-link {
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    gap: 6px;
}

.case-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    transition: all 0.4s ease-out;
}

.case-title.enter {
    animation: titleEnter 0.6s ease-out;
}

@keyframes titleEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 90%;
    transition: all 0.5s ease-out;
}

.case-description.enter {
    animation: descriptionEnter 0.6s ease-out 0.1s both;
}

@keyframes descriptionEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.view-details-btn {
    width: fit-content;
    padding: 14px 32px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.view-details-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
}

/* 底部导航箭头 */
.navigation-arrows {
    position: absolute;
    bottom: 50px;
    left: 56px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-arrow svg {
    transition: all 0.3s ease;
}

/* 响应式 */
@media (max-width: 1024px) {
    .case-showcase-container {
        flex-direction: column;
    }

    .case-showcase-images {
        width: 100%;
        min-height: 290px;
    }
    .case-showcase-content {
        width: 100%;
        flex: 1;
        min-height: 60%;
    }
    .case-showcase-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .case-showcase-content {
        padding: 30px 20px;
    }

    .case-title {
        font-size: 28px;
    }

    .case-description {
        font-size: 14px;
        max-width: 100%;
    }

    .content-header {
        margin-bottom: 30px;
    }

    .navigation-arrows {
        bottom: 48px;
        left: 50%;
        transform: translateX(-50%);
    }
    .case-tag {
        padding: 8px 16px;
        line-height: 1;
    }
    a.view-all-link {
        font-size: 13px;
    }

}
