.banner {
    position: relative;
    margin-top: 100px;
    width: 100%;
    /* height: 800px; */
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .desc {
    position: absolute;
    top: 26%;
    left: 8%;
}

.banner .desc .titleE {
    font-size: 72px;
    font-family: 'objectivitybold';
    width: 200px;
}

.banner .desc .title {
    font-size: 44px;
    margin-top: 100px;
    position: relative;
}

/* .banner .desc .title::after {
    content: '';
    position: absolute;
    width: 56px;
    height: 6px;
    background: #fff;
    bottom: -30px;
    left: 0;
} */

.banner .desc .text {
    width: 80vw;
    margin-top: 60px;
    font-size: 30px;
}

.product_box {
    background: url("../images/productList_bg.png") no-repeat;
    padding-bottom: 100px;
    box-sizing: border-box;

}

.type {
    padding: 40px 160px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}

.type .type_item {
    /* width: 360px; */
    height: 80px;
    background: #fff;
    text-align: center;
    line-height: 80px;
    font-size: 20px;
    color: #999;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;


}


.type .active {
    background: #0c9e0d;
    color: #fff;

}

.product_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 160px;
    box-sizing: border-box;
    margin-top: 20px;
}

.product_list .product_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-sizing: border-box;
}

.product_list .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.product_list .title {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;

}

.product_list .desc {
    color: #999;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    display: box;
    text-overflow: ellipsis;
    overflow: hidden;

}

.product_list .more {
    margin-top: 20px;
    margin-bottom: 20px;

}

.product_list .img_box {
    width: 100%;
    height: 20vw;
    overflow: hidden;
    border-radius: 20px;
}

.product_list .product_item:hover .img_box img {
    transform: scale(1.08);

}

@media screen and (max-width:1600px) {
    .type .type_item {
        /* width: 300px; */
        height: 70px;
        line-height: 70px;
        font-size: 18px;
    }
}

@media screen and (max-width:1500px) {
    .type .type_item {
        /* width: 300px; */
        height: 70px;
        line-height: 70px;
        font-size: 18px;
    }
}
@media screen and (max-width:800px) {
    .banner{
        height:180px;
        margin-top:80px;
    }
    .banner .desc .title{
        font-size: 20px;
        margin-top:10px;
    }
    .banner .desc .text{
        margin-top:20px;
        font-size: 14px;
        width:100%;
    }
    .banner .desc .title::after{
        width: 26px;
    height: 3px;
    background: #fff;
    bottom: -10px;
    }
    .type{
        padding:20px 40px 10px;
        display: flex !important;
        flex-direction: column !important;

    }
    .type .type_item{
        width:100%;
        height:50px;
        line-height: 50px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .product_list{
        grid-template-columns: repeat(1, 1fr);
        padding: 0 20px;
        margin-top:0px;
    }
    .product_list .img_box{
        height:250px;
    }
    .product_list .more{
        width:40px !important;
        height:40px !important;
    }
    .product_box{
        padding-bottom: 20px;
    }
}