/*------------ product-list ------------*/

.product-list {
    margin: 0 -20px;
}

.product-list .box {
    position: relative;
}

.product-list li {
    width: 25%;
    padding: 0 20px 60px;
}

.product-list li:nth-child(4n+1) {
    clear: left;
}

.product-list>li>.pic-box {
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.product-list .pic {
    position: relative;
    box-sizing: border-box;
    transition: all .2s;
    border: 1px solid #ffffff;
    z-index: 1;
    overflow: hidden;
}

.product-list li.has-top .cover2 {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 15;
    width: 30px;
    height: 30px;
    background: #00a1e9;
}

.product-list li.has-top .cover2 b {
    position: absolute;
    bottom: 100%;
    top: 0px;
    left: 10px;
    z-index: 50;
    margin: 0px 0 14px 0px;
    color: #fff;
}

.product-list .box:hover .pic {
    border-color: #00A1E9;
}

.product-list .text {
    margin: 10px auto 0;
    text-align: center;
    line-height: 1.2;
}

.product-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222222;
    font-size: 16px;
}

.product-list li:hover .name {
    color: #00A1E9;
}

.product-list .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.product-list .box:hover .pic img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.product-list .box .description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
    line-height: 1.5;
    color: #a2a2a2;
    margin: 10px 0 0;
}

/*------------ detail ------------*/

.products-info {
    max-width: 600px;
    margin: 0 auto;
}

.gallery {
    position: relative;
}

.gallery-arrow {
    margin: 40px 0 25px;
    text-align: center;
    position: relative;
}

.gallery-arrow button {
    border: 0;
    text-align: center;
    background: transparent;
    padding: 0;
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    color: #999999;
    margin: 0 15px;
    position: relative;
    top: -10px;
    outline: none;
}

.gallery-dot {
    display: inline-block;
}

.gallery-dot .slick-dots,
.gallery-dot .slick-dots li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    display: inline-block;
}

.gallery-dot .slick-dots li {
    margin: 0 6px;
}

.gallery-dot .slick-dots button {
    width: 12px;
    height: 12px;
    margin: 0;
    display: block;
    color: transparent;
    background: #c8c8c8;
    top: 0;
    outline: none;
    border-radius: 50%;
}

.gallery-dot .slick-active button {
    background: #000000;
}


/*------------ products-title ------------*/

.products-detail {
    border-bottom: 1px solid #dadada;
    margin: 0 -15px;
    padding: 25px 35px;
}

.products-detail .title {
    font-size: 18px;
    color: #000000;
    text-align: center;
    font-weight: bold;
    padding: 6px 0;
    margin: 0 -35px 30px;
    border: 1px solid #D4D1C6;
    border-width: 0px 0 1px;
    position:relative;
}
.products-detail .title:after{
    content:'';
    width:120px;
    height:3px;
    background:#000;
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    display:block;
    margin:0 auto;
}
.products-detail .title i {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 2px 0;
    font-weight: normal;
    font-size: 17px;
}

.Intro{
    font-size: 15px;
   /* text-align: center;*/
    padding:10px 0;
    letter-spacing: 1px;
}
/*------------ rwd ------------*/

@media screen and (max-width: 1440px) {
    .product-list li {
        width: calc((100% / 3) - 0.1px);
        padding: 0 10px 35px;
    }

    .product-list li:nth-child(3n+1) {
        clear: left;
    }

    .product-list li:nth-child(4n+1) {
        clear: none;
    }
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 900px) {
    .products-detail {
        padding: 25px 15px;
    }

    .products-detail .title {
        margin: 0 -15px 30px;
        font-size: 16px;
        margin-bottom: 0;
    }
}

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

    .product-list li:nth-child(2n+1) {
        clear: left;
    }

    .product-list li:nth-child(3n+1) {
        clear: none;
    }
}

@media screen and (max-width: 600px) {}

@media screen and (max-width: 480px) {
    .product-list {
        margin: 0;
    }

    .product-list li {
        width: 100%;
        padding: 0 0 60px;
    }

    .gallery-arrow .slick-arrow {
        position: absolute;
        margin: 0 0 0 -26px;
        bottom: 10px;
        /* left: 50%; */
    }

    .gallery-arrow .slick-next {
        margin: 0 0 0 14px;
    }
}

@media screen and (max-width: 400px) {}