/*------------ product-list ------------*/

.product-list {
    margin: 0 -17px;
}

.product-list li {
    width: 25%;
    padding: 0 17px 75px;
}

.product-list li:nth-child(4n+1) {
    clear: left;
}

.product-list>li>.box {
    margin: 0 auto;
    max-width: 260px;
    box-sizing: border-box;
    position: relative;
}

.product-list .box .cover {
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 80;
}

.product-list .pic {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition: all .3s ease;
    border: 1px solid #EEEEEE;
    margin: 0 0 3px;
}

.product-list .box .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.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.product-list .box:hover .pic img {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
}

.product-list .pic:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(142, 181, 197, .4);
    z-index: 50;
    opacity: 0;
    transition: all .3s ease;
}

.product-list .box:hover .pic:before {
    opacity: 1;
}

.product-list .text {
    text-align: center;
    max-width: 260px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 8px 10px;
    position: relative;
    transition: all .3s ease;
}

.product-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333333;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-list li .box:hover .name {
    color: #999;
}

.product-list li .box.new::before {
    content: 'NEW';
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    display: block;
    right: 10px;
    top: 10px;
    color: #fff;
    position: absolute;
    background: #0F4C80;
    font-family: 'Cormorant', serif;
    font-size: 13px;
    z-index: 60;
    border-radius: 50%;
}

.product-list li .box.new::after {
    content: '';
    width: 47px;
    height: 47px;
    text-align: center;
    display: block;
    right: 5.5px;
    top: 5.5px;
    position: absolute;
    border: 2px solid #0F4C80;
    z-index: 61;
    border-radius: 50%;
}

/*------------ related-list ------------*/
.related-list {
    margin: 0 -17px;
}
.related-list li {
    width: 25%;
    padding: 0 17px 75px;
}
.related-list li:nth-child(4n+1) {
    clear: left;
}
.related-list>li>.box {
    margin: 0 auto;
    max-width: 260px;
    box-sizing: border-box;
    position: relative;
}
.related-list .box .cover {
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 80;
}
.related-list .pic {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition: all .3s ease;
    border: 1px solid #EEEEEE;
    margin: 0 0 3px;
}
.related-list .box .pic img {
    transform: scale(1);
    transition: all 0.8s ease;
}
.related-list .box:hover .pic img {
    transform: scale(1.3);
}
.related-list .pic:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(142, 181, 197, .4);
    z-index: 50;
    opacity: 0;
    transition: all .3s ease;
}
.related-list .box:hover .pic:before {
    opacity: 1;
}
.related-list .text {
    text-align: center;
    max-width: 260px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 8px 10px;
    position: relative;
    transition: all .3s ease;
}
.related-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333333;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.related-list li .box:hover .name {
    color: #999;
}
.related-title{
    position: relative;
    margin: 0 0 20px;
    color: #636060;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.8px;
    padding-left: 15px;
}
.related-title::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #636060;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
/*------------ search-list ------------*/

.search-list li {
    width: 20%;
}

.search-list li:nth-child(4n+1) {
    clear: none;
}

.search-list li:nth-child(5n+1) {
    clear: left;
}

/*------------ detail ------------*/

.product-name {
    margin: 0 0 40px;
    background: #eee;
    color: #666;
    font-size: 18px;
    font-weight: normal;
    padding: 5px 15px;
}

.product-name:before {
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    margin: 0 10px 0 0;
    content: "\e1004";
}

.products-info {
    max-width: 1000px;
    margin: 0 auto 40px;
    border-bottom: 1px solid #e5e5e5;
}

.gallery {
    max-width: 765px;
    margin: 0 auto 50px;
    outline: 0;
}

.gallery .slider {
    float: left;
    width: 85%;
}

.gallery .txt {
    float: right;
    width: 12.5%;
    box-sizing: border-box;
}

.thumbnails li+li {
    margin: 16px 0 0 0;
}

.thumbnails a {
    max-width: 95px;
    margin: 0 auto;
    display: block;
    border: 1px solid #e5e5e5;
}

.thumbnails a:before, .thumbnails a:after {
    content: "";
    position: absolute;
    transition: all .3s ease;
    opacity: 0;
}

.thumbnails a:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(142, 181, 197, .4);
}

.thumbnails a:after {
    content: "\e100d";
    font-size: 20px;
    color: #fff;
    z-index: 100;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
}

.thumbnails .active a:before, .thumbnails .active a:after, .thumbnails a:hover:before, .thumbnails a:hover:after {
    transition: all .3s ease;
    opacity: 1;
}

/*------------ products-title ------------*/

.products-title {}

/*------------ rwd ------------*/

@media screen and (max-width: 1280px) {
    .product-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .product-list li:nth-child(4n+1), .search-list li:nth-child(5n+1) {
        clear: none;
    }
    .product-list li:nth-child(3n+1) {
        clear: left;
    }
    .search-list {
        max-width: 950px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1100px) {
    .product-list {
        margin: 0 -10px;
    }
    .product-list li {
        padding: 0 10px 75px;
    }
    .search-list {
        margin: 0 auto;
    }
    .related-title{
        font-size: 15px;
    }
}

@media screen and (max-width: 767px) {
    .product-list li {
        width: 50%;
    }
    .product-list li:nth-child(2n+1), .search-list li:nth-child(3n+1) {
        clear: left;
    }
    .product-list li:nth-child(3n+1), .search-list li:nth-child(2n+1) {
        clear: none;
    }
    .search-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .product-name {
        font-size: 17px;
        padding: 5px 10px;
    }
    .related-list {
        margin: 0 -10px;
    }
    .related-list li {
        width: 50%;
        padding: 0 10px 30px;
    }
    .related-list li:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 600px) {
    .search-list {
        margin: 0;
    }
    .search-list li {
        width: 100%;
        padding: 0 0 75px;
    }
    .gallery .slider, .gallery .txt {
        float: none;
        width: 100%;
        text-align: center;
        max-width: 650px;
        margin: 0 auto;
    }
    .thumbnails {
        max-width: 320px;
        margin: 15px auto 0;
    }
    .thumbnails li {
        padding: 0 5px 10px;
        width: calc((100% / 3) - 0.1px);
        box-sizing: border-box;
    }
    .thumbnails li+li {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    .product-list {
        margin: 0;
    }
    .product-list li {
        width: 100%;
        padding: 0 0 75px;
    }

    .related-list {
        margin: 0;
    }
    .related-list li {
        width: 100%;
        padding: 0 0 20px;
    }
}