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

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

.product-list li {
    width: calc((100% / 3) - 0.1px);
    padding: 0 20px;
}

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

.product-list>li>a {
    margin: 0 auto;
    max-width: 300px;
    box-sizing: border-box;
}

.product-list .pic,
.thumbnails li a {
    position: relative;
    box-sizing: border-box;
    z-index: 1;
    transition: all .2s;
}

.product-list .pic:hover {
    opacity: .5;
}

.product-list .text {
    max-width: 300px;
    margin: 0 auto 70px;
}

.product-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666666;
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
}

.product-list li .description {
    color: #777777;
    line-height: 1.4;
    height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-list li .more {
    display: block;
    width: 190px;
    height: 45px;
    line-height: 45px;
    margin: 35px auto 0;
    color: #666666;
    text-align: center;
    border: 1px solid #CCCCCC;
    border-radius: 30px;
    font-size: 13px;
    position: relative;
}

.product-list li .more:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #DB0000 transparent transparent transparent;
    left: 50%;
    margin: -3px 0 0 -6px;
}



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

.product-name {
    font-size: 25px;
    line-height: 1.2;
    color: #666666;
    margin: 0 0 20px;
}

.products-info {
    margin: 80px 0 0;
}

.products-info .txt {
    float: right;
    width: 46%;
    box-sizing: border-box;
    line-height: 1.2;
}

.products-info .content-title {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 20px;
    font-weight: normal;
}

.products-info .products-breadcrumb {
    margin: 0px 0 20px 0;
    padding: 5px 10px;
    line-height: 1.4;
    border: 1px solid #ddd;
}

.products-info .slider {
    float: left;
    width: 51%;
}

.products-info .slider .pic {
    -webkit-border-top-right-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius-topright: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
    position: relative;
}

.thumbnails ul {
    margin: 0 -6px;
}

.thumbnails li a {
    margin: 0;
}

.thumbnails li {
    padding: 0 6px 20px;
    width: calc((100% / 3) - 0.1px);
}


.thumbnails li a:before,
.thumbnails li a:after {
    position: absolute;
    display: block;
    transition: all .2s;
    opacity: 0;
}

.thumbnails li a:before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    z-index: 0;
}

.thumbnails li a:after {
    content: "\e1032";
    color: #ffffff;
    font-size: 21px;
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    display: block;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 15;
    top: 0;
    left: 50%;
    margin: -17px 0 0 -17px;
}

.thumbnails li a:hover:before,
.thumbnails li a:hover:after,
.thumbnails li.active a:before,
.thumbnails li.active a:after {
    transition: all .2s;
    opacity: 1;
}

.product-list li a:hover .pic:after,
.thumbnails li a:hover:after,
.thumbnails li.active a:after {
    top: 50%;
}



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

.products-detail {
    margin: 35px 0 0 0;
}

.products-detail .title {
    font-size: 15px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 15px;
    background: #f5f5f5;
    padding: 0 10px;
}

.products-detail .title i {
    font-size: 34px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 5px 0;
}

.product-list li a:hover.more{
    background: #555555;
    color: #fff;
    border-color: #555555;
}



/*------------ rwd ------------*/

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

@media screen and (max-width: 1100px) {
    .products-info {
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .product-list li {
        width: 50%;
    }
    .product-list li:nth-child(3n+1) {
        clear: none;
    }
    .product-list li:nth-child(2n+1) {
        clear: left;
    }
    .products-info .slider,
    .products-info .txt {
        float: none;
        max-width: 470px;
        margin: 0 auto;
        width: auto;
        text-align: center;
    }
    .products-info .products-breadcrumb {
        text-align: center;
        margin: 10px 0 20px 0;
    }
}

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