body{
    background-color: #f7f9fa;
}
.content{
    display: flex;
    flex-shrink: 0;
    margin:30px 0;
    justify-content: space-between;
    width:100%;
    background-color: #fff;
    border-radius: 5px;
}

.content .info{
    padding:25px;
    height: 100%;
    box-sizing: border-box;
}
.content .info h1{
    margin-bottom: 15px;
}
.content .info ul li{
    padding:5px 0;
    font-size:16px;
}
.content .ewm{
    height: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    padding:25px;
}
.content .ewm .item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content .ewm .item .imgbox{
    margin-bottom: 5px;
}
.content .ewm .item .imgbox img{
    height: 110px;
}
.content .ewm .item .name{
    text-align: center;
}

.banner{
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner img{
    display: block;
    max-width: 100%;
}

@media screen and (min-width:0px) and (max-width:768px){
    .content .info h1{font-size:24px;}
    .content{flex-direction: column;}
}  