.product{
    padding: 40px 0 60px;
}
.product-wrap{
    padding-top: 37px;
}
.product-wrap .col-md-3{
    padding: 0 10px;
}
.subbar{
    border: 1px solid #eee;
    background-color: #fff;
}
.subbar h3{
    font-size: 24px;
    line-height: 28px;
    color: #042B7B;
    padding: 31px 0;
    position: relative;
    padding-left: 37px;
}
.subbar h3:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #042B7B;
    content: '';
}
.subbar li{
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
    padding-left: 37px;
    background-color: transparent;
    transition: all 0.5s;
}
.subbar li a {
    display: block;
    font-size: 18px;
    color: #333;
}
.subbar li.active,
.subbar li:hover{
    background-color: #042B7B;
}
.subbar li.active a,
.subbar li:hover a{
    color: #fff;
}
.product-list{
    margin: -10px 0;
}
.product-list .col-md-4{
    padding: 10px;
}
.product-list .product-items{
    background-color: #fff;
    padding: 30px 40px;
    text-align: center;
    transition: all 0.5s;
}
.product-list .product-items p{
    height: 60px;
    font-style: italic;
    font-size: 16px;
    line-height: 20px;
    color: #333;
    margin-top: 20px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp:3;
    -webkit-box-orient: vertical;
}
.product-list a:hover .product-items{
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.5);
}

@media (max-width: 992px){
    .subbar h3{
        display: none;
    }
    .subbar li{
        float: left;
        width:48%;
        line-height: 36px;
        height: 36px;
        border: none;
        padding: 0;
        text-align: center;
        margin: 1%;
    }
    .subbar li a{
        border: 1px solid #eee;
        font-size: 12px;
    }
    .product-list .product-items{
        padding: 15px 0;
    }
    .product-list{
        margin: 0;
    }
    .product-list .product-items img{
        max-width: 100px;
    }
    .product-list .product-items p{
        font-size: 14px;
        line-height: 1.6;
    }
}