* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: Arial, sans-serif; */
}

body {
    background-color: #e7fcff;
}

.wp {
    width: 1440px;
    margin: 0 auto;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:16px;
}

.intro{
    color:#16baaa;
    width:100%;
    padding:20px;
    font-size:18px;
}

.games-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    margin-top: 10px;
}

.games-list li {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    padding: 0 10px;
}

.games-list li a {}

.games-list li img {
    max-width: 100%;
    aspect-ratio: 9 / 4;
    border-radius: 16px;
    object-fit: cover;
    object-position: top;
}

footer {
    min-height: 472px;
    background-image: url('/img/bg-bm.png');
    background-position: top;
    background-repeat: no-repeat;
    display:flex;
    align-items: end;
}
footer .info{
    color:#666;
    text-align: center;
}