/* 应用领域轮播组件样式 */
.applicationCarousel_9kL2p {
    width: 100%;
    margin: var(--margin-tb, 2rem) 0;

    overflow: hidden;
}



/* 轮播项宽度与容器相同，添加间距 */
.carouselSwiper_9kL2p .swiper-slide {
    width: 80%;

    opacity: 1;
    transition: all 0.5s ease;
    height: 100%;

}



/* 头部区域 */
.carouselHeader_9kL2p {

    position: relative;
    padding-bottom: 3rem;

    padding-left: var(--padding-lr);
    padding-right: var(--padding-lr);
    max-width: var(--custom-content-max-width);


    margin: 0 auto;

}

.swiper-backface-hidden1 {
    display: none !important;
}

/* Swiper容器 */
.swiperContainer_9kL2p {
    margin-top: 5rem;
    /* padding-left: var(--contentPadding,var(--padding-lr));
    padding-right: var(--contentPadding,var(--padding-lr));
    max-width: var(--contentMaxWidth,100%); */
}

/* 头部底部的通屏灰色下划线（始终显示） */
.carouselHeader_9kL2p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--padding-lr);
    right: var(--padding-lr);
    width: auto;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

/* 红色活跃下划线（选中时显示） */
.carouselHeader_9kL2p::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--active-underline-left, 0);
    width: var(--active-underline-width, 0);
    height: 2px;
    background-color: var(--theme-color, var(--themeColor1));
    opacity: var(--active-underline-opacity, 0);
    transition: all 0.3s ease;
    z-index: 2;
}

.headerContent_9kL2p {

    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    flex-wrap: wrap;
    gap: 2rem;
}

