.wrap {
    width: 100%;
    position: relative;
    overflow: auto hidden;
    box-sizing: border-box;
    background-color: #F3F5F9;
}
@media (min-width: 0px) and (max-width:768px) {
    .product-box .item{
        width: 100% !important;
    }
    .banner{
        height: 200px !important;
    }
}

.product {
    margin-top: 86px;
}

.banner {
    width: 100%;
    height: 374px;
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.banner .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    display: flex;
    align-items: center;
}


.banner-title .cn {
    font-size: 32px;
    font-weight: 500;
}

.banner-title .en {
    font-size: 24px;

    font-family: DIN-pro;
}

.product-title {
    width: 100%;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 7%);
    margin-bottom: 50px;
    background-color: #fff;
    overflow: auto;
}
.product-title .contain{
    display: flex;
}

.product-title li {

    text-align: center;
    line-height: 56px;
    width: 146px;
    height: 56px;
    font-size: 16px;
    color: #666666;
    background-color: #fff;
    cursor: pointer;
    margin: 0;
}

.product-title li.active {
    color: #FFFFFF;
    background-color: #3D6ECF;
}


.product-box{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 115px!important;
}

.item {
    width: 30%;
    background-color: #fff;
    border-radius: 4px;
    text-align: center;
}

.item:hover .desc {
    width: 100%;
    height: 160px;
    text-align: left;
    background-size: 100%;
    background-color: #3D6ECF;
    transition: all .4s ease;
}
.item:hover .img{
    transform: scale(1.04);
}

.item:hover .title {
    color: #fff;
}

.item:hover .infor {
    color: #fff;
}
.img {
    margin: 71px 0 22px;
    /* width: 317px; */
    width: 230px;
    height: 150px;
    transition: all .4s ease;
    /* object-fit: cover; */
}

.desc {
    padding: 28px;
    height: 160px;
    text-align: center;
    transition: all .4s ease;
}
.desc .infor {
    height: 63px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    word-break: break-all;


}
.title {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    letter-spacing:-1px;
}

.infor {
    color: #666666;
    font-size: 15px;
}
.page{
    margin-bottom: 115px;
    display: flex;
    justify-content: center;
}
.prev,.next{
    width: 91px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    color: #333333;
    font-size: 18px;
    margin-right: 40px;
background-color:#FFFFFF ;
    border-radius: 21px;
    cursor: pointer;
}
.next{
    margin-right: 0;
    
}
.total-page{
    display: flex;
    gap: 20px;
    margin-right: 25px;
}
.total-page li{
    width: 41px;
    height: 41px;
    text-align: center;
    line-height: 41px;
    border-radius: 50%;
    background-color:#FFFFFF ;
    cursor: pointer;
}
.total-page li.active{
    background-color: #3D6ECF;
    color: #fff;

}
