﻿/* 产品列表 */
.product-wrap{
    width: 100%;
    height: auto;
    padding-bottom: 100px;
    background-color: #F7F4F8;
}
.product-box{
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: flex;
}
.product-left{
    width: 252px;
    height: auto;
    margin-top: 100px;
}
.productTitle2-itemOn{
    padding: 20px;
    color: white;
    background-color: #90C42F;
}
.productTitle2-itemOn .productTitle-text span{
    color: white;
}
.productTitle2-item .productTitle-text{
    cursor: pointer;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.productTitle-text span{
    font-size: 18px;
    color: #333333;
}
.arrow-right{
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../image/nextBtn.png) no-repeat;
    background-size: 100% 100%;
}
.arrowBottom{
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../image/productCenter/arrowBottom.png) no-repeat;
    background-size: 100% 100%;
}
.productTitle1-list{
    display: none;
}
.productTitle1-item{
    font-size: 14px;
    border-top: 1px dashed #ffffff;
}
.productTitle1-item:last-child{
    border-bottom: 1px dashed #ffffff;
}
.productTitle1-item a{
    display: inline-block;
    padding: 13px 0;
    width: 100%;
    height: 100%;
    color: white;
}
.product-right{
    width: 1078px;
    height: auto;
    margin-top: 40px;
    margin-left: 70px;
}
.product-list{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
}
.product-item{
    max-width: 506px;
    width: 48%;
    height: 513px;
    margin-top: 60px;
    text-align: center;
    padding: 40px 67px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    background-color: white;
}
.productImg{
    width: 372px;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-content: center;
    justify-content: center;
}
.productText{
    width: 100%;
    color: #333333;
    font-size: 18px;
}
.product-item .more{
    display: inline-block;
    width: 118px;
    height: 32px;
    color: white;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    background-color: #90C42F;
}
@media screen and (max-width:768px){
    .product-box{
        flex-wrap: wrap;
    }
    .product-left{
        width: 100%;
    }
    .product-right{
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    .product-item{
        width: 100%;
        height: auto;
        padding: 0 0px 20px;
    }
    .productImg{
        width: 100%;
    }
    .productText{
        margin-top: 20px;
    }
    .more{
        margin-top: 20px;
    }
}