body,html{
    background-color: #fff;
}

.Products .content .container_header {
    background: url('/skin/index/default/assets/images/fontbg-products.png') no-repeat center center;
    background-size: cover;
    width: 25vw;
    height: 6vw;
    text-align: center;
}

.Products .catalogue li {
    width: 47%;
    display: inline-block;
    border-radius: 0.4vw;
    overflow: hidden;
    margin: 2vw 1%;
    background-color: #fff;
    box-shadow: 0px 1vw 1vw rgb(204 204 204 / 17%);
    
}
.Products .catalogue li .imgbox{
    width: 100%;
    /* max-height: 25vw; */
    min-height: 12vw;
    overflow: hidden;
    background-color: #f8f8f8;
}
.Products .catalogue li .imgbox img{
    width: 100%;
    transition: all 0.25s ease 0s;
	-webkit-transition: all .25s ease-in;
}
.Products .catalogue li:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1); 
}
.Products .catalogue li:hover .btn{
    padding: 0.55vw 4.6vw;
    color: #fff;
    background-color: #1677ff;
 }

.Products .catalogue li .info{
    margin: 2.65vw;
    text-align: center;
}


.Products .catalogue li .info .title{
    margin: 1.45vw auto;
    font-size: 1.68vw;

    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;

}
