
@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.projectCarousel_8dK3a {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.projectCarousel_8dK3a .swiperContainer_8dK3a_wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.projectCarousel_8dK3a .swiperContainer_8dK3a {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.projectCard_8dK3a {
    width: 100%;
    background: var(--item-bg-color_8dK3a, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row-reverse;
    transition: all 0.3s ease;
    height: auto;
    align-items: center;
}



.projectCard_8dK3a:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.cardImageSection_8dK3a {
    flex: 1;
    position: relative;
    min-height: 0;
}

.projectCarousel_8dK3a .custom_image_wrapper{
    width: 100%;
    aspect-ratio: var(--image_ratio, 1 / 1);
    border-radius: var(--image_shape, 0%);
    overflow: hidden;
}

.projectCarousel_8dK3a .custom_image{
    width: 100%;
    height: 100%;
    object-fit: var(--image_fit, cover);
    display: block;
}

.cardInfoSection_8dK3a {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--item-bg-color_8dK3a, #ffffff);
    position: relative;
    overflow: hidden;
    min-width: 0;
}

/* 默认状态：正常显示 */
.cardInfoSection_8dK3a > * {
    opacity: 1;
    transform: translateY(0);
}

/* 飞入动画关键帧 */
@keyframes flyInUp_8dK3a {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.projectTitle_8dK3a {
    font-size: var(--title-font-size_8dK3a, 32px);
    font-weight: 700;
    color: var(--title-color_8dK3a, #1a3a52);
    margin-bottom: 35px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
}

.infoItem_8dK3a {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 16px;
}

.infoIcon_8dK3a {
    width: 38px;
    height: 38px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--icon-bg-color_8dK3a);
    color: var(--theme-color_8dK3a, var(--themeColor1));
    flex-shrink: 0;
}

.infoIcon_8dK3a .yiyingbaoicon {
    font-size: 20px;
    line-height: 1;
}

.infoText_8dK3a {
    color: var(--icon-title-color_8dK3a, #5a6a7a);
    font-size: var(--icon-title-font-size_8dK3a, 16px);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* 导航控制区域 */
.navigationWrapper_8dK3a {
    position: relative;
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

.swiperContainer_8dK3a .swiper-button-prev,
.swiperContainer_8dK3a .swiper-button-next {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    position: static;
    margin: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiperContainer_8dK3a .swiper-button-prev:hover,
.swiperContainer_8dK3a .swiper-button-next:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.swiperContainer_8dK3a .swiper-button-prev .yiyingbaoicon,
.swiperContainer_8dK3a .swiper-button-next .yiyingbaoicon {
    font-size: 18px;
    color: #1a3a52;
    line-height: 1;
    font-weight: bold;
    -webkit-text-stroke: 0.5px #1a3a52;
}

.progressBarWrapper_8dK3a {
    width: 380px;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.swiperContainer_8dK3a .swiper-pagination-progressbar {
    position: static;
    width: 100%;
    height: 100%;
    background: transparent;
}

.swiperContainer_8dK3a .swiper-pagination-progressbar-fill {
    background: var(--theme-color_8dK3a, var(--themeColor1)) !important;
    border-radius: 2px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .projectTitle_8dK3a {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .cardInfoSection_8dK3a {
        padding: 35px 30px;
    }

    .progressBarWrapper_8dK3a {
        width: 280px;
    }
}

@media (max-width: 960px) {
    .swiperContainer_8dK3a_wrapper{
        margin: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    .projectCarousel_8dK3a {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .projectCard_8dK3a {
        flex-direction: column;
        height: auto;
    }

    .cardImageSection_8dK3a {
        min-height: 0;
        height: auto;
    }

    .cardInfoSection_8dK3a {
        padding: 30px 25px;
    }

    .projectTitle_8dK3a {
        font-size: 22px;
        margin-bottom: 20px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        word-break: break-word;
        overflow-wrap: anywhere;
        max-width: 100%;
        width: 100%;
    }

    .infoItem_8dK3a {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .infoIcon_8dK3a {
        width: 32px;
        height: 32px;
    }

    .progressBarWrapper_8dK3a {
        width: 200px;
    }

    .swiperContainer_8dK3a .swiper-button-prev,
    .swiperContainer_8dK3a .swiper-button-next {
        width: 42px;
        height: 42px;
    }
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    content: '' !important;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '' !important;
}
