        /* 1.全局与布局 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .HT-xinwenliebiao-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 20px 20px 20px;
        }
        
        /* 2.背景与图片 */
        .HT-xinwenliebiao-hero {
            background: 
                        url('/static/upload/image/20251112/1762931031601372.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .HT-xinwenliebiao-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .HT-xinwenliebiao-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        /* 3.按钮与交互 */
        .HT-xinwenliebiao-btn {
            display: inline-block;
            background-color: #a41626;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
        }
        
        .HT-xinwenliebiao-btn:hover {
            transform: translateY(-3px);
            background-color: #c01c30;
            box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
        }
        
        /* 4.标题样式 */
        .HT-xinwenliebiao-section-title {
            font-size: 1.8rem;
            margin: 40px 0 25px;
            padding-bottom: 10px;
            position: relative;
            color: #333;
        }
        
        .HT-xinwenliebiao-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #a41626;
        }
        
        /* 7.网格布局 */
        .HT-xinwenliebiao-main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            align-items: start;
        }
        
        /* 10.响应式适配 */
        @media (max-width: 1024px) {
            .HT-xinwenliebiao-main-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .HT-xinwenliebiao-sidebar {
                order: 2;
            }
            
            .HT-xinwenliebiao-main-content {
                order: 1;
            }
        }
        
        @media (max-width: 768px) {
            .HT-xinwenliebiao-hero h1 {
                font-size: 2rem;
            }
            
            .HT-xinwenliebiao-hero p {
                font-size: 1rem;
            }
            
            .HT-xinwenliebiao-section-title {
                font-size: 1.5rem;
            }
            
            .HT-xinwenliebiao-news-item {
                flex-direction: column;
            }
            
            .HT-xinwenliebiao-news-img {
                width: 100%;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .HT-xinwenliebiao-filter-bar {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* 新闻列表特定样式 */
        .HT-xinwenliebiao-news-item {
            display: flex;
            margin-bottom: 25px;
            padding: 25px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .HT-xinwenliebiao-news-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #a41626 0%, #6311a9  100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        
        .HT-xinwenliebiao-news-item:hover::before {
            opacity: 1;
        }
        
        .HT-xinwenliebiao-news-item:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .HT-xinwenliebiao-news-item:hover * {
            color: white !important;
        }
        
        .HT-xinwenliebiao-news-item:hover .HT-xinwenliebiao-category-tag {
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .HT-xinwenliebiao-news-img {
            width: 200px;
            height: 150px;
            object-fit: cover;
            border-radius: 6px;
            margin-right: 20px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .HT-xinwenliebiao-news-item:hover .HT-xinwenliebiao-news-img {
            filter: brightness(0.8);
        }
        
        .HT-xinwenliebiao-news-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }
        
        .HT-xinwenliebiao-news-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #333;
            transition: color 0.3s ease;
        }
        
        .HT-xinwenliebiao-news-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.85rem;
            margin-bottom: 10px;
            flex-wrap: wrap;
            transition: color 0.3s ease;
        }
        
        .HT-xinwenliebiao-news-excerpt {
            color: #555;
           /* margin-bottom: 15px;*/
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .HT-xinwenliebiao-category-tag {
            color: #a41626;
            font-weight: 600;
            margin-right: 8px;
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid #a41626;
            transition: all 0.3s ease;
        }
        
        .HT-xinwenliebiao-separator {
            margin: 0 8px;
            color: #ccc;
        }
        
        .HT-xinwenliebiao-views {
            display: flex;
            align-items: center;
            color: #777;
        }
        
        .HT-xinwenliebiao-views i {
            margin-right: 5px;
            color: #a41626;
        }
        
        /* 筛选栏样式 - 使用竖线分隔 */
        .HT-xinwenliebiao-filter-bar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0;
            margin-bottom: 30px;
            padding: 15px 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .HT-xinwenliebiao-filter-btn {
            background: transparent;
            border: none;
            padding: 8px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #555;
            font-size: 0.95rem;
            position: relative;
        }
        
        .HT-xinwenliebiao-filter-btn:not(:last-child)::after {
            content: '|';
            position: absolute;
            right: 0;
            color: #ddd;
        }
        
        .HT-xinwenliebiao-filter-btn.active,
        .HT-xinwenliebiao-filter-btn:hover {
            color: #a41626;
            font-weight: 600;
        }
        
        .HT-xinwenliebiao-sidebar {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 20px;
        }
        
        .HT-xinwenliebiao-sidebar-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .HT-xinwenliebiao-sidebar-list {
            list-style: none;
        }
        
        .HT-xinwenliebiao-sidebar-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .HT-xinwenliebiao-sidebar-list li:last-child {
            border-bottom: none;
        }
        
        .HT-xinwenliebiao-sidebar-list a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }
        
        .HT-xinwenliebiao-sidebar-list a:hover {
            color: #a41626;
        }
        
        /* 分页样式 */
        .HT-xinwenliebiao-pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }
        
        .HT-xinwenliebiao-pagination-list {
            display: flex;
            list-style: none;
            gap: 8px;
        }
        
        .HT-xinwenliebiao-pagination-item {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .HT-xinwenliebiao-pagination-item a {
            text-decoration: none;
            color: #333;
            display: block;
            width: 100%;
            height: 100%;
            text-align: center;
            line-height: 40px;
        }
        
        .HT-xinwenliebiao-pagination-item.active {
            background-color: #a41626;
        }
        
        .HT-xinwenliebiao-pagination-item.active a {
            color: white;
        }
        
        .HT-xinwenliebiao-pagination-item:hover:not(.active) {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .HT-xinwenliebiao-pagination-prev,
        .HT-xinwenliebiao-pagination-next {
            width: auto;
            padding: 0 15px;
        }
 /* 分页样式 - 适配PbootCMS {page:bar} 标签 */
.HT-xinwenliebiao-pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.HT-xinwenliebiao-pagination-bar {
    display: flex;
    gap: 8px;
    align-items: center;
}

.HT-xinwenliebiao-pagination-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    border-radius: 4px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.HT-xinwenliebiao-pagination-bar a:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.HT-xinwenliebiao-pagination-bar .page_current {
    background-color: #a41626;
    color: white;
}

.HT-xinwenliebiao-pagination-bar .page_prev,
.HT-xinwenliebiao-pagination-bar .page_next {
    width: auto;
    padding: 0 15px;
}