        :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;
            --radius-sm: 6px;
            --transition: all 0.4s ease;
            --filter-active: #4A6CF7;
            --filter-hover: #EFF2FF;
        }

        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Microsoft YaHei", sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

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

        /* 内容区域容器 */
        .content-area {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .site-content.layout-1 {
            width: 100%;
        }

        .content-container {
            width: 100%;
            margin: 0 auto;
        }

        /* 分类筛选器样式 */
        .category-filter {
            width: 100%;
            background-color: var(--white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            padding: 20px;
            margin-bottom: 24px;
        }

        /* 一级分类容器（父标签） */
        .filter-level-1 {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #F1F5F9;
        }

        /* 二级分类容器（子标签） */
        .filter-level-2 {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        /* 筛选器通用按钮样式 */
        .filter-btn {
            padding: 8px 20px !important; /* 更新padding */
            border-radius: 8px; /* 更新圆角 */
            border: 1px solid #E5E7EB !important; /* 添加边框 */
            background-color: var(--white) !important; /* 更新背景色 */
            color: var(--text-color);
            font-size: 14px !important; /* 更新字体大小 */
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        /* 一级分类按钮样式（父标签） */
        .level-1-btn {
            font-size: 14px !important; /* 更新字体大小 */
            padding: 8px 20px !important; /* 更新padding */
        }

        .filter-btn.active {
            background-color: var(--filter-active) !important;
            color: var(--white) !important;
            border-color: var(--primary-color) !important;
            transform: translateY(-2px) !important; /* 添加上浮效果 */
            box-shadow: var(--shadow-sm) !important; /* 添加阴影效果 */
        }

        .filter-btn:not(.active):hover {
            background-color: var(--primary-color) !important; /* 修改hover背景色 */
            color: var(--white) !important; /* 修改hover文字颜色 */
            border-color: var(--primary-color) !important; /* 修改hover边框色 */
            transform: translateY(-2px) !important; /* 添加上浮效果 */
            box-shadow: var(--shadow-sm) !important; /* 添加阴影效果 */
        }

        /* 二级分类默认隐藏（无选中一级分类时） */
        .filter-level-2 {
            display: none;
        }

        .filter-level-2.show {
            display: flex;
        }

        /* 文章列表容器 */
        .projects-section {
            width: 100%;
        }

        #articles_list.projects-grid {
            display: block;
            min-height: auto;
            width: 100%;
        }

        /* 单篇文章项样式 */
        .isotope-item {
            width: 100% !important;
            min-height: 200px !important;
            margin-bottom: 16px !important;
            display: block;
        }

        /* 文章卡片主体 */
        .item-post {
            display: flex !important;
            flex-direction: row !important;
            align-items: flex-start !important;
            padding: 16px !important;
            background-color: var(--white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

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

        /* 文章图片容器 */
        .pic-item {
            width: 30% !important;
            height: 150px !important;
            flex: none !important;
            margin-right: 20px !important;
            border-radius: 8px;
            overflow: hidden;
        }

        .pic-item img.picno {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .item-post:hover .picno {
            transform: scale(1.05);
        }

        /* 文章内容区域 */
        .text-item {
            flex: 1 !important;
            padding: 0 !important;
        }

        /* 文章标题 */
        .text-item .title {
            font-size: 18px !important;
            margin-bottom: 8px !important;
            font-weight: 600;
        }

        .text-item .title a {
            color: var(--primary-color) !important;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .text-item .title a:hover {
            color: #3A5BDF !important;
            text-decoration: underline;
        }

        /* 发布时间 */
        .text-item > p:first-of-type {
            font-size: 13px !important;
            color: var(--light-text) !important;
            margin-bottom: 12px !important;
        }

        .text-item > p:first-of-type i {
            margin-right: 6px !important;
        }

        /* 文章关键内容 */
        .text-item > p:last-of-type:not(.project-tags) {
            font-size: 14px !important;
            color: var(--text-color) !important;
            line-height: 1.6 !important;
            margin-bottom: 16px !important;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 文章标签区域 */
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-item {
            padding: 4px 12px;
            background-color: rgba(74, 108, 247, 0.1);
            color: var(--primary-color);
            border-radius: 16px;
            font-size: 12px;
            font-weight: 500;
            transition: var(--transition);
        }

        .tag-item:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        /* 加载中提示样式 */
        .loading-tips {
            text-align: center;
            padding: 20px;
            color: var(--light-text);
            font-size: 14px;
        }

        /* 没有更多提示样式 */
        .no-more-tips {
            text-align: center;
            padding: 20px;
            color: var(--light-text);
            font-size: 14px;
        }

        /* 无数据提示样式 */
        .no-data-tips {
            text-align: center;
            padding: 40px 20px;
            color: var(--light-text);
            font-size: 16px;
        }

        /* 响应式适配 - 平板及以下 */
        @media (max-width: 768px) {
            .item-post {
                flex-direction: column !important;
            }
            
            .pic-item {
                width: 100% !important;
                margin-right: 0 !important;
                margin-bottom: 16px !important;
                height: 200px !important;
            }
            
            .text-item .title {
                font-size: 16px !important;
            }
            
            .text-item > p:last-of-type {
                -webkit-line-clamp: 4;
            }
            
            #main-content.pictures-page {
                padding: 20px 0;
            }
            
            .category-filter {
                padding: 16px;
                margin-bottom: 20px;
            }
            
            .filter-btn {
                padding: 6px 16px !important; /* 更新padding */
                font-size: 13px !important; /* 更新字体大小 */
            }
            
            .level-1-btn {
                padding: 6px 16px !important; /* 更新padding */
                font-size: 13px !important; /* 更新字体大小 */
            }
        }

        /* 响应式适配 - 手机端 */
        @media (max-width: 576px) {
            .content-area {
                padding: 0 12px;
            }
            
            .pic-item {
                height: 180px !important;
            }
            
            .item-post {
                padding: 12px !important;
            }
            
            .text-item > p:first-of-type {
                font-size: 12px !important;
            }
            
            .text-item > p:last-of-type {
                font-size: 13px !important;
                margin-bottom: 12px !important;
            }
            
            .tag-item {
                padding: 3px 10px;
                font-size: 11px;
            }
            
            .category-filter {
                padding: 12px;
            }
            
            .filter-level-1 {
                gap: 8px;
                margin-bottom: 12px;
                padding-bottom: 12px;
            }
            
            .filter-level-2 {
                gap: 6px;
            }
            
            .filter-btn {
                padding: 5px 12px !important; /* 更新padding */
                font-size: 12px !important; /* 更新字体大小 */
            }
            
            .level-1-btn {
                padding: 5px 12px !important; /* 更新padding */
                font-size: 12px !important; /* 更新字体大小 */
            }
        }

        /* 响应式适配 - 小屏手机 */
        @media (max-width: 375px) {
            .pic-item {
                height: 150px !important;
            }
            
            .isotope-item {
                margin-bottom: 12px !important;
            }
            
            .text-item .title {
                font-size: 15px !important;
            }
            
            .text-item > p:last-of-type {
                -webkit-line-clamp: 5;
            }
            
            .filter-btn {
                padding: 6px 14px !important; /* 更新padding */
                font-size: 12px !important; /* 更新字体大小 */
            }
        }

        /* 深色模式适配 - 禁用，确保始终白色背景 */
        @media (prefers-color-scheme: dark) {
            :root {
                --light-bg: #F8FAFC; /* 保持浅灰色背景 */
                --white: #FFFFFF;
                --text-color: #333647;
                --light-text: #64748B;
                --secondary-color: #1E293B;
                --filter-hover: #EFF2FF;
            }
            
            .tag-item {
                background-color: rgba(74, 108, 247, 0.1);
            }
            
            .tag-item:hover {
                background-color: var(--primary-color);
            }
        }