   /* 独享标题样式 */
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-weight: 600;
        }
        
        .section-title h2::before, .section-title h2::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--secondary-color));
        }
        
        .section-title h2::before {
            left: -100px;
        }
        
        .section-title h2::after {
            right: -100px;
            background: linear-gradient(90deg, var(--secondary-color), transparent);
        }
        
        .section-title p {
            color: var(--dark-color);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        /* 独享页面顶部横幅样式 */
        .page-hero {
            height: 50vh;
            background: linear-gradient(135deg, rgba(10, 26, 45, 0.85) 0%, rgba(26, 45, 74, 0.7) 100%), url('/template/jia/images/28.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero-content {
            max-width: 900px;
            padding: 0 20px;
            z-index: 2;
        }
        
        .page-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .page-hero-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 独享装饰元素样式 */
        .decoration {
            position: absolute;
            z-index: 1;
        }
        
        .decoration.circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.2);
            top: 10%;
            right: 5%;
        }
        
        .decoration.square {
            width: 200px;
            height: 200px;
            border: 2px solid rgba(212, 175, 55, 0.15);
            bottom: 15%;
            left: 5%;
            transform: rotate(45deg);
        }
        
        /* 独享内容区域样式 */
        .content-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        /* 独享知识库卡片样式 */
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .knowledge-card {
            background: var(--text-light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .knowledge-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .knowledge-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 26, 45, 0.3), transparent);
            z-index: 1;
        }
        
        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .knowledge-card:hover .knowledge-image img {
            transform: scale(1.1);
        }
        
        .knowledge-content {
            padding: 25px;
        }
        
        .knowledge-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-weight: 600;
            line-height: 1.4;
        }
        
        
    .knowledge-content h3 a {
    text-decoration: none;
    color: inherit;
}
        
        .knowledge-content p {
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .knowledge-meta {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        
        .knowledge-category {
            display: inline-block;
            background: var(--gold-light);
            color: var(--gold-dark);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* 独享分类筛选样式 */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
        }
        
        .category-filter {
            padding: 10px 25px;
            background: var(--text-light);
            color: var(--dark-color);
            border: 2px solid #eee;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-filter:hover, .category-filter.active {
            background: var(--secondary-color);
            color: var(--text-light);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        /* 独享搜索框样式 */
        .search-box {
            max-width: 600px;
            margin: 0 auto 50px;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 15px 25px;
            border: 2px solid #eee;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding-right: 60px;
        }
        
        .search-box input:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
            outline: none;
        }
        
        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--secondary-color);
            color: var(--text-light);
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-box button:hover {
            background: var(--gold-dark);
            transform: scale(1.05);
        }
        
        /* 独享分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            gap: 10px;
        }
        
        .page-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--text-light);
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .page-num:hover {
            background: var(--secondary-color);
            color: var(--text-light);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .page-num-current {
            background: var(--secondary-color);
            color: var(--text-light);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        /* 独享CTA样式 */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: var(--text-light);
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(212,175,55,0.05)"/></svg>');
            background-size: cover;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        /* 独享响应式设计 */
        @media (max-width: 1200px) {
            .knowledge-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .section-title h2::before, .section-title h2::after {
                width: 50px;
            }
            
            .section-title h2::before {
                left: -70px;
            }
            
            .section-title h2::after {
                right: -70px;
            }
            
            .page-hero-content h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2::before, .section-title h2::after {
                display: none;
            }
            
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
            
            .category-filters {
                gap: 10px;
            }
            
            .category-filter {
                padding: 8px 18px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .page-hero-content p {
                font-size: 1rem;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
            
            .pagination {
                gap: 5px;
            }
            
            .page-num {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
        }