.products-list {
    margin: 0px -30px 0px;
    border-bottom: 1px solid #ddd;
}
.products-list .item {
    width: 50%;
    padding: 0 50px;
}

    
   .products-list .box {
    overflow: hidden;
    margin: 0 auto 50px;
    background: #F9F9F9;
    padding: 6px;
    position:relative;

}


.products-list .box:before,.products-list .box:after{
    width: 12px;
    height: 12px;
    content: '';
    display: block;
    position: absolute;
    transition: all 0.3s ease;
   
}

.products-list .box:before{
    right: 0;
    top: 0;
    border-right: 1px solid #a6a6a6;
    border-top: 1px solid #a6a6a6;

}

.products-list .box:after{
    bottom: 0;
    left: 0;
    border-left: solid 1px #a6a6a6;
    border-bottom: solid 1px #a6a6a6;
}
.products-list .box:hover:before,.products-list .box:hover:after{
    width: calc(100% - 1px);
    height: calc(100% - 1px);
     border-color:#f5c501;
}


.products-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.products-list .pic {
    /* border: 6px solid #E4EDEA; */
    position: relative;
    overflow: hidden;
    float: left;
    /* padding: 6px; */
    box-sizing: border-box;
    z-index: 9;
}

.products-list .txt {
    margin-left: 295px;
    padding: 20px 20px;
    z-index: 10;
    position: relative;
}
.products-list .txt:before{
     content: '';
     display: inline-block;
     position:absolute;
     width: 33px;
     height: 1px;
     background:#aaa;
     top: 32px;
     left: -27px;
     right:0;
     transition: all 0.3s ease;
}
.products-list .name {
    color: #262626;
    font-size: 18px;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 5px;
    height: 31px;
    
    
}
.products-list .description {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 69px;
    margin-bottom: 20px;
    color: #929292;
}
.products-list .more {
    color: #777777;
    font-size: 13px;
    /* text-decoration: underline; */
    padding-bottom: 9px;
    position: relative;
    z-index:1;
    transition: all 0.3s ease;
}



.products-list .more:after {
    content: '';
    display: inline-block;
    position:absolute;
    width:85px;
    height: 2px;
    background:#f5c501;
    bottom:0;
    left:0;
    right:0;
    transition: all 0.3s ease;
    z-index:-1;
    
}
.products-list .box:hover .more{
    letter-spacing:2.3px;
      
}


.products-list .box:hover .more:after{
    width:95px;
}

.pd-intro{
    text-align: center;
    color: #333333;
    font-size: 14px;
    font-weight:600;
    margin:auto;
    padding:30px 0 0px;
}
.products-gallery {
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 40%, #ffffff 40%, #f6f6f6 40%, #f6f6f6 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 40%,#ffffff 40%,#f6f6f6 40%,#f6f6f6 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 40%,#ffffff 40%,#f6f6f6 40%,#f6f6f6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 ); /* IE6-9 */
    padding: 30px 0 50px;
}
.gallery {
    max-width: 910px;
    margin: 0 auto;
}
.gallery .slider {
    background: #f6f6f6;
    padding: 30px;
    margin-bottom: 36px;
}
.gallery .stage .pic {
    border: 6px solid #fff;
}
.gallery .thumbnails ul {
    margin: 0 -4px;
}
.gallery .thumbnails li {
    width: 16.66%;
    padding: 0 4px 4px;
}
.gallery .thumbnails li a {
    position: relative;
    overflow: hidden;
}
.gallery .thumbnails li a:hover:before,
.gallery .thumbnails li.active a:before {
    content: '';
    display: block;
    background: url(../../images/common/products/small_hover.png) 50% 50% no-repeat rgb(204 204 204 / 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
/*
.gallery .thumbnails li a:before {
    content: '';
    display: block;
    background: url(../../images/common/products/small_hover.png) 50% 50% no-repeat rgba(71,163,138,0.50);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity:0;
    top:50%;
    transition:all 0.4s linear;
    max-width: 144px;
}
.gallery .thumbnails li a:hover:before,
.gallery .thumbnails li.active a:before {
   margin-top:-50px;
    opacity:1;
}*/
.gallery-control {
    display: none;
}
.products-detail {
    background: #f6f6f6;
    padding: 10px 0 80px;
}
.products-detail .container {
    max-width: 1130px;
}
.products-detail + .btn-box {
    padding-top: 50px;
}
.products-detail-txt{
    color: #555;
    font-size: 14px;
    width:100%;
    max-width: 1100px;
    margin:auto;
    line-height: 1.9em;
}
@media screen and (max-width: 1330px) {
    .products-list {
        margin: 0 -20px;
    }
    .products-list .item {
        padding: 0 20px;
    }
}
@media screen and (max-width: 1100px) {
    .products-list .item {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .products-list .txt:before{
        display:none;
    }
     .products-list .pic {
        float: none;
        max-width: 282px;
        margin: 0 auto 10px;
    }
    .products-list .txt {
        margin: 0;
        padding: 0;
        text-align: center;
    }
    .products-list .description {
        height: auto;
        max-height: 85px;
        margin-bottom: 10px;
    }
    .gallery .stage {
        padding: 15px;
        margin-bottom: 10px;
    }
    .gallery .stage .pic {
        border-width: 3px;
    }
    .gallery .thumbnails {
       width:100%;
    }
   
    .gallery-control .btn {
        color: #f5c501;
        width: 40px;
        height: 40px;
        font-size: 30px;
        text-align: center;
    }
    .gallery-control .page-control {
        float: left;
        padding: 0 5px;
        color: #aaa;
    }
    .gallery-control .page-control .current {
        font-size: 30px;
        color: #f5c501;
    }
    .gallery .thumbnails li {
    width: 33.33%;
    /* padding: 0; */
}
.gallery .slider {
    padding: 10px;
}
.gallery .thumbnails li a:before {  
    top:50%;
}
.products-detail {
    padding: 10px 5px 30px;
}
.products-gallery {
    padding: 30px 0;
}
}
@media screen and (max-width: 380px) {
.gallery .thumbnails li a:before {  
    top:40%;
}
}