.slider-section {
    overflow: hidden;
    min-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.slider-section h2 {
    font-size: 60px;
    margin: 60px auto;
    text-align: center;
}

.solution-slider {
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    overflow: hidden;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0.3;
    transform: scale(1);
    border-radius: 34px;
    will-change: transform, opacity;
}

.swiper-slide-active {
    max-width: 830px;
    transform: scale(1.5);
    z-index: 55;
    opacity: 1;
    cursor: pointer;
}


.slide-image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
}

.slide-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 34px;
}

.slide-content {
    opacity: 0;
    text-align: center;
    /* 移除绝对定位，让文字在图片下方 */
    /*position: absolute;*/
    /*width: 100%;*/
    /*max-width: 100%;*/
    /*left: 0;*/
    /*top: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    padding: 20px;
    box-sizing: border-box;
    /*overflow: hidden;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}

.slide-content h3.title {
    /*font-size: 24px;*/
    font-size: 18px;
    font-weight: bold;
    color: #000; /* 改为深色，因为文字在图片下方 */
}

.slide-content .slide-desc .desc-item{
    font-size: 14px;
    color: #000; /* 改为深色，因为文字在图片下方 */
    text-align: left;
}

.slide-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.swiper-slide-next {
    transform: translateX(-130px);
}

.swiper-slide-prev {
    transform: translateX(130px);
}


/*
.swiper-slide-active .slide-image-container::after {
    content: "";
    !* 必须设置内容 *!
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 195, 195, 0.5);
    pointer-events: none;
    border-radius: 34px;
}
*/

.swiper-slide-active .slide-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}


.custom-prev-arrow,
.custom-next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.custom-prev-arrow .iconfont,
.custom-next-arrow .iconfont {
    font-size: 60px !important;
    font-weight: bold;
    color: #7d797b;
}

.custom-prev-arrow {
    left: -130px;
}

.custom-next-arrow {
    right: -130px;
}

.swiper-container {
    overflow: visible;
}

.custom-prev-arrow .iconfont.icon-arrow1 {
    transform: rotate(180deg);
}

/* 分页器容器样式 */
.swiper-pagination {
    position: initial!important;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 40px !important;
}

/* 分页点样式 */
.swiper-pagination-bullet {
    width: 30px !important;
    height: 30px !important;
    margin: 0 8px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #999;
    font-size: 12px;
}

/* 激活状态的分页点样式 */
.swiper-pagination-bullet-active {
    background-color: #00bcd4;
    color: white;
}

/* 时间轴容器 */
.timeline-swiper {
    padding: 40px 0;
}

/* Swiper 主容器 */


/* 分页器容器 */
.swiper-pagination {
    display: flex;
    justify-content: space-evenly;
    gap: 60px;
    position: relative;
    margin-top: 30px;
}

/* 单个分页项 */
.timeline-bullet {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

/* 圆点标记 */
.bullet-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

/* 文字标签 */
.bullet-text {
    font-size: 18px;
    color: #666;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* 激活状态（当前 Slide） */
.timeline-bullet-active .bullet-dot {
    background: #12c3c3;
    /* 激活颜色 */
    transform: scale(1.2);
    /* 稍微放大 */
}

.timeline-bullet-active .bullet-text {
    color: #12c3c3;
    /* 文字高亮 */
    font-weight: 600;
}

/* 时间轴连接线（可选） */
section.customizable {
    margin: 80px auto;
}

.swiper-pagination::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: -1;
}


/* customizable-list */
.customizable-list {
    margin: 80px 30px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.customizable-item {
    position: relative;
    cursor: pointer;
}

.customizable-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 195, 195, 0.7);
    pointer-events: none;
    transition: background-color 0.3s ease;
}

.customizable-item:hover::after {
    background-color: transparent;
}

.customizable-item:hover .content {
    color: #313131;
    opacity: 0;
}

.customizable-item .img {
    overflow: hidden;
    display: block;
    position: relative;
}

.customizable-item .img img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.customizable-item:hover .img img {
    transform: scale(1.1);
}

.customizable .title {
    font-size: 60px;
    text-align: center;
}

.customizable-item .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #fff;
    z-index: 5;
}

