.products-list {
    margin: 0 -15px;
}
.products-list .item {
    width: 25%;
    padding: 0 15px;
}
.products-list .item:nth-chil(4n+1) {
    clear: left;
}
.products-list .box {
    max-width: 298px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
}
.products-list .pic {
    position: relative;
    overflow: hidden;
}
.products-list .pic:before {
    content: "";
    background: rgba(34,34,34,0.60);
    position: absolute;
    height: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.products-list .box:hover .pic:before{
    opacity: 1;
    height: 100%;
}
.products-list .name {
    display: block;
    background: url('../images/products/name_bg.png') repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 18px;
    line-height: 45px;
    padding: 0 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.products-list .txt {
    text-align: left;
    height: 42px;
    line-height: 42px;
    padding: 10px 0;
}
.products-list .description {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1.5;
    color: #51504C;
    max-height: 42px;
    overflow: hidden;
}
.products-list .more {
    border: 1px solid #ACACAC;
    line-height: 36px;
    color: #888;
    font-size: 14px;
}
.products-list .box:hover .more {
    background: #DA2127;
    color: #fff;
}

.products-intro,
.products-detail {
    max-width: 1100px;
    margin: 0 auto 50px;
}
.gallery {
    float: left;
    width: 39%;
}
.products-intro-txt {
    float: right;
    width: 56%;
    padding-top: 30px;
}
.thumbnails {
    position: relative;
    padding: 0 45px;
}
.thumbnails .slick-prev,
.thumbnails .slick-next {
    white-space: nowrap;
    text-indent: 100%;
    text-align: left;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: url(../images/products/thumbnails_arrow.png) no-repeat;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    margin-top: -22px;
}
.thumbnails .slick-prev {
    left: 0;
    background-position: 0 0;
}
.thumbnails .slick-next {
    right: 0;
    background-position: 100% 0;
}
.thumbnails .slick-prev:hover {
    background-position: 0 100%;
}
.thumbnails .slick-next:hover {
    background-position: 100% 100%;
}
.thumbnails .item {
    padding: 0 5px;
}
.thumbnails .box {
    max-width: 156px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.thumbnails .box:hover:before,
.thumbnails .item.active .box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(34,34,34,0.60);
}
.products-info {
    font-size: 14px;
}
.products-name {
    color: #DD3339;
    font-size: 22px;
    font-weight: bold;
}
.products-description {
    line-height: 1.6;
    padding: 25px 0 30px;
}
.products-description:before {
    content: '';
    display: block;
    width: 50px;
    border-top: 1px solid #aaa;
    margin-bottom: 25px;
}

.detail-title {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}
.detail-title:before,
.detail-title:after {
    content: '';
    border-top: 1px solid #aaa;
    position: absolute;
    top: 50%;
}
.detail-title:before {
    left: 0;
    right: 50%;
    margin-right: 97px;
}
.detail-title:after {
    left: 50%;
    right: 0;
    margin-left: 97px;
}
.detail-title span {
    display: inline-block;
    vertical-align: middle;
    background: rgba(182,182,182,0.80);
    color: #fff;
    font-size: 18px;
    line-height: 45px;
    width: 144px;
}

@media screen and (max-width: 1300px) {
    .gallery {
        width: 48%;
    }
    .products-intro-txt {
        width: 50%;
    }
}
@media screen and (max-width: 1200px) {
    .products-list .item {
        width: 50%;
    }
    .products-list .item:nth-chil(4n+1) {
        clear: none;
    }
    .products-list .item:nth-chil(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .products-list {
        margin: 0 -7px;
    }
    .products-list .item {
        padding: 0 7px;
    }
    .products-list .box {
        margin-bottom: 30px;
    }
    .gallery,
    .products-intro-txt {
        float: none;
        width: auto;
    }
    .products-intro-txt {
        padding-top: 0;
    }
    .gallery {
        max-width: 428px;
        margin: 15px auto 0;
    }
    .thumbnails {
        max-width: 428px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 440px) {
    .products-list .item {
        width: 100%;
    }
}