.down {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.mobile-nav {
    display: none;
}
.down .header {
    display: none;
}
.down .header .goBack {
    display: flex;
    align-self: start;
    justify-content: space-between;
}
.down .card {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    gap: 20px;
    border: none;
    margin: 10px 0;
}
.down .card .card-item {
    min-width: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
}
.down .card .card-item .img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}
.down .card .card-item .title {
    display: block;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.down .card .card-item a {
    text-decoration: none;
    color: #000;
}
/* 底部样式隐藏 */
.footer {
    display: none;
}
@media screen and (max-width: 992px) {
    .down {
        width: 100%;
        padding: 0 10px;
    }
    .down .header {
        display: block;
    }
    .down .card {
        grid-template-columns: repeat(3,1fr);
        margin-bottom: 60px;
    }
    .mobile-nav {
        display: block;
    }
}