.customizable-item .content .title {
    font-size: 48px;
}

/* R&D */
.research-development {
    margin: 80px auto;
}

.development-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    font-size: 0;
}

.development-item .item-img {
    flex: 0 0 50%;
    overflow: hidden;
    display: block;
    position: relative;
}

.development-item .item-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.development-item .item-img:hover img {
    transform: scale(1.1);
}

.development-item .item-content {
    flex: 0 0 50%;
    padding: 0 4%;
    background: rgba(59, 219, 219, 0.8);
    color: #fff;
    text-align: left;
}

.item-content .item-title {
    /*font-size: 40px;*/
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    margin-top: 40px;
}

.item-content .item-text {
    /*font-size: 22px;*/
    font-size: 16px;
    line-height: 1.6;
    margin-top: 30px;
}

.why-maxcore .title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.advantage-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}


@media (min-width: 2560px) {}

@media (max-width: 1600px) {
    .swiper-slide-next {
        transform: translateX(-300px);
    }

    .swiper-slide-prev {
        transform: translateX(300px);
    }
}

@media (max-width: 1440px) {
    .swiper-slide-next {
        transform: translateX(-230px);
    }

    .swiper-slide-prev {
        transform: translateX(230px);
    }
}

@media (max-width: 1024px) {}

@media (max-width: 768px) {

    .slider-section {
        min-height: 60vh;
    }

    .slide-content h3.title{
        font-size: 14px;
    }

    .slide-content .slide-desc .desc-item{
        font-size: 12px;
    }

    .banner-section .banner-img img{
        height: 50vh;
        object-fit: cover;
    }

    .banner-section .banner-content{
        width: 100%;
    }

    .banner-content .desc{
        font-size: 18px;
    }

    .swiper-pagination {
        bottom: -50px;
        width: 200px;
        margin-top: 0 !important;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 20px;
    }

    .slider-section h2,
    .customizable .title {
        font-size: 32px;
    }

    .customizable-item .content .title {
        font-size: 32px;
    }

    .slider-section h2 {
        margin: 40px auto;
    }

    .slide-content h3 {
        font-size: 20px;
    }

    .swiper-slide-active,
    .slide-image-container,
    .slide-image {
        max-width: 100%;
    }

    .bullet-dot {
        width: 12px;
        height: 12px;
    }

    .swiper-pagination {
        gap: 20px;
    }

    .bullet-text {
        font-size: 12px;
    }

    /* section.customizable {
        margin: 40px 2%;
    } */

    .customizable-list {
        flex-direction: row;
        margin: 40px 2%;
        flex-wrap: wrap;
    }

    .advantage-list{
        gap: 10px;
    }

    .why-maxcore .title{
        font-size: 32px;
    }

    .customizable-item{
        width: 48%;
    }

    .swiper-slide-prev {
        transform: translateX(80px) !important;
    }

    .swiper-slide-next {
        transform: translateX(-80px) !important;

    }

    .swiper-slide-active {
        transform: scale(1.2) !important;
    }

    .swiper-slide {
        padding: 0;
    }

    .research-development {
        margin: 40px 2%;
    }

    .development-list{
        padding: 0;
    }

    .development-item {
        flex-direction: column;
        margin-top: 20px;
    }

    .item-content .item-title{
        font-size: 26px;
    }

    .development-item:nth-child(2) .item-content,
    .development-item:nth-child(4) .item-content {
        order: 2;
    }

    .development-item:nth-child(2) .item-img,
    .development-item:nth-child(4) .item-img {
        order: 1;
    }

    .development-item .item-text {
        font-size: 14px;
        margin: 20px auto;
    }

    /* 移动端优化 */
    .slide-content {
        padding: 15px;
    }

}

@media (max-width: 480px) {
    .swiper-pagination {
        bottom: -45px;
        width: 160px;
    }

    .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 15px;
    }

    .swiper-slide-prev {
        transform: translateX(60px) !important;
    }

    .swiper-slide-next {
        transform: translateX(-60px) !important;

    }

    .swiper-slide-active {
        transform: scale(1.2) !important;
    }

    .swiper-slide {
        padding: 0;
    }
}
