.search{
    background-color: #f7f6f2;
}
.search-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 0;
}
.box-item1>em{
    font-size: 1.5rem;
    font-style: normal;
    color: #111;
}
.box-item1>span{
    font-size: 1.2rem;
    color: #666;
    padding: 0 5px;
    cursor: pointer;
    line-height: 24px;
}
.box-item1{
    width: 75%;
}
.box-item2{
    width: 25%;
}
.search-cont{
    position: relative;
    border: 1px solid #e6e5e1;
    background-color: #ffffff;
}
.search-input{
    background-color: transparent;
    width: 60%;
    line-height: 33px;
    text-indent: 10px;
}
.search-btn{
    display: block;
    background: url("../images/search-icon.png") no-repeat;
    width: 38px;
    height: 28px;
    position: absolute;
    top: 3px;
    right: 5px;
}
@media (max-width: 996px){
    .box-item1{
        width: 100%;
    }
    .box-item2{
        width: 100%;
    }
}
/*关于我们*/
.about{
    padding: 60px 0;
}
.about-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
}
.about-left{
    width: 50%;
}
.about-left h3{
    font-size: 1.7rem;
    line-height: 34px;
    color: #111;
}
.about-left i{
    display: block;
    margin: 20px 0;
    width: 50px;
    height: 3px;
    background-color: #f1ae73;
}
.about-left p{
    font-size: 1.2rem;
    line-height: 24px;
    color: #333;
}
.about-left .more{
    display: block;
    width: 140px;
    height:37px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 34px;
    color: #fff;
    background-color: #f1ae73;
    margin-top: 60px;
}
.about-right{
    width: 50%;
}
@media (max-width: 996px){
    .about-left{
        width: 100%;
    }
    .about-right{
        width: 100%;
    }
}
@media (max-width: 768px){
    .about{
        padding: 15px 0;
    }
    .about-left i{
        margin: 5px 0;
    }
    .about-left .more{
        margin-top: 20px;
    }
}
/*产品推荐*/
.products{
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #fafaf7;
}
.pro-hd-img{
    text-align: center;
    margin-bottom: 55px;
}

@media (max-width: 768px){
    .products{
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .pro-hd-img{
        text-align: center;
        margin-bottom: 20px;
    }
}
/*知识*/
.news{
    padding-top: 60px;
}
.news-img .thumbnail{
    border: none;
    background-color: transparent;
    padding: 0;
}
.news-img .thumbnail h3,.news-img .thumbnail span{
     font-size: 1.6rem;
     line-height: 45px;
     color: #666;
    transition: .3s;
 }
.news-img .thumbnail:hover span{
    color: #f1ae73;
}
.news-img .thumbnail p{
    font-size: 1.2rem;
    line-height: 24px;
}
@media (max-width: 768px){
    .news{
        padding-top: 20px;
    }
}