.search-keyword {
    color: #364327;
    font-size: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.search-keyword span {
    display: inline-block;
    border: 1px solid #65813a;
    padding: 3px 12px;
}

.products-list.type1 {
    margin: 0 -26px;
}

.products-list.type1 .item {
    width: 33.33%;
    padding: 0 26px;
}

.products-list.type1 .item:nth-child(3n+1) {
    clear: left;
}

.products-list.type2 {
    margin: 0 -18px;
}

.products-list.type2 .item {
    width: 25%;
    padding: 0 18px;
}

.products-list.type2 .item:nth-child(4n+1) {
    clear: left;
}

.products-list .box {
    max-width: 320px;
    margin: 0 auto 70px;
    position: relative;
}

.products-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
}

/*
.products-list .box.new .pic-box:before {
    content: '';
    display: block;
    background: url('../../images/common/products/new_tag.png') no-repeat;
    width: 57px;
    height: 57px;
    position: absolute;
    z-index: 10;
    left: 5px;
    top: 5px;
}*/
.products-list .pic-box {
    position: relative;
    overflow: hidden;
}


.products-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
}

.products-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.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.products-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);
}

.products-list .txt {
    padding-top: 10px;
}

.products-list .name {
    color: #222222;
    font-size: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 30px;
    margin: 2px 0 5px;
}

.products-list .box:hover .name {
    color: #65813A;
}

.products-list .description {
    color: #6b6b6b;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 70px;
}

.products-intro .pd-name {
    background: #e1e8da;
    color: #474747;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 8px 16px;
    margin: 0 0 30px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.gallery {
    position: relative;
}

.gallery .slider {
    max-width: 500px;
    margin: 0 auto 15px;
}

.gallery .slick-prev,
.gallery .slick-next {
    white-space: nowrap;
    text-indent: 101%;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: url('../../images/common/products/index.png') no-repeat rgba(0, 0, 0, 0.5);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    z-index: 100;
    top: 50%;
    margin-top: -45px;
    outline: none;
    cursor: pointer;
}

.no-svg .gallery .slick-prev,
.no-svg .gallery .slick-next {
    background-image: url('../../images/common/index/banner_arrow.png');
}

.gallery .slick-prev {
    background-position: 0 0;
    left: 16%;
}

.gallery .slick-next {
    background-position: 100% 0;
    right: 16%;
}

.gallery .slick-prev:hover,
.gallery .slick-next:hover {
    background-color: rgba(101, 129, 58, 0.67);
}

.gallery .page-control {
    width: 150px;
    background: rgba(255, 255, 255, 0.73);
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -75px;
    color: #000000;
    font-size: 12px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.03em;
}

.gallery .page-control .current {
    color: #4b6230;
    font-size: 18px;
    font-weight: bold;
}

.products-detail {
    position: relative;
    margin-bottom: 30px;
}

.products-detail .title {
    color: #4c791b;
    font-size: 20px;
    letter-spacing: 0.05em;
    margin: 30px 0 0;
}

.products-detail .title:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4c791b;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin: -4px 10px 0px;
}

.products-detail .editor {
    padding: 35px 0;
    border: 1px solid #c5cebc;
    border-width: 1px 0;
}

@media screen and (max-width: 1440px) {
    .products-list.type1 {
        margin: 0 -7px;
    }

    .products-list.type1 .item {
        padding: 0 7px;
    }
}

@media screen and (max-width: 1320px) {
    .products-list.type2 {
        margin: 0 -10px;
    }

    .products-list.type2 .item {
        padding: 0 10px;
    }
}

@media screen and (max-width: 1180px) {
    .products-list.type1 .item {
        width: 50%;
    }

    .products-list.type1 .item:nth-child(3n+1) {
        clear: none;
    }

    .products-list.type1 .item:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 1000px) {
    .products-list.type1 .item {
        width: 33.33%;
    }

    .products-list.type1 .item:nth-child(2n+1) {
        clear: none;
    }

    .products-list.type1 .item:nth-child(3n+1) {
        clear: left;
    }

    .products-list.type2 .item {
        width: 33.33%;
    }

    .products-list.type2 .item:nth-child(4n+1) {
        clear: none;
    }

    .products-list.type2 .item:nth-child(3n+1) {
        clear: left;
    }

    .gallery .slick-prev,
    .gallery .slick-next {
        width: 60px;
        height: 60px;
        background-size: 200% auto;
        margin-top: -30px;
    }

    .products-intro .pd-name {
        font-size: 16px;
    }
}

@media screen and (max-width: 840px) {
    .products-list.type1 .item {
        width: 50%;
    }

    .products-list.type1 .item:nth-child(3n+1) {
        clear: none;
    }

    .products-list.type1 .item:nth-child(2n+1) {
        clear: left;
    }

    .products-list.type1 .box {
        margin-bottom: 30px;
    }

    .products-detail .title {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .products-list.type2 {
        margin: 0 -7px;
    }

    .products-list.type2 .item {
        padding: 0 7px;
        width: 50%;
    }

    .products-list.type2 .item:nth-child(3n+1) {
        clear: none;
    }

    .products-list.type2 .item:nth-child(2n+1) {
        clear: left;
    }

    .products-list.type2 .box {
        margin-bottom: 30px;
    }

    .gallery .slick-prev,
    .gallery .slick-next {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }

    .gallery .slick-prev {
        left: 3%;
    }

    .gallery .slick-next {
        right: 3%;
    }

    .gallery .slick-prev,
    .gallery .slick-next {
        background-color: #282828;
        border-radius: 50%;
    }

    .products-detail .editor {
        padding: 20px 0;
    }

    .products-detail {
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 580px) {
    .products-list.type1 .item {
        width: 100%;
    }

    .products-list.type2 .item {
        width: 100%;
    }
}