.content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.content .info {
    width: 1200px;
    min-height: 500px;
    background: #fff;
    padding: 50px 100px;
    box-sizing: border-box;
}
.content .info h2 {
    margin-bottom: 20px;
}
.content .info ul {
    width: 220px;
    margin: 0 auto;
}
.content .info ul li {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #fff;
}
.content .info ul li:nth-child(odd) {
    background: #5b9bd5;
}
.content .info ul li img {
    width: 20px;
}
