/* 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;
}
/* 食材配送 */
.dispatch-wrap{
    width: 100%;
    height: auto;
    margin-top: 100px;
}
.dispatch-box{
    max-width: 1200px;
    margin: 0 auto;
}
.dispatch-title{
    text-align: center;
    color: #000000;
    font-size: 36px;
}
.dispatch-detail{
    text-align: center;
    color: #666666;
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 60px;
}
.dispatch-list{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dispatch-item{
    width: 230px;
    height: 297px;
    font-size: 0;
}
.dispatchImg{
    width: 230px;
    height: 192px;
}
.dispatchText{
    width: 230px;
    height: 105px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    position: relative;
    background-color: #54B33E;
}
.dispatchText-title{
    font-size: 18px;
    margin-bottom: 5px;
}
.dispatchText-text{
    width: 100%;
    text-align: center;
    font-size: 14px;
    height: 38px;
    margin-bottom: -10px;
}
/* 配送亮点 */
.lightspot-wrap{
    width: 100%;
    height: auto;
    margin-top: 100px;
}
.lightspot-box{
    max-width: 1200px;
    margin: 0 auto;
}
.lightspot-title{
    text-align: center;
    color: #000000;
    font-size: 36px;
    margin-bottom: 60px;
    margin-left: -18px;
}
.lightspot-content{
    text-align: center;
}

/* 配送保障 */
.safeguard-wrap{
    width: 100%;
    height: auto;
    margin: 100px 0;
}
.safeguard-box{
    max-width: 1200px;
    margin: 0 auto;
}
.safeguard-title{
    text-align: center;
    color: #000000;
    font-size: 36px;
}
.safeguard-list{
    margin-top: 88px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.safeguard-item{
    width: 330px;
    height: 314px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    border: 1px solid #54B33E;
}
.safeguard-img{
    width: 97.2px;
    height: 97.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #54B33E;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.safeguardText-title{
    width: 100%;
    color: #333333;
    font-size: 24px;
    margin-top: 26px;
    text-align: center;
}
.safeguardText-text{
    width: 100%;
    line-height: 30px;
    font-size: 16px;
    margin-top: 30px;
    text-align: center;
}
/* 手机端 */
@media screen and (max-width:768px){
    .dispatch-wrap{
        margin-top: 30px;
    }
    .dispatch-title{
        font-size: 24px;
    }
    .dispatch-detail{
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .dispatch-list{
        flex-wrap: wrap;
        padding: 0 20px;
        justify-content: space-between;
    }
    .dispatch-item{
        width: calc((100% - 10px) / 2);
        height: auto;
        margin-top: 10px;
    }
    .dispatchImg{
        width: 100%;
        height: auto;
    }
    .dispatchText{
        width: 100%;
        padding: 10px 0;
        height: auto;
    }
    .lightspot-wrap{
        margin-top: 20px;
    }
    .lightspot-title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .lightspot-content{
        width: 100%;
    }
    .lightspot-content img{
        width: 100%;
    }
    .safeguard-wrap{
        margin: 30px 0;
    }
    .safeguard-list{
        flex-wrap: wrap;
        margin-top: 30px;
        justify-content: center;
    }
    .safeguard-item{
        margin-top: 20px;
    }
}