.home-container {
    min-height: calc(100vh - 560px + 77px);
}
section {
    padding: 0.8rem 0;
    box-sizing: border-box;
}
.title_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    box-sizing: border-box;
    margin: 0.8rem 0;
    background: var(--footer);
    border-radius: 8px;
}
.game-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}
.game-list ul li {
    width: 100%;
    height: 8rem;
    border-radius: 12px;
    overflow: hidden;
}
.game-list li img {
    width: 100%;
    height: 100%;
}

/* 懒加载图片样式 */
.lazy-load {
    opacity: 0.7;
    transition: opacity 0.5s ease-in-out;
    background-color: #333;
    object-fit: cover;
}

.lazy-load.loaded {
    opacity: 1;
}

@media screen and (max-width: 576px) {
    .game-list ul {
        grid-template-columns: repeat(1fr, 1fr);
    }
    .game-list ul li {
        height: 8rem;
    }
}