    :root {
        --primary-color: #4A6CF7;
        --secondary-color: #1E293B;
        --text-color: #333647;
        --light-text: #64748B;
        --white: #FFFFFF;
        --light-bg: #F8FAFC;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
        --radius-md: 12px;
        --transition: all 0.4s ease;
    }

    /* 页面容器 */
    .pictures-page {
        width: 100% !important;
        min-height: calc(100vh - 80px) !important;
        background-color: var(--light-bg) !important;
        padding: 40px 0 !important;
        box-sizing: border-box !important;
    }

    /* 内容容器 */
    .content-container {
        width: 100% !important;
        max-width: 1440px !important;
        margin: 0 auto !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    /* 筛选器模块 */
    .filter-section {
        background-color: var(--white) !important;
        padding: 20px !important;
        border-radius: var(--radius-md) !important;
        box-shadow: var(--shadow-sm) !important;
        margin-bottom: 30px !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .filter-buttons {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        margin-bottom: 0 !important;
    }

    .filter-btn {
        padding: 8px 20px !important;
        background-color: var(--white) !important;
        border: 1px solid #E5E7EB !important;
        border-radius: 8px !important;
        color: var(--text-color) !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        cursor: pointer !important;
        transition: var(--transition) !important;
        outline: none !important;
    }

    .filter-btn.active,
    .filter-btn:hover {
        background-color: var(--primary-color) !important;
        color: var(--white) !important;
        border-color: var(--primary-color) !important;
        transform: translateY(-2px) !important;
        box-shadow: var(--shadow-sm) !important;
    }

    /* 项目网格布局 */
    .projects-section {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .projects-grid {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
        justify-content: space-between !important;
        min-height: 400px !important;
        position: relative !important;
        box-sizing: border-box !important;
    }

    /* 添加伪元素来修复最后一行布局 */
    .projects-grid::after {
        content: '' !important;
        flex: auto !important;
        width: 24.5% !important;
        height: 0 !important;
        visibility: hidden !important;
    }

    /* 项目卡片项 - 统一4列布局 */
    .projects-grid .isotope-item {
        width: 24.5% !important;
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
        position: relative !important;
        height: auto !important;
        min-height: 360px !important;
        float: none !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
    }

    /* 作者列表卡片特殊样式 - 设置较小高度 */
    body:not(.author-profile) .projects-grid .isotope-item {
        min-height: 260px !important;
    }

    /* ==================== 修复：设置项目卡片最大高度 ==================== */
    /* 项目卡片 - 默认无最大高度限制（图片项目） */
    .item-post {
        background-color: var(--white) !important;
        border-radius: var(--radius-md) !important;
        overflow: hidden !important;
        box-shadow: var(--shadow-sm) !important;
        transition: var(--transition) !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 8px 20px 8px !important;
        position: relative !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
    }

    /* 作者列表卡片 - 设置最大高度 */
    body:not(.author-profile) .item-post {
        max-height: 260px !important;
    }

    /* 视频项目卡片 - 通过JavaScript添加video-card类，设置最大高度 */
    .item-post.video-card {
        max-height: 340px !important;
    }

    .item-post:hover {
        transform: translateY(-4px) !important;
        box-shadow: var(--shadow-md) !important;
    }

    /* ================= 核心修复1：单独定义 author-card-link 样式 ================= */
    /* 作者列表卡片跳转链接 */
    .author-card-link {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 3 !important;
        text-decoration: none !important;
        opacity: 0 !important;
    }

    /* 项目卡片的跳转链接 */
    .item-post a.card-link {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 3 !important;
        text-decoration: none !important;
    }

    /* 统一图片容器样式 - 修复图片填充问题 */
    .pic-item {
        position: relative !important;
        width: 100% !important;
        height: 200px !important;
        overflow: hidden !important;
        flex: none !important;
        box-sizing: border-box !important;
    }

    /* 统一图片样式 */
    .pic-item img,
    .pic-item .picno {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transition: transform 0.6s ease !important;
        display: block !important;
    }

    .item-post:hover .pic-item img,
    .item-post:hover .pic-item .picno {
        transform: scale(1.08) !important;
    }

    /* 半透明遮罩 */
    .overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-color: rgba(0,0,0,0.1) !important;
        z-index: 1 !important;
    }

    /* 浏览量/热度显示 - 左上角 */
    .meta-info {
        position: absolute !important;
        top: 12px !important;
        left: 12px !important;
        z-index: 4 !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        background-color: rgba(0,0,0,0.6) !important;
        padding: 6px 12px !important;
        border-radius: 16px !important;
        color: var(--white) !important;
        font-size: 13px !important;
    }

    .imdb {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
    }

    .value {
        color: #FFD700 !important;
        font-weight: 600 !important;
    }

    /* 项目信息区域 */
    .text-item {
        padding: 16px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        box-sizing: border-box !important;
    }

    .title {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: var(--secondary-color) !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .title a {
        text-decoration: none !important;
        color: inherit !important;
    }

    /* ================= 核心修复2：作者列表卡片样式优化 ================= */
    /* 作者列表卡片 - 独立样式，不影响普通项目卡片 */
    body:not(.author-profile) .item-post {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
    }

    /* 作者头像容器 - 居中显示 */
    body:not(.author-profile) .pic-author {
        width: 90px !important;
        height: 90px !important;
        min-width: 90px !important;
        min-height: 90px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        margin: 18px auto 16px auto !important;
        border: 3px solid var(--light-bg) !important;
        box-shadow: var(--shadow-md) !important;
        flex: none !important;
        position: relative !important;
        background-color: var(--white) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    body:not(.author-profile) .pic-author img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    body:not(.author-profile) .text-author {
        width: 100% !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    body:not(.author-profile) .name-author {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: var(--secondary-color) !important;
        margin: 0 !important;
        line-height: 1.3 !important;
        min-height: 24px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
    }

    body:not(.author-profile) .info-author {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 12px 0 !important;
        border-top: 1px solid var(--light-bg) !important;
        border-bottom: 1px solid var(--light-bg) !important;
        width: 100% !important;
        font-size: 14px !important;
        color: var(--text-color) !important;
        margin-top: auto !important;
        margin-bottom: 5px !important;
    }

    body:not(.author-profile) .info-author i {
        margin-right: 6px !important;
        color: var(--primary-color) !important;
        font-size: 18px !important;
    }

    body:not(.author-profile) .info-author p {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        font-weight: 500 !important;
    }

    /* 作者头部样式 */
    .df_h {
        height: 80px !important;
        background: var(--white) !important;
        box-shadow: var(--shadow-sm) !important;
        position: relative !important;
        z-index: 10 !important;
        margin-bottom: 20px !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .df_h_con {
        width: 100% !important;
        max-width: 1440px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .df_h_data {
        height: 100% !important;
        margin-top: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .df_h_data .head {
        flex-shrink: 0 !important;
        margin-right: 16px !important;
    }

    .df_h_data .head img {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        border: 2px solid var(--light-bg) !important;
    }

    .df_h_data .detail {
        margin-left: 0 !important;
        flex: none !important;
    }

    .df_h_data .detail p {
        margin-bottom: 4px !important;
        line-height: 1.4 !important;
    }

    .df_h_data .detail .names {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: var(--secondary-color) !important;
        margin-right: 12px !important;
    }

    .df_h_data .detail .zl a {
        color: var(--primary-color) !important;
        text-decoration: none !important;
        font-size: 14px !important;
        cursor: pointer;
        padding: 6px 12px !important;
        border-radius: 6px !important;
        background-color: rgba(74, 108, 247, 0.1) !important;
        margin-left: 8px !important;
    }

    /* 导航按钮 */
    .df_tab {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 16px !important;
    }

    .df_tab li {
        text-align: center !important;
        flex: none !important;
    }

    .df_tab li a {
        display: inline-block !important;
        padding: 8px 20px !important;
        height: auto !important;
        line-height: 1.4 !important;
        color: var(--text-color) !important;
        text-decoration: none !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        border-radius: 8px !important;
        cursor: pointer;
        transition: all 0.3s ease !important;
        white-space: nowrap !important;
    }

    .df_tab li a.active {
        background: var(--primary-color) !important;
        color: var(--white) !important;
        box-shadow: 0 2px 8px rgba(74, 108, 247, 0.3) !important;
    }

    /* 无数据样式 */
    .no-data-wrap {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 60px 20px !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .no-data-text {
        font-size: 16px !important;
        color: var(--secondary-color) !important;
        margin: 0 !important;
        font-weight: 500 !important;
    }

    /* 原生弹框样式 - 作者资料框 */
    #fx_modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    #fx_modal .modal-dialog {
        width: 90%;
        max-width: 500px;
        background-color: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        animation: slideUp 0.3s ease;
        transform-origin: center center;
    }

    @keyframes slideUp {
        from { 
            transform: translateY(20px) scale(0.95);
            opacity: 0;
        }
        to { 
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }

    #fx_modal .modal-header {
        background-color: var(--primary-color);
        color: var(--white);
        padding: 16px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #fx_modal .modal-header .close {
        color: var(--white);
        font-size: 20px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px 8px;
        margin: -4px -8px;
        border-radius: 4px;
        transition: background-color 0.2s ease;
        line-height: 1;
    }

    #fx_modal .modal-header .close:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #fx_modal .modal-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }

    #fx_modal .modal-body {
        padding: 20px;
        max-height: 60vh;
        overflow-y: auto;
    }

    #fx_modal .modal-body .zz_zl {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #fx_modal .modal-body .zz_zl li {
        padding: 12px 0;
        border-bottom: 1px solid var(--light-bg);
        font-size: 14px;
        color: var(--text-color);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    #fx_modal .modal-body .zz_zl li:last-child {
        border-bottom: none;
    }

    #fx_modal .modal-body .zz_zl li strong {
        color: var(--secondary-color);
        min-width: 60px;
        margin-right: 8px;
    }

    #fx_modal .modal-body .zz_zl li span {
        display: inline-block;
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4px;
    }

    #fx_modal .modal-body .zz_zl li span:last-child {
        margin-right: 0;
    }

    /* 响应式适配 - 作者资料框 */
    @media (max-width: 768px) {
        #fx_modal .modal-dialog {
            width: 95%;
            max-width: 90%;
        }
        
        #fx_modal .modal-body .zz_zl li span {
            width: 100%;
            margin-right: 0;
            margin-bottom: 8px;
        }
        
        #fx_modal .modal-body .zz_zl li span:last-child {
            margin-bottom: 0;
        }
    }

    /* ================= 响应式适配 ================= */
    /* 1200px以下：3列 */
    @media (max-width: 1200px) {
        .projects-grid .isotope-item {
            width: 32.5% !important;
            min-height: 340px !important;
        }
        
        .projects-grid::after {
            width: 32.5% !important;
        }
        
        .pic-item {
            height: 180px !important;
        }
        
        /* 作者列表卡片 */
        body:not(.author-profile) .projects-grid .isotope-item {
            min-height: 260px !important;
        }
        
        body:not(.author-profile) .item-post {
            max-height: 240px !important;
        }
        
        body:not(.author-profile) .pic-author {
            width: 85px !important;
            height: 85px !important;
            min-width: 85px !important;
            min-height: 85px !important;
            margin: 16px auto 14px auto !important;
        }
        
        body:not(.author-profile) .name-author {
            font-size: 17px !important;
        }
        
        body:not(.author-profile) .info-author {
            font-size: 13px !important;
            gap: 18px !important;
        }
        
        body:not(.author-profile) .info-author i {
            font-size: 17px !important;
        }
        
        /* 视频项目卡片 */
        .item-post.video-card {
            max-height: 320px !important;
        }
    }

    /* 992px以下：2列 */
    @media (max-width: 992px) {
        .projects-grid .isotope-item {
            width: 49% !important;
            min-height: 340px !important;
        }
        
        .projects-grid::after {
            width: 49% !important;
        }
        
        .item-post {
            margin: 0 6px 20px 6px !important;
        }
        
        .pic-item {
            height: 180px !important;
        }
        
        /* 作者列表卡片 */
        body:not(.author-profile) .projects-grid .isotope-item {
            min-height: 240px !important;
        }
        
        body:not(.author-profile) .item-post {
            max-height: 220px !important;
        }
        
        body:not(.author-profile) .pic-author {
            width: 80px !important;
            height: 80px !important;
            min-width: 80px !important;
            min-height: 80px !important;
            margin: 14px auto 12px auto !important;
        }
        
        body:not(.author-profile) .name-author {
            font-size: 16px !important;
        }
        
        body:not(.author-profile) .info-author {
            font-size: 12px !important;
            gap: 16px !important;
            padding: 10px 0 !important;
        }
        
        body:not(.author-profile) .info-author i {
            font-size: 16px !important;
        }
        
        /* 视频项目卡片 */
        .item-post.video-card {
            max-height: 300px !important;
        }
    }

    /* 768px以下：2列，调整卡片尺寸 */
    @media (max-width: 768px) {
        .pictures-page {
            padding: 30px 0 !important;
        }
        
        .filter-section {
            padding: 16px !important;
            margin-bottom: 24px !important;
        }
        
        .filter-buttons {
            gap: 10px !important;
        }
        
        .filter-btn {
            padding: 6px 16px !important;
            font-size: 13px !important;
        }
        
        .projects-grid .isotope-item {
            width: 49% !important;
            min-height: 320px !important;
            margin-bottom: 16px !important;
        }
        
        .projects-grid::after {
            width: 49% !important;
        }
        
        .item-post {
            margin: 0 4px 16px 4px !important;
        }
        
        .pic-item {
            height: 160px !important;
        }
        
        /* 作者列表卡片 */
        body:not(.author-profile) .projects-grid .isotope-item {
            min-height: 220px !important;
        }
        
        body:not(.author-profile) .item-post {
            max-height: 200px !important;
        }
        
        body:not(.author-profile) .pic-author {
            width: 75px !important;
            height: 75px !important;
            min-width: 75px !important;
            min-height: 75px !important;
            margin: 12px auto 10px auto !important;
        }
        
        body:not(.author-profile) .name-author {
            font-size: 15px !important;
        }
        
        body:not(.author-profile) .info-author {
            font-size: 11px !important;
            gap: 14px !important;
            padding: 9px 0 !important;
        }
        
        body:not(.author-profile) .info-author i {
            font-size: 15px !important;
        }
        
        /* 视频项目卡片 */
        .item-post.video-card {
            max-height: 280px !important;
        }
        
        /* 手机端作者头部导航按钮布局 */
        .df_h {
            height: auto !important;
            min-height: 80px !important;
            padding: 10px 0 !important;
        }
        
        .df_h_con {
            flex-direction: column !important;
            gap: 15px !important;
            padding: 0 16px !important;
        }
        
        .df_h_data {
            width: 100% !important;
            justify-content: center !important;
        }
        
        .df_tab {
            width: 100% !important;
            justify-content: space-between !important;
            gap: 8px !important;
        }
        
        .df_tab li {
            flex: 1 !important;
        }
        
        .df_tab li a {
            padding: 8px 10px !important;
            font-size: 13px !important;
        }
    }

    /* 576px以下：双列显示，紧凑布局 */
    @media (max-width: 576px) {
        .pictures-page {
            padding: 24px 0 !important;
        }
        
        .content-container {
            padding: 0 12px !important;
        }
        
        .filter-section {
            padding: 12px !important;
            margin-bottom: 20px !important;
        }
        
        .filter-buttons {
            gap: 8px !important;
        }
        
        .filter-btn {
            padding: 5px 12px !important;
            font-size: 12px !important;
        }
        
        .projects-grid .isotope-item {
            width: 49% !important;
            min-height: 280px !important;
            margin-bottom: 12px !important;
        }
        
        .projects-grid::after {
            width: 49% !important;
        }
        
        .item-post {
            margin: 0 2px 12px 2px !important;
        }
        
        .pic-item {
            height: 140px !important;
        }
        
        /* 作者列表卡片 */
        body:not(.author-profile) .projects-grid .isotope-item {
            min-height: 200px !important;
        }
        
        body:not(.author-profile) .item-post {
            max-height: 180px !important;
        }
        
        body:not(.author-profile) .pic-author {
            width: 70px !important;
            height: 70px !important;
            min-width: 70px !important;
            min-height: 70px !important;
            margin: 10px auto 8px auto !important;
        }
        
        body:not(.author-profile) .name-author {
            font-size: 14px !important;
        }
        
        body:not(.author-profile) .info-author {
            font-size: 10px !important;
            gap: 12px !important;
            padding: 8px 0 !important;
        }
        
        body:not(.author-profile) .info-author i {
            font-size: 14px !important;
        }
        
        /* 视频项目卡片 */
        .item-post.video-card {
            max-height: 240px !important;
        }
        
        .df_h {
            padding: 8px 0 !important;
        }
        
        .df_h_con {
            gap: 12px !important;
            padding: 0 12px !important;
        }
        
        .df_h_data .head img {
            width: 40px !important;
            height: 40px !important;
        }
        
        .df_h_data .detail .names {
            font-size: 16px !important;
        }
        
        .df_tab li a {
            padding: 6px 8px !important;
            font-size: 12px !important;
        }
    }

    /* 480px以下：双列，更紧凑 */
    @media (max-width: 480px) {
        .projects-grid .isotope-item {
            width: 49% !important;
            min-height: 260px !important;
            margin-bottom: 10px !important;
        }
        
        .projects-grid::after {
            width: 49% !important;
        }
        
        .item-post {
            margin: 0 1px 10px 1px !important;
        }
        
        .pic-item {
            height: 130px !important;
        }
        
        /* 作者列表卡片 */
        body:not(.author-profile) .projects-grid .isotope-item {
            min-height: 180px !important;
        }
        
        body:not(.author-profile) .item-post {
            max-height: 180px !important;
        }
        
        body:not(.author-profile) .pic-author {
            width: 65px !important;
            height: 65px !important;
            min-width: 65px !important;
            min-height: 65px !important;
            margin: 8px auto 6px auto !important;
        }
        
        body:not(.author-profile) .name-author {
            font-size: 13px !important;
        }
        
        body:not(.author-profile) .info-author {
            font-size: 9px !important;
            gap: 10px !important;
            padding: 7px 0 !important;
        }
        
        body:not(.author-profile) .info-author i {
            font-size: 13px !important;
        }
        
        /* 视频项目卡片 */
        .item-post.video-card {
            max-height: 220px !important;
        }
    }

    /* 360px以下：双列，极紧凑 */
    @media (max-width: 360px) {
        .projects-grid .isotope-item {
            width: 49% !important;
            min-height: 240px !important;
            margin-bottom: 8px !important;
        }
        
        .projects-grid::after {
            width: 49% !important;
        }
        
        .item-post {
            margin: 0 1px 8px 1px !important;
        }
        
        .pic-item {
            height: 110px !important;
        }
        
        /* 作者列表卡片 */
        body:not(.author-profile) .projects-grid .isotope-item {
            min-height: 160px !important;
        }
        
        body:not(.author-profile) .item-post {
            max-height: 160px !important;
        }
        
        body:not(.author-profile) .pic-author {
            width: 60px !important;
            height: 60px !important;
            min-width: 60px !important;
            min-height: 60px !important;
            margin: 6px auto 5px auto !important;
        }
        
        body:not(.author-profile) .name-author {
            font-size: 12px !important;
        }
        
        body:not(.author-profile) .info-author {
            font-size: 8px !important;
            gap: 8px !important;
            padding: 6px 0 !important;
        }
        
        body:not(.author-profile) .info-author i {
            font-size: 12px !important;
        }
        
        /* 视频项目卡片 */
        .item-post.video-card {
            max-height: 200px !important;
        }
    }

    /* 280px以下：单列显示 */
    @media (max-width: 280px) {
        .projects-grid .isotope-item {
            width: 100% !important;
            min-height: 250px !important;
            margin-bottom: 10px !important;
        }
        
        .projects-grid::after {
            width: 100% !important;
        }
        
        .item-post {
            margin: 0 0 10px 0 !important;
        }
        
        .pic-item {
            height: 140px !important;
        }
        
        /* 作者列表卡片 */
        body:not(.author-profile) .projects-grid .isotope-item {
            min-height: 180px !important;
            width: 100% !important;
        }
        
        body:not(.author-profile) .item-post {
            max-height: 160px !important;
        }
        
        body:not(.author-profile) .pic-author {
            width: 70px !important;
            height: 70px !important;
            min-width: 70px !important;
            min-height: 70px !important;
            margin: 10px auto 8px auto !important;
        }
        
        body:not(.author-profile) .name-author {
            font-size: 14px !important;
        }
        
        body:not(.author-profile) .info-author {
            font-size: 11px !important;
            gap: 12px !important;
            padding: 8px 0 !important;
        }
        
        /* 视频项目卡片 */
        .item-post.video-card {
            max-height: 240px !important;
        }
        
        .content-container {
            padding: 0 8px !important;
        }
    }