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

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

.product-list li {
    width: 25%;
    padding: 0 10px 50px;
}

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

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

.product-list li > a,
.thumbnails li a {
    position: relative;
    box-sizing: border-box;
    transition: all .2s;
    -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;
    margin: 0 auto 10px;
    z-index: 1;
}

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

.product-list .cover i{
    color: #FFFFFF;
    font-size: 46px;
    width: 74px;
    height: 74px;
    border: 4px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 74px;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -37px 0 0 -37px;
}

.product-list .cover i:after{
    content: "";
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    top: -13px;
    left: -13px;
    display: block;
    border: 1px solid #fff;
}

.product-list .cover,
.thumbnails li a:before{
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(179,206,30,.74);
    z-index: 10;
}

.thumbnails li a:after{
    content: "\e1039";
    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;
    color: #fff;
    display: block;
    position: absolute;
    font-size: 26px;
    top: 0;
    left: 0;
    border: 4px double #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
    line-height: 47px;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    z-index: 10;
}

.product-list a:hover .cover,
.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%;
}

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

.product-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #2C271D;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px 0;
    text-align: center;
}
.product-list .name h2 {
font-size: 20px;

}
.product-list li .description {
    color: #777777;
    line-height: 1.4;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.product-list li .more {
    transition: all .2s;
    max-width: 165px;
    width: 100%;
    margin: 0 auto;
    border: solid #2C281D;
    border-width: 2px 0;
    color: #2C281D;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    padding: 3px 12px;
    text-align: right;
}

.product-list li .more i{
    font-size: 10px;
    -webkit-transform: scale(0.83);
    float: left;
    transition: all .2s;
    margin: 9px 0 0 0;
}

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

.product-list li .more:hover i{
    margin: 9px 0 0 27px;
}


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

.product-name {
    font-size: 24px;
    line-height: 1.4;
    color: #2C271D;
    margin: 0;
}

.products-info {}

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

.products-info .content-title {
    font-size: 15px;
    line-height: 1.4;
    margin: 10px 0 25px;
}

.products-info .products-breadcrumb {
    margin: 3px 0 20px 0;
    padding: 0 0 12px 0;
    line-height: 1.4;
}

.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);
}


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

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

.products-detail .title {
    font-size: 20px;
    font-weight: bold;
    color: #bcc200;
    margin: 0 0 10px;
}

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


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

@media screen and (max-width: 1440px) {
    .product-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .product-list li:nth-child(3n+1) {
        clear: left;
    }
    .product-list li:nth-child(4n+1) {
        clear: none;
    }
}

@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(2n+1) {
        clear: left;
    }
    .product-list li:nth-child(3n+1) {
        clear: none;
    }
    .products-info .slider,
    .products-info .txt {
        float: none;
        max-width: 470px;
        margin: 0 auto;
        width: auto;
        text-align: center;
    }
    .products-info .txt{
        margin: 15px auto 0;
    }
    .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 0 75px;
    }
    .thumbnails li a {
        -webkit-border-top-right-radius: 30px;
        -webkit-border-bottom-left-radius: 30px;
        -moz-border-radius-topright: 30px;
        -moz-border-radius-bottomleft: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 30px;
    }
}
