.products2-list {
    padding: 30px 0px 0px;
}

.products2-list .item {
    width: 25%;
    margin: 0 auto;
    padding: 0px 15px 40px;
}

.products2-list li .pic {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 240px;
    border-radius: 50%;
}

.products2-list .pic:before {
    content: " ";
    position: absolute;
    background: url('../../images/common/news/hover.png') 0% 0% no-repeat;
    top: 45%;
    bottom: 0;
    left: -45%;
    right: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
    z-index: 11;
}

.products2-list .pic:after {
    content: " ";
    position: absolute;
    background: rgba(0%, 0%, 0%, 0.8);
    border: 1px solid #0047a8;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.products2-list a:hover .pic:before,
.products2-list a:hover .pic:after {
    opacity: 1;
    transition: all .2s ease-in-out;
}

.products2-list a:hover .pic:before {
    left: 0%;
}

.products2-list .name {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 28px;
    transition: all .2s;
}

.products2-list .box:hover .name {
    color: #999;
}

.products2-list .description {
    margin-top: 6px;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 70px;
    font-size: 15px;
    line-height: 1.6;
}


.products2-header {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 32px;
    text-align: center;
}

.products2-detail {
    padding-bottom: 20px;
}


.products-intro {
    margin-bottom: 50px;
}

.gallery {
    float: left;
    width: 56%;
    max-width: 680px;
}

.products-intro .pd-name {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 0px;
    padding: 7px 0 20px 50px;
    line-height: 1.2;
    background: url('../../images/common/products/a.png') 0 0 no-repeat;
}

.pd-price {
    display: block;
    vertical-align: middle;
    background: rgba(0,0,0,0.2);
    padding: 5px 20px;
    font-weight: bold;
    border-bottom: 1px solid #0047a8;
    margin: 5px 0 15px;
}

.thumbnails {
    float: right;
    width: 36%;
}

.thumbnails ul {
    margin: -45px -15px 0 0;
}

.thumbnails li {
    width: 50%;
    padding: 45px 15px 0;
}

.thumbnails li a {
    margin: 0 auto;
}

.thumbnails li .pic {
    overflow: hidden;
    max-width: 186px;
    position: relative;
}

.thumbnails li .pic:before {
    content: " ";
    position: absolute;
    background: url('../../images/common/news/hover.png') 0% 0% no-repeat;
    top: 43%;
    bottom: 0;
    left: -45%;
    right: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
    z-index: 11;
}

.thumbnails li .pic:after {
    content: " ";
    position: absolute;
    background: rgba(0%, 0%, 0%, 0.8);
    border: 1px solid #e60112;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.thumbnails li a:hover .pic:before,
.thumbnails li a:hover .pic:after {
    opacity: 1;
    transition: all .2s ease-in-out;
}

.thumbnails li a:hover .pic:before {
    left: 0%;
}

@media screen and (max-width: 800px) {
    .products2-list .item {
        width: 33.33%;
    }
}

@media screen and (max-width: 767px) {
    .products2-list .item {
        width: 50%;
    }
}

@media screen and (max-width: 520px) {
    .products2-list .item {
        width: 100%;
    }
}