
.product-carousel-section {
    margin: 60px 0;
    position: relative;

}

.product-carousel-section:after {
    content: '';
    bottom: 0;
    height: 50%;
    width: 100%;
    background: rgb(28 81 188 / 15%);
    position: absolute;
}

.product-carousel-title {
    text-align: center;
    margin-bottom: 30px;
}

.product-carousel-title h2 {
    font-size: 28px;
    color: #333;
    margin: 0;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.product-carousel-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #004d99;
}

.product-carousel {
    position: relative;
    overflow: hidden;

}

.carousel-wrapper {
    overflow: hidden;
}

.carousel-items {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

.product-card {

}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: fill;
    box-shadow: 8px 8px 15px 0 rgb(28 81 188 / 10%);
    border: 2px rgb(28 81 188 / 15%) solid;
}

.product-info {
    padding: 30px 20px;
    text-align: center;
}

.culture_pic {
    border-radius: 15px;
}

.product-title {
    font-size: 1rem;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 60px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #004d99;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background 0.3s ease;
    z-index: 10;
}

.swiper-button-next, .swiper-button-prev {
    color: rgb(77 77 77 / 40%);
    top: 32% !important;
    width: 20px;
}


.carousel-nav:hover {
    background: #013e7b;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.culture_title {
    color: #1c51bc;
    font-weight: bold;
    font-size: clamp(24px, 2vw, 38px);
    position: relative;
    margin: 50px 0 40px;
}

.culture_title:before {
    content: '';
    position: absolute;
    width: 85%;
    height: 1px;
    background-color: #1c51bc;
    right: 0;
    top: 50%;
}

.culture_title:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #1c51bc;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.culture_p p {
    font-size: 1rem;
    line-height: 2;

}

.yjs-box {
    border-radius: 15px;
    background-color: #fbfcff;
    margin-top: 100px;
    overflow: hidden;

}

.yjs-title {
    background-color: #1c51bc;
    text-align: center;
    color: #ffffff;
    padding: 20px 0;
    font-size: clamp(24px, 2vw, 38px);
    font-weight: bold;

}

.culture_p p {
    font-size: 1rem;
    line-height: 2;

}

.yjs-box .culture_p {
    padding: 50px;
}

.yjs-box .culture_p .more-link {
    text-align: right;
    margin-top: 80px;
    color: #1c51bc;
    font-size: 14px;
}


/* 响应式设计 */
@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 50%;
    }
    .culture_title{
        margin: 30px 0 20px;
    }
    .culture_title:before{
        width: 65%;
    }
 
    .product-image {
        height: 150px;
    }
    .product-carousel-section{
        margin: 30px 10px;
    }
    .culture-img{
        margin-bottom: 10px;
    }
    .yjs-title{
        padding: 5px 0;
    }
    .yjs-box{
        margin-top: 30px;
    }
    .yjs-box .culture_p {
        padding: 20px;
    }
    .yjs-box .culture_p .more-link{
        margin-top: 10px;
    }

}

@media (max-width: 480px) {
    .carousel-item {
        flex: 0 0 100%;
    }


    .product-image {
        height: 200px;
    }
}