


.products-categories {
    margin-top: 30px;
}

.categroies-warp {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;

}

.categroies-left {
    border-radius: 8px;
    background: rgb(243, 238, 231);
}


.aside-title {
    color: #E64616;
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: capitalize;
    padding: 30px 54px;
    border-radius: 8px;
    background: rgb(17, 61, 60);
    border-top: 3px solid #E64616;

}



.product_title {
    border-radius: 8px;

    /* 背景色 */
    background: rgb(243, 238, 231);
    border-top: 5px solid #E64616;
    padding: 20px 30px;

}

.product_title p {
    color: rgb(51, 51, 51);
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-list {
    margin-top: 30px;
}

.product_list_items,
.product-list ul.product_list_items,
.items_list ul.product_list_items {
    width: 100%;
    margin: 0;
}

.product_list_items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.product_list_items .product_list_item {
    width: 32%;
    border-radius: 8px;
    padding: 50px 0;
    box-sizing: border-box;
    box-shadow: 0px 4px 12px 0px rgba(59, 114, 229, 0.2);
    margin-bottom: 30px;
    margin-right: 1%;
    padding-top:0;
}

.product_list_items .product_list_item:nth-child(3n) {
    margin-right: 0 !important;
}


.product_list_item .item_img {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    z-index: 1;
    -webkit-transition: all 150ms ease-out 0ms;
    -moz-transition: all 150ms ease-out 0ms;
    -o-transition: all 150ms ease-out 0ms;
    transition: all 150ms ease-out 0ms;

}

.product_list_item .item_img img {

    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.product_list_item .item_img:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
    z-index: 20;
}

.item_information {
    margin-top: 50px;
}

.item_information .item-title {
    text-align: center;
    padding: 0 20px;
}

.item_information .item-title a {
    display: inline-block;
     height: 124px;
    color: rgb(17, 61, 60);
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: capitalize;
    overflow: auto;
}
.item_information .item-title:hover a{
    color: #E64616;
    text-decoration: underline;
}
.item-more {
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-more a {
    color: #E64616;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: capitalize;
    padding: 10px;
}

.item-more:hover a{
    background: #E64616;
    color: #FFF;
}

.product-question {
    margin-top: 4%;
}
.product-question .question-title {
    color: #E64616;
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: capitalize;
}

.product-question .question-answer {
    margin-top: 30px;
}

.product-question .question-answer ul li {
    color: rgb(51, 51, 51);
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.product-question .question-answer ul li {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* customer reviews start  */
.customer-reviews {
    margin-top: 5%;
}
.customer-reviews .swiper {
    width: 100%;
    height: 100%;
}

.customer-reviews .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.customer-reviews .slide-background {
    width: 120px;
    height: 85px;
    background-image: url(../img/slide-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 95px;
    left: 270px;
    z-index: 1;
}

.customer-reviews .slide-tip {
    color: #E64616;
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: capitalize;
}

.customer-reviews .slide-title {
    color: #333;
    font-family: 'Exo';
    font-size: 50px;
    font-weight: 700;
    line-height: -1px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
}

.customer-reviews .reviews-content {
    width: 59%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 9999;
}

.customer-reviews .reviews-content p {
    color: #113D3C;
    font-family: 'Poppins-blog';
    font-style: italic;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
}
.customer-reviews .reviews-content p a{
    color: #E64616;
}
.customer-reviews .reviews-content p a:hover{
    text-decoration: underline;
}
.reviews-avatar {
    width: 80px;
    height: 80px;
    margin-top: 30px;
}

.reviews-avatar img {
    width: 100%;
}

.reviews-userName {
    color: #113D3C;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    margin-top: 10px;
}
.swiper-button-prev{
    width: 60px;
    height: 60px;
}
.swiper-button-prev:after{
    content: '';
    font-family: 'none';
    width: 100%;
    height: 60px;
    background-image: url(../img/pro-perv.png);
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}
.swiper-button-next{
    width: 60px;
    height: 60px;
}

.swiper-button-next:after{ content: '';
    font-family: 'none';
    width: 100%;
    height: 60px;
    background-image: url(../img/pro-next.png);
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

/* customer reviews end  */





/* recommended news end */


@media (max-width:1200px){
    .product_list_items .product_list_item{
        width: 49%;
    }
    .product_list_items .product_list_item:nth-child(2n){
        margin-right: 0 !important;
    }
    .product_list_items .product_list_item:nth-child(3n){
        margin-right: 1% !important;
    }
}
@media only screen and (max-width: 1120px) {
    .customer-reviews .reviews-content{
        -webkit-line-clamp: 8;
    }
}
@media (max-width:950px) {


    .customer-reviews .reviews-content{    -webkit-box-orient: inherit;}

    .aside {
        display: none;
    }

    .main {
        width: 100%;
    }

    .product_list_items .product_list_item {
        width: 100%;
    }

    .product_list_items {
        justify-content: center;
    }

    .slide-background {
        display: none;
    }

    .customer-reviews .slide-tip {
        font-size: 20px;
    }

    .customer-reviews .slide-title {
        font-size: 30px;
    }

    .customer-reviews .reviews-content p {
        font-size: 20px;
    }

    .userInfo_warp {
        padding: 20px;
    }

    .userInfo_warp {
        flex-wrap: wrap;
    }

    .userInfo-left {
        width: 100%;
    }

    .userInfo_title {
        font-size: 29px;
    }

    .userInfo_right {
        width: 100%;
    }

    .userInfo_image {
        text-align: center;
        margin-left: 0;
    }

    .recommended-news .news-item {
        width: 100%;
    }

    .item-image {
        width: 100%;
    }

    .recommended-news .news-tip {
        font-size: 20px;
    }

    .recommended-news .news-title {
        font-size: 35px;

    }
 

}