 /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.5;
            
        }
		
	
        
        /* 固定头部样式 */
        .gz-header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }
        
        .gz-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .gz-header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        /* Logo样式 */
        .gz-logo a {
            display: block;
        }
        
        .gz-logo img {
            display: block;
            
        }
        
        /* 导航菜单样式 */
        .gz-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        
        .gz-nav-menu {
            display: flex;
            list-style: none;
        }
        
        .gz-nav-menu li {
            margin: 0 15px;
        }
        
        .gz-nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s;
            display: block;
        }
        
        .gz-nav-menu a:hover {
            color: #1890ff;
        }
        
        .gz-nav-menu .active a {
            color: #1890ff;
        }
        
        .gz-nav-menu .active a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #1890ff;
        }
        
        /* 用户操作区域 */
        .gz-user {
            display: flex;
            align-items: center;
        }
        
        .gz-auth {
            display: flex;
            margin-right: 15px;
        }
        
        .gz-auth a {
            display: inline-block;
            padding: 8px 15px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .gz-login {
            color: #333;
            margin-right: 10px;
        }
        
        .gz-login:hover {
            color: #1890ff;
            background-color: #f0f9ff;
        }
        
        .gz-register {
            color: #fff;
            background-color: #1890ff;
        }
        
        .gz-register:hover {
            background-color: #40a9ff;
        }
        
        /* 汉堡按钮 */
        .gz-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .gz-hamburger-line {
            width: 100%;
            height: 2px;
            background-color: #333;
            margin: 3px 0;
            transition: all 0.3s;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .gz-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #fff;
                padding: 15px 20px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .gz-nav.active {
                transform: translateX(0);
            }
            
            .gz-nav-menu {
                flex-direction: column;
                width: 100%;
            }
            
            .gz-nav-menu li {
                margin: 0;
                text-align: center;
                cursor: pointer;
            }
            
            .gz-nav-menu a {
                padding: 12px 15px;
                display: block;
                width: 100%;
            }
            
            .gz-nav-menu li:hover {
                background-color: #f5f5f5;
            }
            
            .gz-hamburger {
                display: flex;
            }
        }
        
        @media (max-width: 576px) {
            .gz-header-inner {
                height: 60px;
            }
            
            .gz-logo img {
                width: 180px;
                height: 40px;
            }
            
            .gz-auth {
                margin-right: 10px;
            }
            
            .gz-auth a {
                padding: 6px 12px;
                font-size: 13px;
            }
            
            .gz-nav {
                top: 60px;
            }
        }
		
		
		
		
        
        /* Hero区域样式 */
        .gz-hero {
            background-color: #f8f9fa;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .gz-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .gz-hero-content {
            flex: 0 0 50%; /* 调整为50%宽度 */
            padding-right: 40px; /* 增加右边距 */
        }
        
        .gz-hero-title {
            font-size: 2.2rem; /* 稍微减小字号 */
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .gz-hero-subtitle {
            font-size: 1.1rem; /* 稍微减小字号 */
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        /* 特性区域 - 优化图标显示并添加hover效果 */
        .gz-hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .gz-feature-item {
            display: flex;
            align-items: flex-start;
            padding: 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .gz-feature-item:hover {
            background-color: rgba(24, 144, 255, 0.05);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .gz-feature-item img {
            align-self: center; /* 确保图片垂直居中 */
            object-fit: contain; /* 保持图标比例 */
            margin-right: 12px;
        }
        
        .gz-feature-item p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
        }
        
        /* 按钮区域 */
        .gz-hero-cta {
            display: flex;
            gap: 15px;
        }
        
        .gz-cta-button {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .gz-cta-primary {
            background-color: #1890ff;
            color: white;
        }
        
        .gz-cta-primary:hover {
            background-color: #40a9ff;
            transform: translateY(-2px);
        }
        
        .gz-cta-secondary {
            border: 1px solid #1890ff;
            color: #1890ff;
            background-color: transparent;
        }
        
        .gz-cta-secondary:hover {
            background-color: #f0f9ff;
            transform: translateY(-2px);
        }
        
        /* 图片区域 - 显示原图并添加hover效果 */
        .gz-hero-image {
            flex: 0 0 auto;
            width: 650px; /* 原图宽度 */
            height: 395px; /* 原图高度 */
            transition: all 0.3s ease;
        }
        
        .gz-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        
        .gz-hero-image:hover {
            transform: scale(1.02);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .gz-hero-content {
                flex: 0 0 45%;
                padding-right: 30px;
            }
            
            .gz-hero-image {
                width: 550px;
                height: 334px; /* 保持原图比例 */
            }
        }
        
        @media (max-width: 992px) {
            .gz-hero-container {
                flex-direction: column;
            }
            
            .gz-hero-content {
                flex: 1;
                width: 100%;
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
            
           
            
            .gz-feature-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                max-width: 200px;
            }
            
            .gz-feature-item img {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .gz-hero-cta {
                justify-content: center;
            }
            
            .gz-hero-image {
                width: 100%;
                height: auto;
                max-width: 650px;
                max-height: 395px;
            }
        }
        
        @media (max-width: 576px) {
            .gz-hero {
                padding: 40px 0;
            }
            
            .gz-hero-title {
                font-size: 1.8rem;
            }
            
            .gz-hero-subtitle {
                font-size: 1rem;
            }
            
         
            
            .gz-hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .gz-cta-button {
                width: 100%;
                text-align: center;
            }
        }
		
		
		   /* 主容器样式 */
        .ph-ip-intro {
            background-color: #fff;
            padding: 80px 0;
            position: relative;
        }
        
        .ph-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 产品概述部分 */
        .ph-overview {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .ph-overview-content {
            flex: 1;
        }
        
     /* 图片容器样式 - 完全适应图片 */
    .ph-overview-image {
        flex: 1;
        min-width: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible; /* 允许图片溢出 */
        position: relative;
    }

    /* 产品图片样式 - 保持原图特性 */
    .ph-product-img {
        width: auto; /* 保持原始宽度 */
        height: auto; /* 保持原始高度 */
        max-width: 100%; /* 限制不超过容器 */
        max-height: 560px; /* 根据原图比例设置 */
        border-radius: 12px; /* 保留圆角 */
        box-shadow: 0 10px 30px rgba(24, 144, 255, 0.15);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        object-fit: contain;
    }

    /* 悬停效果 */
    .ph-product-img:hover {
        transform: scale(1.03);
        box-shadow: 0 15px 40px rgba(24, 144, 255, 0.25);
    }

	
	
        /* 标题样式 */
        .ph-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .ph-section-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        /* 亮点特性 */
        .ph-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .ph-highlight-item {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            background-color: rgba(24, 144, 255, 0.08);
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .ph-highlight-item:hover {
            background-color: rgba(24, 144, 255, 0.15);
            transform: translateY(-3px);
        }
        
        .ph-icon {
            color: #1890ff;
            font-size: 1.2rem;
            margin-right: 10px;
            width: 24px;
            text-align: center;
        }
        
        .ph-highlight-item span {
            font-size: 1rem;
            font-weight: 500;
            color: #333;
        }
        
        /* 描述文本 */
        .ph-desc {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .ph-overview {
                flex-direction: column;
                gap: 40px;
            }
            
            .ph-overview-image {
                min-width: 100%;
                height: 350px;
            }
            
            .ph-section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .ph-ip-intro {
                padding: 60px 0;
            }
            
            .ph-highlights {
                flex-direction: column;
            }
            
            .ph-section-title {
                font-size: 1.8rem;
            }
            
            .ph-section-subtitle {
                font-size: 1.1rem;
            }
            
            .ph-overview-image {
                height: 280px;
            }
        }
        
        @media (max-width: 480px) {
            .ph-ip-intro {
                padding: 40px 0;
            }
            
            .ph-section-title {
                font-size: 1.6rem;
            }
            
            .ph-section-subtitle {
                font-size: 1rem;
            }
            
            .ph-overview-image {
                height: 220px;
            }
        }
		
		
		
		
		   /* 主容器样式 */
        .ph-features {
            background-color: #fff;
            padding: 80px 0;
            position: relative;
        }
        
        .ph-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 标题样式 */
        .ph-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .ph-section-subtitle {
            font-size: 1.2rem;
            color: #666;
            text-align: center;
            margin-bottom: 50px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 特性网格布局 */
        .ph-feature-grid {
            display: grid;
    grid-template-columns: repeat(4, 1fr); /* 大屏幕4列 */
    gap: 25px;
        }
        
        /* 特性卡片样式 */
        .ph-feature-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(24, 144, 255, 0.1);
        }
        
        .ph-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(24, 144, 255, 0.15);
            border-color: rgba(24, 144, 255, 0.3);
        }
        
        /* 卡片头部样式 */
        .ph-feature-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .ph-feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(24, 144, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #1890ff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .ph-feature-card:hover .ph-feature-icon {
            background-color: rgba(24, 144, 255, 0.2);
            transform: scale(1.1);
        }
        
        .ph-feature-header h3 {
            font-size: 1.3rem;
            color: #333;
            margin: 0;
        }
        
        /* 卡片内容样式 */
        .ph-feature-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .ph-feature-list {
            list-style: none;
        }
        
        .ph-feature-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: #555;
            font-size: 0.95rem;
        }
        
        .ph-feature-list li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background-color: #1890ff;
            border-radius: 50%;
            opacity: 0.5;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .ph-features {
                padding: 60px 0;
            }
            
            .ph-section-title {
                font-size: 2.2rem;
            }
            
            .ph-section-subtitle {
                font-size: 1.1rem;
            }
            
            .ph-feature-grid {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .ph-features {
                padding: 50px 0;
            }
            
            .ph-section-title {
                font-size: 1.8rem;
            }
            
            .ph-section-subtitle {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            
            .ph-feature-card {
                padding: 25px;
            }
            
            .ph-feature-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            .ph-features {
                padding: 40px 0;
            }
            
            .ph-section-title {
                font-size: 1.6rem;
            }
            
            .ph-feature-grid {
                grid-template-columns: 1fr;
            }
            
            .ph-feature-header h3 {
                font-size: 1.2rem;
            }
        }
		
		
		
		 /* 主容器样式 */
        .ph-specs {
            background-color: #f8fafd;
            padding: 80px 0;
            position: relative;
        }
        
        .ph-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 标题样式 */
        .ph-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 50px;
            line-height: 1.2;
            position: relative;
        }
        
        .ph-section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background-color: #1890ff;
            margin: 20px auto 0;
            border-radius: 2px;
        }
        
        /* 规格网格布局 */
        .ph-specs-grid {
           display: grid;
    grid-template-columns: repeat(4, 1fr); /* 大屏幕4列 */
    gap: 25px;
        }
        
        /* 规格卡片样式 */
        .ph-spec-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            border-top: 3px solid #1890ff;
        }
        
        .ph-spec-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(24, 144, 255, 0.1);
        }
        
        /* 卡片标题样式 */
        .ph-spec-card h3 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .ph-spec-card h3 i {
            color: #1890ff;
            margin-right: 12px;
            font-size: 1.2rem;
            width: 30px;
            height: 30px;
            background: rgba(24, 144, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 规格列表样式 */
        .ph-spec-card ul {
            list-style: none;
        }
        
        .ph-spec-card li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: #555;
            line-height: 1.6;
        }
        
        .ph-spec-card li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background-color: #1890ff;
            border-radius: 50%;
            opacity: 0.7;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .ph-specs {
                padding: 70px 0;
            }
            
            .ph-section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .ph-specs-grid {
                gap: 20px;
            }
            
            .ph-spec-card {
                padding: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .ph-specs {
                padding: 60px 0;
            }
            
            .ph-section-title {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }
            
            .ph-spec-card h3 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .ph-specs {
                padding: 50px 0;
            }
            
            .ph-section-title {
                font-size: 1.6rem;
            }
            
            .ph-specs-grid {
                grid-template-columns: 1fr;
            }
        }
		
		
		
		
		   /* 主容器样式 */
    .ph-news {
        background-color: #f8fafd;
        padding: 60px 0;
    }
    
    .ph-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 标题样式 */
    .ph-news-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .ph-news-title {
        font-size: 2rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }
    
    .ph-news-subtitle {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* 标签导航样式 - 重点优化 */
    .ph-tabs-nav {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        flex-wrap: nowrap; /* 禁止换行 */
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
    }
    
    .ph-tabs-nav::-webkit-scrollbar {
        display: none;
    }
    
    .ph-tab-btn {
        padding: 10px 20px;
        background: none;
        border: none;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 500;
        color: #666;
        cursor: pointer;
        transition: all 0.3s;
        white-space: nowrap;
        flex-shrink: 0; /* 禁止按钮缩小 */
    }
    
    .ph-tab-btn.active,
    .ph-tab-btn:hover {
        background-color: rgba(24, 144, 255, 0.1);
        color: #1890ff;
    }
    
    .ph-tab-btn.active {
        font-weight: 600;
    }
    
    /* 标签内容区域 */
    .ph-tab-pane {
        display: none;
    }
    
    .ph-tab-pane.active {
        display: block;
    }
    
    /* 新闻网格布局 */
    .ph-news-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    /* 新闻卡片样式 - 简化版 */
    .ph-news-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
    }
    
    .ph-news-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(24, 144, 255, 0.1);
    }
    
    .ph-news-link {
        display: block;
        padding: 20px;
        text-decoration: none;
        color: inherit;
        height: 100%;
    }
    
    .ph-news-item-title {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .ph-news-date {
        font-size: 0.85rem;
        color: #999;
        display: block;
    }
    
    /* 查看更多按钮 */
    .ph-news-footer {
        text-align: center;
        margin-top: 20px;
    }
    
    .ph-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 20px;
        background-color: #1890ff;
        color: white;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s;
    }
    
    .ph-more-btn:hover {
        background-color: #40a9ff;
        transform: translateX(3px);
    }
    
    /* 响应式设计 - 重点优化 */
    @media (max-width: 992px) {
        .ph-news-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .ph-news {
            padding: 50px 0;
        }
        
        .ph-news-title {
            font-size: 1.8rem;
        }
        
        .ph-news-subtitle {
            font-size: 1rem;
        }
        
        .ph-tabs-nav {
            justify-content: flex-start;
        }
    }
    
    @media (max-width: 576px) {
        .ph-news-grid {
            grid-template-columns: 1fr;
        }
        
        .ph-news-card {
            padding: 15px;
        }
        
        .ph-news-item-title {
            font-size: 0.95rem;
        }
        
        .ph-more-btn {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
    }
	
	
	
	 /* 底部主样式 */
    .ph-footer {
        background-color: #2a3142;
        color: #d1d5db;
        padding: 60px 0 0;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .ph-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 主要内容区域 */
    .ph-footer-main {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        padding-bottom: 50px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* 通用标题样式 */
    .ph-footer-title {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .ph-footer-title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #1890ff;
    }
    
    /* 导航菜单样式 */
    .ph-nav-menu {
        list-style: none;
    }
    
    .ph-nav-menu li {
        margin-bottom: 10px;
    }
    
    .ph-nav-menu a {
        color: #d1d5db;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .ph-nav-menu a:hover {
        color: #1890ff;
    }
    
    /* 产品介绍样式 */
    .ph-product-desc p {
        margin-bottom: 15px;
        color: #d1d5db;
    }
    
    .ph-product-features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .ph-product-features span {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #d1d5db;
        font-size: 0.9rem;
    }
    
    .ph-product-features i {
        color: #1890ff;
        font-size: 0.9rem;
    }
    
    /* 友情链接样式 */
    .ph-links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .ph-link-item {
        color: #d1d5db;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    
    .ph-link-item:hover {
        color: #1890ff;
    }
    
    /* 联系方式样式 */
    .ph-contact-list {
        list-style: none;
    }
    
    .ph-contact-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .ph-icon {
        color: #1890ff;
        width: 20px;
        text-align: center;
    }
    
    /* 底部信息区域 */
    .ph-footer-bottom {
        padding: 30px 0;
    }
    
    /* 免责声明 */
    .ph-disclaimer {
        margin-bottom: 20px;
    }
    
    .ph-disclaimer-content {
        display: flex;
        gap: 15px;
        background-color: rgba(255, 255, 255, 0.05);
        padding: 15px;
        border-radius: 5px;
    }
    
    .ph-icon-warning {
        color: #ff9900;
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-top: 3px;
    }
    
    .ph-disclaimer-text {
        color: #a0a8b8;
        font-size: 0.85rem;
    }
    
    /* 备案信息 */
    .ph-legal {
        text-align: center;
    }
    
    .ph-legal-info {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        color: #a0a8b8;
        font-size: 0.85rem;
    }
    
    .ph-legal-info a {
        color: #a0a8b8;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .ph-legal-info a:hover {
        color: #1890ff;
    }
    
    /* 响应式设计 */
    @media (max-width: 992px) {
        .ph-footer-main {
            gap: 30px;
        }
        
        .ph-footer {
            padding-top: 50px;
        }
    }
    
    @media (max-width: 768px) {
        .ph-footer-main {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .ph-footer {
            padding-top: 40px;
        }
    }
    
    @media (max-width: 576px) {
        .ph-footer-main {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .ph-footer-title {
            margin-bottom: 15px;
        }
        
        .ph-footer {
            padding-top: 30px;
        }
        
        .ph-disclaimer-content {
            flex-direction: column;
            gap: 10px;
        }
        
        .ph-legal-info {
            flex-direction: column;
            gap: 5px;
        }
    }
	
	
	 /* 侧边栏主容器 */
    .ph-sidebar {
        position: fixed;
        right: 20px;
        bottom: 100px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    /* 服务项基础样式 */
    .ph-service-item {
        position: relative;
    }
    
    /* 服务链接样式 */
    .ph-service-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
    }
    
    /* QQ服务特殊样式 */
    .ph-qq-service .ph-service-link {
        background-color: #12B7F5; /* QQ品牌蓝 */
    }
    
    /* 微信服务特殊样式 */
    .ph-wechat-service .ph-service-link {
        background-color: #07C160; /* 微信品牌绿 */
    }
    
    /* 悬停效果 */
    .ph-service-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    /* 工具提示样式 */
    .ph-service-tooltip {
        position: absolute;
        right: 60px;
        bottom: 0;
        width: 160px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 1000;
        padding: 15px;
        text-align: center;
    }
    
    /* 显示工具提示 */
    .ph-service-item:hover .ph-service-tooltip {
        opacity: 1;
        visibility: visible;
    }
    
    /* 工具提示内容样式 */
    .ph-tooltip-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .ph-tooltip-title {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }
    
    .ph-tooltip-qq {
        font-size: 1.1rem;
        font-weight: 700;
        color: #12B7F5;
    }
    
    .ph-tooltip-text {
        font-size: 0.9rem;
        color: #666;
    }
    
    /* 咨询按钮样式 */
    .ph-consult-btn {
        display: block;
        padding: 8px 0;
        background: #12B7F5;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background 0.3s;
    }
    
    .ph-consult-btn:hover {
        background: #0e9fd8;
    }
    
    /* 微信二维码样式 */
    .ph-wechat-qrcode {
        width: 100%;
        height: auto;
        border-radius: 4px;
    }
    
    /* 返回顶部按钮 */
    .ph-back-to-top {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .ph-back-to-top a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        color: #666;
        font-size: 1.2rem;
    }
    
    .ph-back-to-top a:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .ph-back-to-top.show {
        opacity: 1;
        visibility: visible;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .ph-sidebar {
            right: 10px;
            bottom: 80px;
        }
        
        .ph-service-link, .ph-back-to-top a {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
        }
        
        .ph-back-to-top a {
            font-size: 1.1rem;
        }
        
        .ph-service-tooltip {
            right: 50px;
            width: 140px;
        }
    }
	
	
	
	/* 主容器样式 */
    .price-section {
        padding: 80px 0;
        background-color: #f8fafd;
    }
    
    .price-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 标题样式 */
    .price-section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .price-section-subtitle {
        font-size: 1.2rem;
        color: #666;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 50px;
    }
    
    /* 价格网格布局 */
    .price-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    /* 价格卡片样式 */
    .price-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        display: flex;
        flex-direction: column;
    }
    
    .price-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(24, 144, 255, 0.1);
    }
    
    /* 卡片头部 */
    .price-card-header {
        padding: 20px;
        background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
        color: white;
        position: relative;
    }
    
    .price-card-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin: 0;
    }
    
    /* 徽章样式 */
    .price-card-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.2);
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .price-badge-economy {
        background: #52c41a;
    }
    
    .price-badge-premium {
        background: #f5222d;
    }
    
    /* 卡片内容 */
    .price-card-body {
        padding: 20px;
        flex: 1;
    }
    
    /* 特性项 */
    .price-feature {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .price-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1890ff;
        margin-right: 10px;
        font-size: 1rem;
    }
    
    .price-feature-text {
        font-size: 0.95rem;
        color: #555;
    }
    
    /* 卡片底部 */
    .price-card-footer {
        padding: 0 20px 20px;
        text-align: center;
    }
    
    .price-btn {
        display: inline-block;
        padding: 10px 25px;
        background: #1890ff;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .price-btn:hover {
        background: #40a9ff;
        transform: translateY(-2px);
    }
    
    /* 不同套餐的头部颜色 */
    .price-card:nth-child(2) .price-card-header {
        background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
    }
    
    .price-card:nth-child(3) .price-card-header {
        background: linear-gradient(135deg, #f5222d 0%, #cf1322 100%);
    }
    
    .price-card:nth-child(4) .price-card-header {
        background: linear-gradient(135deg, #722ed1 0%, #531dab 100%);
    }
    
    .price-card:nth-child(5) .price-card-header {
        background: linear-gradient(135deg, #fa8c16 0%, #d46b08 100%);
    }
    
    /* 响应式设计 */
    @media (max-width: 992px) {
        .price-section {
            padding: 60px 0;
        }
        
        .price-section-title {
            font-size: 2.2rem;
        }
        
        .price-section-subtitle {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 768px) {
        .price-section {
            padding: 50px 0;
        }
        
        .price-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .price-section-title {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .price-section {
            padding: 40px 0;
        }
        
        .price-section-title {
            font-size: 1.8rem;
        }
        
        .price-section-subtitle {
            font-size: 1rem;
        }
        
        .price-card-header {
            padding: 15px;
        }
        
        .price-card-title {
            font-size: 1.2rem;
        }
        
        .price-card-badge {
            font-size: 0.7rem;
        }
        
        .price-feature-text {
            font-size: 0.9rem;
        }
    }
	
	
	 /* 主容器样式 */
    .bangzhu-help-center {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    /* 头部区域 */
    .bangzhu-header {
        background-color: #1890ff;
        color: white;
        padding: 60px 0 40px;
        margin-bottom: 30px;
    }
    
    .bangzhu-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .bangzhu-main-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .bangzhu-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
    }
    
    /* 主内容区 */
    .bangzhu-main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 顶部导航栏 */
    .bangzhu-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    /* 面包屑导航 */
    .bangzhu-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .bangzhu-breadcrumb-item {
        color: #1890ff;
        text-decoration: none;
        font-size: 0.95rem;
    }
    
    .bangzhu-breadcrumb-item:hover {
        text-decoration: underline;
    }
    
    .bangzhu-breadcrumb-separator {
        color: #666;
        font-size: 0.95rem;
    }
    
    /* 搜索框 */
    .bangzhu-search-form {
        flex: 1;
        min-width: 250px;
        max-width: 400px;
    }
    
    .bangzhu-search-wrapper {
        position: relative;
        display: flex;
    }
    
    .bangzhu-search-input {
        flex: 1;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 4px 0 0 4px;
        font-size: 0.95rem;
        outline: none;
        transition: all 0.3s;
    }
    
    .bangzhu-search-input:focus {
        border-color: #1890ff;
        box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
    }
    
    .bangzhu-search-button {
        padding: 0 20px;
        background: #1890ff;
        color: white;
        border: none;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .bangzhu-search-button:hover {
        background: #40a9ff;
    }
    
    .bangzhu-search-icon {
        margin-right: 8px;
    }
    
    /* 子栏目导航 */
    .bangzhu-subnav-container {
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
    }
    
    .bangzhu-subnav {
        display: flex;
        list-style: none;
        flex-wrap: wrap;
        gap: 5px;
        padding: 0;
        margin: 0 -5px 0 0;
    }
    
    .bangzhu-subnav-item {
        margin: 0;
    }
    
    .bangzhu-subnav-link {
        display: block;
        padding: 8px 20px;
        color: #666;
        text-decoration: none;
        border-radius: 4px 4px 0 0;
        transition: all 0.3s;
        font-size: 0.95rem;
    }
    
    .bangzhu-subnav-item.active .bangzhu-subnav-link,
    .bangzhu-subnav-link:hover {
        color: #1890ff;
        background-color: rgba(24, 144, 255, 0.1);
    }
    
    .bangzhu-subnav-item.active .bangzhu-subnav-link {
        font-weight: 500;
        border-bottom: 2px solid #1890ff;
    }
    
    /* 教程列表 */
    .bangzhu-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .bangzhu-item {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
    }
    
    .bangzhu-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .bangzhu-item-link {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%;
    }
    
    /* 缩略图容器 */
    .bangzhu-thumb-container {
        position: relative;
        padding-top: 56.25%; /* 16:9 比例 */
        background-color: #f5f5f5;
    }
    
    .bangzhu-thumb-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .bangzhu-thumb {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .bangzhu-no-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        background-color: #f5f5f5;
    }
    
    .bangzhu-no-image-icon {
        font-size: 2rem;
        opacity: 0.3;
    }
    
    /* 内容区域 */
    .bangzhu-content {
        padding: 20px;
    }
    
    .bangzhu-meta {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 0.85rem;
        color: #666;
    }
    
    .bangzhu-date {
        margin-right: 15px;
        display: flex;
        align-items: center;
    }
    
    .bangzhu-views {
        display: flex;
        align-items: center;
    }
    
    .bangzhu-meta-icon {
        margin-right: 5px;
        font-size: 0.9rem;
    }
    
    .bangzhu-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .bangzhu-desc {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .bangzhu-more {
        color: #1890ff;
        font-size: 0.9rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
    }
    
    .bangzhu-more-icon {
        margin-left: 5px;
        font-size: 0.8rem;
    }
    
    /* 分页样式 */
    .bangzhu-pagination-wrapper {
        margin: 40px 0 60px;
        text-align: center;
    }
    
    .bangzhu-pagination {
        display: inline-block;
    }
    
    .bangzhu-pagination-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .bangzhu-pagination-list li {
        margin: 0;
        display: inline-block;
    }
    
    .bangzhu-pagination-list a,
    .bangzhu-pagination-list strong {
        display: inline-block;
        min-width: 36px;
        padding: 8px 12px;
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s;
        border: 1px solid #e0e0e0;
        color: #1890ff;
        background: white;
    }
    
    .bangzhu-pagination-list a:hover {
        background: #e6f7ff;
        border-color: #bae7ff;
    }
    
    .bangzhu-pagination-list strong,
    .bangzhu-pagination-list .active a {
        background: #1890ff;
        color: white;
        border-color: #1890ff;
        font-weight: 500;
    }
    
    /* 响应式设计 */
    @media (max-width: 992px) {
        .bangzhu-header {
            padding: 50px 0 30px;
        }
        
        .bangzhu-main-title {
            font-size: 2.2rem;
        }
        
        .bangzhu-subtitle {
            font-size: 1.1rem;
        }
        
        .bangzhu-list {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .bangzhu-header {
            padding: 40px 0 25px;
        }
        
        .bangzhu-main-title {
            font-size: 2rem;
        }
        
        .bangzhu-top-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .bangzhu-search-form {
            width: 100%;
            max-width: 100%;
        }
        
        .bangzhu-subnav {
            overflow-x: auto;
            white-space: nowrap;
            padding-bottom: 5px;
            -webkit-overflow-scrolling: touch;
        }
        
        .bangzhu-subnav::-webkit-scrollbar {
            display: none;
        }
        
        .bangzhu-list {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 576px) {
        .bangzhu-header {
            padding: 30px 0 20px;
        }
        
        .bangzhu-main-title {
            font-size: 1.8rem;
        }
        
        .bangzhu-subtitle {
            font-size: 1rem;
        }
        
        .bangzhu-content {
            padding: 15px;
        }
        
        .bangzhu-title {
            font-size: 1rem;
        }
    }
	
	
	  /* 主容器样式 */
    .neirong-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: #333;
        line-height: 1.8;
        
        padding: 0 20px;
    }
    
    .neirong-container {
        max-width: 1200px;
        margin: 0 auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        padding: 40px;
    }
    
    /* 面包屑导航 */
    .neirong-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 25px;
        font-size: 0.95rem;
    }
    
    .neirong-breadcrumb-item {
        color: #1890ff;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .neirong-breadcrumb-item:hover {
        color: #40a9ff;
        text-decoration: underline;
    }
    
    .neirong-breadcrumb-separator {
        color: #999;
        margin: 0 8px;
    }
    
    /* 文章标题 */
    .neirong-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    /* 元信息 */
    .neirong-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .neirong-meta-item {
        display: flex;
        align-items: center;
        color: #666;
        font-size: 0.95rem;
    }
    
    .neirong-meta-icon {
        margin-right: 8px;
        color: #999;
        font-size: 0.9rem;
    }
    
    /* 文章内容 */
    .neirong-content {
        font-size: 1rem;
        line-height: 1.8;
        color: #444;
    }
    
    .neirong-content p {
        margin-bottom: 1.5em;
    }
    
    .neirong-content img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        margin: 20px 0;
    }
    
    .neirong-content h2,
    .neirong-content h3,
    .neirong-content h4 {
        margin: 1.5em 0 1em;
        color: #222;
        font-weight: 600;
    }
    
    .neirong-content h2 {
        font-size: 1.5rem;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
    }
    
    .neirong-content h3 {
        font-size: 1.3rem;
    }
    
    .neirong-content h4 {
        font-size: 1.1rem;
    }
    
    .neirong-content a {
        color: #1890ff;
        text-decoration: none;
    }
    
    .neirong-content a:hover {
        text-decoration: underline;
    }
    
    .neirong-content ul,
    .neirong-content ol {
        margin: 1em 0;
        padding-left: 2em;
    }
    
    .neirong-content li {
        margin-bottom: 0.5em;
    }
    
    .neirong-content blockquote {
        border-left: 4px solid #1890ff;
        background: #f8fafd;
        padding: 15px 20px;
        margin: 20px 0;
        color: #555;
    }
    
    /* 标签 */
    .neirong-tags {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 40px 0;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }
    
    .neirong-tags-label {
        display: flex;
        align-items: center;
        margin-right: 15px;
        color: #666;
        font-size: 0.95rem;
    }
    
    .neirong-tags-icon {
        margin-right: 8px;
        font-size: 0.9rem;
    }
    
    .neirong-tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .neirong-tag-item {
        display: inline-block;
        padding: 5px 12px;
        background: #f5f5f5;
        color: #555;
        border-radius: 15px;
        font-size: 0.85rem;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .neirong-tag-item:hover {
        background: #e6f7ff;
        color: #1890ff;
    }
    
    /* 上一篇下一篇 */
    .neirong-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #f0f0f0;
    }
    
    .neirong-nav-prev,
    .neirong-nav-next {
        flex: 1;
        min-width: 0;
    }
    
    .neirong-nav-prev {
        padding-right: 15px;
    }
    
    .neirong-nav-next {
        padding-left: 15px;
        text-align: right;
    }
    
    .neirong-nav-label {
        display: flex;
        align-items: center;
        color: #999;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .neirong-nav-prev .neirong-nav-label {
        justify-content: flex-start;
    }
    
    .neirong-nav-next .neirong-nav-label {
        justify-content: flex-end;
    }
    
    .neirong-nav-icon {
        margin: 0 5px;
        font-size: 0.8rem;
    }
    
    .neirong-nav-link {
        display: block;
        color: #1890ff;
        text-decoration: none;
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 0.3s;
    }
    
    .neirong-nav-link:hover {
        color: #40a9ff;
        text-decoration: underline;
    }
    
    /* 响应式设计 */
    @media (max-width: 992px) {
        .neirong-container {
            padding: 30px;
        }
        
        .neirong-title {
            font-size: 1.6rem;
        }
    }
    
    @media (max-width: 768px) {
        .neirong-wrapper {
          
            padding: 0 15px;
        }
        
        .neirong-container {
            padding: 25px;
            border-radius: 6px;
        }
        
        .neirong-title {
            font-size: 1.4rem;
        }
        
        .neirong-meta {
            gap: 15px;
        }
        
        .neirong-content {
            font-size: 0.95rem;
        }
        
        .neirong-content h2 {
            font-size: 1.3rem;
        }
        
        .neirong-content h3 {
            font-size: 1.1rem;
        }
        
        .neirong-navigation {
            flex-direction: column;
            gap: 20px;
        }
        
        .neirong-nav-prev,
        .neirong-nav-next {
            padding: 0;
            text-align: left;
        }
        
        .neirong-nav-next {
            text-align: left;
        }
    }
    
    @media (max-width: 576px) {
        .neirong-wrapper {
       
            padding: 0 10px;
        }
        
        .neirong-container {
            padding: 20px;
            border-radius: 4px;
        }
        
        .neirong-title {
            font-size: 1.3rem;
        }
        
        .neirong-meta {
            flex-direction: column;
            gap: 10px;
        }
        
        .neirong-content {
            font-size: 0.9rem;
        }
        
        .neirong-content h2 {
            font-size: 1.2rem;
        }
        
        .neirong-tags {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .neirong-tags-label {
            margin-bottom: 10px;
        }
    }
    
    
       /* 为表格添加清晰的边框样式 */
.table.table-bordered {
  border-collapse: collapse; /* 确保边框合并 */
  width: 100%;
}

.table.table-bordered,
.table.table-bordered th,
.table.table-bordered td {
  border: 1px solid #dee2e6; /* 灰色边框 */
  padding: 8px 12px; /* 单元格内边距 */
}

/* 表头样式 */
.table.table-bordered thead th {
  border-bottom-width: 2px; /* 加粗表头底部边框 */
  background-color: #f8f9fa; /* 浅灰色背景 */
}

/* 鼠标悬停效果 */
.table.table-bordered tbody tr:hover {
  background-color: rgba(0,0,0,.02); /* 轻微高亮 */
}

/* 斑马条纹效果 (可选) */
.table.table-bordered tbody tr:nth-child(odd) {
  background-color: rgba(0,0,0,.01);
}
/* 表格响应式容器 - 只在移动端生效 */
@media screen and (max-width: 768px) {
  .table {
    display: block;
    width: 100%;
    overflow-x: auto;
    /* 修正后的平滑滚动属性 */
    -webkit-overflow-scrolling: touch; /* iOS 5+ 平滑滚动 */
    scroll-behavior: smooth; /* 现代浏览器平滑滚动 */
  }
  
  /* 保持表格单元格不换行 */
  .table.table-bordered {
    white-space: nowrap;
  }
}