.banner{
    width: 100%;
    height: 450px;
    background: url(/assets/index/images/product_banner.jpg) no-repeat center;
    margin-top: 70px;
}
.product{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.product .pro-head{
    width: 823px;
    height: 92px;
    margin: 40px auto 0;
    font-size: 42px;
    color: #ba7e52;
    text-align: center;
    line-height: 122px;
    background: url(/assets/index/images/index28.png) no-repeat center center / 100% 100%;
}
.product .pro-title{
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 17px;
    color: #d8d8d8;
    text-align: center;
    line-height: 27px;
    margin-top: 15px;
}
.product .pro-ul{
    width: 100%;
    height: 60px;
    overflow: hidden;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
}
.pro-ul .pro-li{
    width: 85px;
    height: 60px;
    font-size: 20px;
    color: #c7c7c7;
    line-height: 68px;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.pro-li .pro-line{
    width: 44px;
    height: 4px;
    background: #8e572f;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 26%;
    display: none;
}
.pro-li.active{
    color: #8e572f;
    /*font-weight: bold;*/
}
.pro-li.active .pro-line{
    display: block;
}

.pro-box{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0 50px;
    box-sizing: border-box;
}
.pro-box .pro-item{
    display: block;
    width: 230px;
    height: 280px;
    overflow: hidden;
    float: left;
    margin-right: 55px;
    margin-top: 35px;
    background: #fdfdfd;
}
.pro-item:nth-of-type(4n){
    margin-right: 0;
}
.pro-item .pro-img{
    width: 230px;
    height: 230px;
    overflow: hidden;
    border-radius: 10px;
}
.pro-img img{
    transition: 0.2s;
}
.pro-item:hover img{
    transform:scale(1.1)
}
.pro-item .pro-on{
    width: 100%;
    height: 45px;
    overflow: hidden;
    padding: 0 5px;
    box-sizing: border-box;
}
.pro-on .pro-name{
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 18px;
    color: #666666;
    line-height: 31px;
    margin-top: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 5px;
}
.pro-on .pro-text{
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 16px;
    color: #666666;
    line-height: 20px;
    margin-top: 8px;
    margin-left: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page{
    width: 100%;
    height: 50px;
    padding: 0 50px;
    box-sizing: border-box;
    margin-top: 30px;
}