.main-content .content {
    background: #fff;
    margin-bottom: 10px;
}

.content .div-content {
    cursor: pointer;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.content .div-content div img {
    width: 208px;
    height: 117px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .content .div-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .content .div-content div {
        flex: none;
        width: 100%;
    }

    .content .div-content div img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    /* 头部隐藏个人信息，放出首页菜单 */
    body .menu-h5 {display: none;}
    body header .menu {display: block !important;}
    body header .menu li {display: none;}
    body header .menu li.tutorial-show {display: block !important;}
    body header .user-info-no,
    body header .user-info,
    body header .btn-vip,
    body header .btn-share {
        display: none !important;
    }
}