/* 底部导航栏start */
.mobile-nav {
    display: none;
}
/* 底部导航栏end */
.index {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.index .header .allGame {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
}
.index .content {
    margin: 10px 0;
}
.index .content .card {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
    border: 0;
    background: var(--background-card);
}
.index .content .card .card-item {
    min-width: 0;
    box-shadow: 0px 0px 10px 0px var(--background-item-shadow);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 10px;
    color: var(--color-text);
    background: var(--background-item);
}
.index .content .card .card-item:hover {
    background:linear-gradient(135deg,var(--background-item-mix-hover1) 0%,var(--background-item-mix-hover2) 100%);
    color: var(--color-item-hover);
}
.index .content .card .card-item .gameImg {
    width: 100px;
    height: 100px;
    border-radius: 24px;
}
.index .content .card .card-item .title {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 992px) {
    /* 底部导航栏start */
    .mobile-nav {
        display: block;
    }
    /* 底部导航栏end */
    .index {
        width: 100%;
        padding: 0 10px;
    }
    .index .content .card {
        grid-template-columns: repeat(3,1fr);
        gap: 10px;
    }
    .index .content .card .card-item:hover {
        background:#fff;
        color: #333;
    }
}
