.product {
    position: relative;
}
.product .product_wrapper {
    max-width: 1200px;
    margin: 50px auto 0;
    display: flex;
}
.product .product_wrapper .product_menu {
    width: 20%;
}
.product .product_wrapper .product_content {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    width: 80%;
    margin-left: 30px;
	min-height: 600px;
}
.product .product_wrapper .product_content .productitem {
    position: relative;
    width: 32%;
    height: auto;
    cursor: pointer;
    margin-bottom: 30px;
    overflow: hidden;
	margin-right:15px;
}
.product .product_wrapper .product_content .productitem:nth-child(3n){
    margin-right: 0;
}

.product .product_wrapper .product_content .productitem .productitem_wrapper {
    background: #E6EDF6;
    border: 2px solid #fff;
    overflow: hidden;
    position: relative;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper .productitem_img {
    overflow: hidden;
    background: #E6EDF6;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper .productitem_img img {
    width: 100%;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper .productitem_info {
    width: 100%;
    height: 100%;
    background: #F1F1F1;
    transition: all ease-out .3s;
    text-align: center;
        padding: 10px 14px 14px;
  }
.product .product_wrapper .product_content .productitem .productitem_wrapper .productitem_info h3 {
    padding-top: 5px;
    color: #14212D;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper .productitem_info p {
    font-size: 14px;
    color: #696969;
    text-align: left;
    text-indent: 2em;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper .productitem_info::before,
.product .product_wrapper .product_content .productitem .productitem_wrapper .productitem_info::after {
    position: absolute;
    content: '';
    opacity: 0;
    transition: all 0.5s;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper .productitem_info::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 2px solid #1D64B4;
    transform: scale(0, 1);
    transform-origin: 0 0;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper .productitem_info::after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-right: 2px solid #1D64B4;
    border-left: 2px solid #1D64B4;
    transform: scale(1, 0);
    transform-origin: 100% 0;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper:hover .productitem_info::before,
.product .product_wrapper .product_content .productitem .productitem_wrapper:hover .productitem_info::after {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper:hover .productitem_info {
    background: #1D64B4;
    color: #fff;
    transition: all 0.5s;
}
.product .product_wrapper .product_content .productitem .productitem_wrapper:hover .productitem_info h3,
.product .product_wrapper .product_content .productitem .productitem_wrapper:hover .productitem_info p {
    color: #fff;
    transition: all 0.5s;
}
.product .product_wrapper .product_content .productitem:hover img {
    transform: scale(1.2, 1.2);
}
@media screen and (max-width: 1200px){
    .product_wrapper{
        width: 92%;
        margin: 0 auto;
    }
    .productitem{
        width: 48% !important;
    }
    .productitem:nth-child(3n){
        margin-right: 15px !important;
    }
    .productitem:nth-child(2n){
        margin-right: 0 !important;
    }

}
@media screen and (max-width: 768px){
    .product .pagination{
        padding-bottom: 30px !important;
    }
    .product_wrapper{
        margin-top: 10px !important;
    } 
    .product_content{
        width: 95% !important;
        margin: 10px auto 0 !important;
    }
    .product_content .productitem{
        width: 100% !important;
        margin: 0 auto 20px !important;
    }
}  