/* banner图 */
.banner-wrap{
    width: 100%;
    height: auto;
    font-size: 0;
}
.banner-wrap img{
    width: 100%;
    height: 100%;
}
/* 路由跳转 */
.router-wrap{
    width: 100%;
    height: 80px;
    box-shadow:0 2px 5px rgba(100, 100, 100, 0.5);
}
.router-list{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.router-item a{
    display: inline-block;
    width: 130px;
    height: 80px;
    text-align: center;
    font-size: 16px;
    line-height: 80px;
}
.router-itemOn a{
    color: white;
    background-color: #54B33E;
}
/* 种植基地 */
.plantBase-wrap{
    width: 100%;
    height: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}
.plantBase-box{
    max-width: 1200px;
    margin: 0 auto;
}
.plantBase-title{
    text-align: center;
    font-size: 36px;
    color: #000000;
}
.plantBase-text{
    text-align: center;
    color: #666666;
    font-size: 14px;
    line-height: 30px;
    margin-top: 45px;
}
.plantBase-list{
    width: 100%;
    height: auto;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}
.plantBase-item{
    margin-left: 18px;
    position: relative;
    margin-top: 14px;
}
.plantBase-item:nth-child(1){
    width: 285px;
    height: 300px;
    margin-left: 0;
}
.plantBase-item:nth-child(4){
    margin-left: 0;
}
.plantBaseImg{
    font-size: 0;
}
.plantBaseText{
    /* display: none; */
    width: 100%;
    height: 40px;
    color: white;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    background-color: #54B33E;
    position: absolute;
    left: 0;
    bottom: 0;
}
/* 手机端 */
@media screen and (max-width: 768px){
    .plantBase-wrap{
        margin-top: 30px;
    }
    .plantBase-text{
        margin-top: 30px;
    }
    .plantBase-list{
        margin-top: 20px;
        justify-content: center;
    }
    .plantBase-item {
        margin-left: 0;
    }
    .plantBaseImg{
        width: 100%;
        height: auto;
        font-size: 0;
    }
    .plantBaseImg img{
        width: 100%;
        height: auto;
    }
}