/* 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;
}
/* 中央厨房 */
.kitchen-wrap{
    width: 100%;
    height: auto;
    margin-top: 100px;
}
.kitchen-box{
    max-width: 1200px;
    margin: 0 auto;
}
.kitchen-title{
    color: #000000;
    font-size: 36px;
    text-align: center;
}
.kitchen-detail{
    color: #666666;
    font-size: 16px;
    text-align: center;
    margin-top: 26px;
    margin-bottom: 62px;
}
.kitchen-item{
    width: 1200px;
    height: 292px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #E5F0D2;
}
.kitchenImg, .kitchenImg img{
    width: 600px;
    height: 292px;
}
.kitchenText{
    width: 600px;
    height: 292px;
    position: relative;
}
.kitchenText-content{
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.kitchenText-title{
    color: #333333;
    font-size: 30px;
}
.kitchenText-text{
    color: #666666;
    font-size: 18px;
    line-height: 30px;
    margin-top: 15px;
}
/* 食堂承包 */
.contract-wrap{
    width: 100%;
    height: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}
.contract-box{
    max-width: 1200px;
    margin: 0 auto;
}
.contract-title{
    text-align: center;
    color: #000000;
    font-size: 36px;
}
.contract-detail{
    text-align: center;
    color: #666666;
    font-size: 16px;
    line-height: 48px;
}
.contract-list{
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contractIcon-wrap{
    width: 240px;
    height: 240px;
    background-color: #54B33E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.contractIcon1{
    display: inline-block;
    width: 107px;
    height: 113px;
    background: url(../image/coreBusinessPlant/page4/icon1.png) no-repeat;
    background-size: 100% 100%;
}
.contractIcon2{
    display: inline-block;
    width: 112px;
    height: 112px;
    background: url(../image/coreBusinessPlant/page4/icon2.png) no-repeat;
    background-size: 100% 100%;
}
.contractIcon3{
    display: inline-block;
    width: 130px;
    height: 117px;
    background: url(../image/coreBusinessPlant/page4/icon3.png) no-repeat;
    background-size: 100% 100%;
}
.contractText{
    text-align: center;
    font-size: 24px;
    color: #333333;
    line-height: 48px;
    margin-top: 20px;
}
/* 手机端 */
@media screen and (max-width:768px){
    .kitchen-wrap{
        margin-top: 30px;
    }
    .kitchen-detail{
        font-size: 14px;
        margin: 20px 0 30px;
    }
    .kitchen-item{
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }
    .kitchenImg, .kitchenImg img {
        width: 100%;
        height: auto;
        font-size: 0;
    }
    .kitchenText {
        width: 100%;
        height: auto;
        position: relative;
    }
    .kitchenText-content {
        position: static;
        padding: 30px 0;
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        -ms-transform: translate(0,0);
        -o-transform: translate(0,0);
    }
    .contract-wrap{
        margin-top: 30px;
    }
    .contract-list{
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
}