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

.product-list {
    margin: 0;
}

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

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

.product-list li a {
    display: block;
    max-width: 300px;
    position: relative;
    margin: 0 auto;
}

.product-list li .pic {
    position: relative;
}

.product-list li .pic:before {
    content: "";
    display: block;
    border: 5px solid rgba(221, 221, 221, 0.50);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.product-list li .cover {
    color: #fff;
    width: 83px;
    height: 83px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -41px 0 0 -41px;
    font-size: 18px;
    background: rgba(206, 155, 0, .9);
    text-align: center;
    box-sizing: border-box;
    padding: 15px 0 0 0;
    opacity: 0;
    transition: all .2s;
}

.product-list li .cover i {
    font-size: 22px;
    display: block;
    margin: 0 auto;
    width: 48px;
    padding: 0 0 7px;
    border-bottom: 1px solid #FFFFFF;
}

.product-list li a:hover .cover {
    opacity: 1;
    transition: all .2s;
}

.product-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    color: #201C1C;
    line-height: 1.2;
    height: 26px;
    margin: 15px 0 0 0;
}


/*------------ gallery ------------*/

.products-info .gallery {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.products-info .gallery:before {
    content: "";
    display: block;
    border: 5px solid rgba(221, 221, 221, 0.50);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.products-control {
    max-width: 250px;
    position: relative;
    margin: 40px auto 0;
    text-align: center;
}

.products-arrow .slick-arrow {
    border: 0;
    background: none;
    font-size: 14px;
    color: #999999;
    position: absolute;
    cursor: pointer;
    top: -1px;
}

.products-arrow .slick-prev {
    left: 0;
}

.products-arrow .slick-next {
    right: 0;
}

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

.products-dot .slick-dots button {
    background: #DDDDDD;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    color: transparent;
    border: 0;
    margin: 0 10px;
    cursor: pointer;
}

.products-dot .slick-active button,
.products-dot .slick-dots button:hover {
    background: #E5C329;
}


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

.products-detail {
    margin: 40px auto 0;
    max-width: 1000px;
}

.products-detail .title {
    margin: 0 0 45px;
    border-bottom: 1px solid rgba(204, 204, 204, .5);
}

.products-detail .title strong {
    display: inline-block;
    line-height: 36px;
    font-size: 17px;
    color: #201C1C;
    border-radius: 10px 10px 0 0;
    background: url('../images/bg/bg01.png');
    padding: 0 35px;
    position: relative;
}

.products-detail .title strong:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #C8B69D transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    margin: 0 0 0 -6px;
}

.products-detail .title strong i {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 4px 0;
}

.products-detail .title .share {
    float: right;
    margin: 5px 0 0 0;
}


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

@media screen and (max-width: 1280px) {
    .product-list li {
        padding: 0 10px 45px;
    }
}

@media screen and (max-width: 767px) {
    .product-list li:nth-child(3n+1) {
        clear: none;
    }
    .product-list li:nth-child(2n+1) {
        clear: left;
    }
    .product-list li {
        width: 50%;
    }
}

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