/* 垂直布局样式 */
.headerContent_9kL2p.vertical-layout {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.headerContent_9kL2p.vertical-layout .titleSection_9kL2p {
    text-align: center;
    width: 100%;
}

.headerContent_9kL2p.vertical-layout .tabNavigation_9kL2p {
    width: 100%;
    justify-content: center;
}

/* 静态图片容器 */
.staticImages_9kL2p {


    position: relative;
    padding-left: var(--padding-lr);
    padding-right: var(--padding-lr);
    max-width: var(--custom-content-max-width);


    margin: 0 auto;
    margin-top: 5rem;
}

.titleSection_9kL2p {}

.categoryLabel_9kL2p {
    font-size: var(--secondary-title-size, 2.2rem);
    color: var(--theme-color, var(--themeColor1));
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subTitle_9kL2p {
    font-size: var(--sub-title-font-size, 1.4rem);
    color: var(--theme-color, var(--themeColor1));
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.mainTitle_9kL2p {
    font-size: var(--main-title-font-size, 3rem);
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 标签导航 */
.tabNavigation_9kL2p {
    display: flex;
    gap: 0;
    position: relative;
    flex-wrap: wrap;
}

.tabItem_9kL2p {
    font-size: var(--item-title-size, 2rem);
    color: var(--item-title-color);
    padding: 1rem 2.5rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;

}

.tabItem_9kL2p:hover {
    color: var(--theme-color, var(--themeColor1));
}

.tabItem_9kL2p.active {
    color: var(--theme-color, var(--themeColor1));
    border-bottom-color: transparent;
    font-weight: 600;
}





.staticImageItem_9kL2p {
    width: 100%;
    height: 65rem;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    display: none;
}

.carouselSwiper_9kL2p {
    width: 100%;
    height: 65rem !important;
    padding: 0;
    display: flex;
    gap: 0rem;
    padding-left: 10%;
}

.carouselSwiper_9kL2p .swiper-wrapper {
    align-items: center;
    justify-content: center;
}



/* 移除之前的大小缩放效果，保持一致的尺寸 */
.carouselSwiper_9kL2p .swiper-slide-active {
    opacity: 1;
}

.carouselSwiper_9kL2p .swiper-slide-prev,
.carouselSwiper_9kL2p .swiper-slide-next {
    opacity: 1;
}

/* Slide项 */
.slideItem_9kL2p {
    background-size: cover;
    background-position: center;


    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    opacity: 1;
    transform: scale(1);
}

.swiper-slide-active.slideItem_9kL2p,
.swiper-slide-duplicate-active.slideItem_9kL2p {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.swiper-slide-prev.slideItem_9kL2p,
.swiper-slide-duplicate-prev.slideItem_9kL2p {
    opacity: 1;
    transform: scale(1);
}

.swiper-slide-next.slideItem_9kL2p,
.swiper-slide-duplicate-next.slideItem_9kL2p {
    opacity: 1;
    transform: scale(1);
}

.slideItem_9kL2p.hidden,
.swiper-slide.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* 遮罩层 */
.slideOverlay_9kL2p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--overlay-color) 0%, transparent 60%);
    z-index: 1;
}

/* 内容区域 */
.slideContent_9kL2p {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    padding: 4rem;
    z-index: 2;
    color: var(--content-color);
}

.categoryTag_9kL2p {
    display: inline-block;
    font-size: var(--item-title-size, 2rem);
    color: var(--content-color);
    /* background: rgba(255, 255, 255, 0.2); */
    padding: 0.6rem 0;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    /* backdrop-filter: blur(10px); */
}

.slideTitle_9kL2p {
    font-size: var(--item-title-font-size, 2.4rem);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 1.2rem 0;
    max-width: 50%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slideDesc_9kL2p {
    font-size: var(--item-desc-font-size, 1.5rem);
    color: var(--item-desc-color, #fff);
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
    max-width: 85%;
}

/* 探索按钮 */
.exploreBtn_9kL2p {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--button-text-color, var(--content-color));
    border: 1.5px solid var(--button-border-color);
    padding: 1rem 2.5rem;
    font-size: var(--button-size, 1.5rem);
    border-radius: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.exploreBtn_9kL2p:hover {
    background: var(--theme-color, var(--themeColor1));
    border-color: var(--theme-color, var(--themeColor1));
    color: #fff;
    text-decoration: none;
}

/* 单个显示模式 */
.carouselSwiper_9kL2p.singleMode {
    padding: 0;
    height: auto;
    min-height: 50rem;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
}

.singleMode .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    transform: none !important;
    padding: 0;
}

.singleMode .swiper-slide:not(.hidden) {
    width: 100% !important;
    max-width: 100%;
    height: 50rem !important;
    flex-shrink: 0;
    flex-basis: auto !important;
    opacity: 1 !important;
    transform: scale(1) !important;
}

.singleMode .swiper-slide.slideItem_9kL2p:not(.hidden) {
    opacity: 1 !important;
    transform: scale(1) !important;
    height: 50rem !important;
    border-radius: 0;
}

/* 平板（Pad）样式，适用于平板设备的样式 */
@media (min-width: 768px) and (max-width: 1024px) {

    /* 平板显示1个项 */
    .carouselSwiper_9kL2p .swiper-slide {
        width: 100%;
        opacity: 1;
        transform: scale(1);

    }

    .categoryLabel_9kL2p {
        font-size: calc(var(--secondary-title-size, 2.2rem) * 0.97);
    }

    .subTitle_9kL2p {
        font-size: calc(var(--sub-title-font-size, 1.4rem) * 0.97);
    }

    .mainTitle_9kL2p {
        font-size: calc(var(--main-title-font-size, 3rem) * 0.97);
    }

    .tabItem_9kL2p {
        font-size: calc(var(--item-title-size, 2rem) * 0.97);
        padding: 0.8rem 2rem 1rem;
    }

    .categoryTag_9kL2p {
        font-size: calc(var(--item-title-size, 2rem) * 0.97);
    }

    .slideTitle_9kL2p {
        font-size: calc(var(--item-title-font-size, 2.4rem) * 0.97);
    }

    .slideDesc_9kL2p {
        font-size: calc(var(--item-desc-font-size, 1.5rem) * 0.97);
    }

    .exploreBtn_9kL2p {
        font-size: calc(var(--button-size, 1.5rem) * 0.97);
    }
}

/* 手机端样式 */
@media (max-width: 767px) {
    .carouselHeader_9kL2p {}

    .headerContent_9kL2p {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        
    }

    .carouselHeader_9kL2p::after{
        left: 2rem !important;
        right: 2rem !important;
    }

    .titleSection_9kL2p {
        text-align: center;
        width: 100%;
    }

    .categoryLabel_9kL2p {
        font-size: calc(var(--secondary-title-size, 2.2rem) * 0.9);
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .subTitle_9kL2p {
        font-size: calc(var(--sub-title-font-size, 1.4rem) * 0.9);
    }

    .mainTitle_9kL2p {
        font-size: calc(var(--main-title-font-size, 3rem) * 0.9);
    }

    .tabNavigation_9kL2p {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: center;
    }

    .tabNavigation_9kL2p::-webkit-scrollbar {
        display: none;
    }

    .tabItem_9kL2p {
        font-size: calc(var(--item-title-size, 2rem) * 0.9);
        padding: 0.8rem 1.8rem 1rem;
    }

    /* 移动端：swiper容器全屏宽，去除padding */
    .carouselSwiper_9kL2p {
        height: 42rem;
        padding: 0;
        width: 100%;
    }

    /* 移动端：slide宽度100% */
    .carouselSwiper_9kL2p .swiper-slide {
        width: 100% !important;
        opacity: 1 !important;
        transform: scale(1) !important;

    }

    .staticImageItem_9kL2p {
        height: 42rem;
    }

    .slideContent_9kL2p {
        padding: 3rem 2.5rem;
    }

    .categoryTag_9kL2p {
        font-size: calc(var(--item-title-size, 2rem) * 0.9);
    }

    .slideTitle_9kL2p {
        font-size: calc(var(--item-title-font-size, 2.4rem) * 0.9);
        max-width: 100%;
    }

    .slideDesc_9kL2p {
        font-size: calc(var(--item-desc-font-size, 1.5rem) * 0.9);
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .exploreBtn_9kL2p {
        font-size: calc(var(--button-size, 1.5rem) * 0.9);
        padding: 1rem 2.2rem;
    }

    .carouselSwiper_9kL2p.singleMode {
        padding: 0;
        margin: 0 calc(-50vw + 50%);
        width: 100vw;
    }

    .singleMode .swiper-slide:not(.hidden) {
        width: 100% !important;
        max-width: none;
        height: 42rem;
        opacity: 1 !important;
        transform: scale(1) !important;
    }
}