    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        
        body {
            overflow-x: hidden;
			padding-top: 60px; /* 等于header高度 */
        }
        
        header {
        background: linear-gradient(135deg, #24457d 0%, #3a7bd5 50%, #00d2ff 100%);
  color: white;
  padding: 0 5%;
  height: 60px;
  display: flex;
  align-items: center;
  position: fixed; /* 关键修改：改为fixed定位 */
  top: 0;          /* 固定在顶部 */
  left: 0;         /* 从左侧开始 */
  width: 100%;     /* 宽度100% */
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* 可选：添加阴影增强视觉效果 */
        }
        /* 新增容器样式 */
.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
        .logo {
          
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 100%;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            flex: 1;
            justify-content: center;
            gap: 30px;
			 margin: 0 20px; /* 添加一些边距 */
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 5px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            opacity: 0.9;
        }
        
        .nav-links a.active {
            font-weight: 600;
        }
        
        .nav-links a.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: white;
        }
        
        .auth-buttons {
            display: flex;
            gap: 15px;
        }
        
        .auth-btn {
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 14px;
            text-decoration: none; /* 移除下划线 */
    display: inline-block; /* 确保padding生效 */
    text-align: center; /* 文字居中 */
        }
        
        .register-btn {
            background-color: white;
            color: #3a7bd5;
        }
        
        .login-btn {
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .auth-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .user-profile {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        
        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .user-profile-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f0f0;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 10px;
}

.user-profile-link:hover {
    background-color: #e0e0e0;
    text-decoration: underline;
}
        
        
        /* 模态框样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: white;
            border-radius: 8px;
            width: 100%;
            max-width: 400px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #999;
        }
        
        .modal-title {
            margin-bottom: 20px;
            color: #333;
            font-size: 22px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 5px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-size: 14px;
        }
        
        .form-group input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .form-group input:focus {
            border-color: #3a7bd5;
            outline: none;
        }
        /*图形验证码框*/
        .captcha-container {
    display: flex;
    align-items: center;
}

.captcha-container input {
    width: 150px;
}

.vcode {
    border: 1px solid #ddd;
    border-radius: 4px;
}

        .form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            font-size: 13px;
        }
        
        .form-footer a {
            color: #3a7bd5;
            text-decoration: none;
        }
        
        .submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            margin-top: 10px;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        .agreement {
            display: flex;
            align-items: center;
            margin: 15px 0;
            font-size: 13px;
        }
        
        .agreement input {
            margin-right: 8px;
        }
        
        .agreement a {
            color: #3a7bd5;
            text-decoration: none;
        }
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                color: white;
                font-size: 34px;
                cursor: pointer;
                margin-left: 20px;
            }
            
            .mobile-nav {
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
                padding: 15px 5%;
                display: none;
                flex-direction: column;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .mobile-nav.active {
                display: flex;
            }
            
            .mobile-nav a {
                color: white;
                text-decoration: none;
                padding: 8px 0;
            }
            .mobile-nav a.active {
    color: #3a7bd5; /* 使用渐变中的主色 */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 8px 15px;
    margin: 0 -10px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    
    transition: all 0.3s ease;
}
            .auth-buttons {
                margin-left: auto;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-menu-btn, .mobile-nav {
                display: none;
            }
        }
		
		
		
		/*hero*/
		
		 .hero {
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .hero-content {
        flex: 1;
        max-width: 560px;
        position: relative;
        z-index: 2;
    }
    
    .hero h1 {
        font-size: 42px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 18px;
        color: #3a7bd5;
        font-weight: 500;
        margin-bottom: 30px;
    }
    
    .features {
        list-style: none;
        margin-bottom: 40px;
    }
    
    .features li {
        font-size: 16px;
        color: #4a5568;
        margin-bottom: 12px;
        position: relative;
        padding-left: 28px;
        line-height: 1.6;
    }
    
    .features li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        width: 18px;
        height: 18px;
        background-color: #3a7bd5;
        border-radius: 50%;
        opacity: 0.2;
    }
    
    .download-btns {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .download-btn {
        display: inline-flex;
        align-items: center;
        padding: 12px 24px;
        border-radius: 6px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .pc-download {
        background: linear-gradient(135deg, #24457d 0%, #3a7bd5 50%, #00d2ff 100%);
        color: white;
    }
    
    .android-download {
        background-color: white;
        color: #2c3e50;
        border: 1px solid #e2e8f0;
    }
    
    .download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .download-btn i {
        margin-right: 8px;
        font-size: 20px;
    }
    
    .hero-images {
        position: relative;
        width: 540px;
        height: 427px;
        display: flex;
        align-items: flex-end;
    }
    
    .pc-image {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-radius: 8px;
        overflow: hidden;
        transform: perspective(1000px) rotateY(-10deg);
        transition: all 0.5s ease;
		height: inherit;
    }
    
    .pc-image:hover {
        transform: perspective(1000px) rotateY(-5deg) translateY(-5px);
    }
    
    .pc-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .android-image {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 3;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-radius: 12px;
        overflow: hidden;
        transform: perspective(1000px) rotateY(5deg) translateY(0);
        transition: all 0.5s ease;
    }
    
    .android-image:hover {
        transform: perspective(1000px) rotateY(0) translateY(-5px);
    }
    
 /* 安卓图片基础样式保持不变 */
.android-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* 新增的socks5-image样式 - 已优化 */
.socks5-image {
    position: absolute;
    left: 50%;
    bottom: 0; /* 确保底部对齐 */
    z-index: 2;
    width: 400px; /* 调整为400px（比PC图小但比安卓图大） */
    transform: perspective(1000px) rotateY(-5deg) translateX(-50%);
    transition: all 0.5s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    overflow: hidden;
}

.socks5-image:hover {
    transform: perspective(1000px) rotateY(0) translateX(-50%) translateY(-5px);
}

.socks5-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* 仅调整PC端（大于992px）的安卓图片样式 */
@media (min-width: 993px) {
    .android-image {
        width: 240px;
        right: -20px; /* 从40px改为-20px，使图片更靠右 */
        bottom: 0;
        transform: perspective(1000px) rotateY(5deg) translateX(30px); /* 增加向右偏移 */
    }
    
    .android-image:hover {
        transform: perspective(1000px) rotateY(0) translateX(30px) translateY(-5px);
    }
    
    /* 同时微调电脑图片位置 */
    .pc-image {
        left: -30px; /* 电脑图片向左微调 */
    }
    .socks5-image {
        width: 380px; /* 桌面端稍小 */
        left: 55%; /* 向右偏移一点 */
        transform: perspective(1000px) rotateY(-5deg) translateX(-50%) translateY(10px); /* 微调垂直位置 */
    }
}
	
    
    /* 移动端样式 */
    @media (max-width: 992px) {
        .container {
            flex-direction: column;
            text-align: center;
        }
        
        .hero-content {
            max-width: 100%;
            margin-bottom: 40px;
        }
        
        .hero h1 {
            font-size: 32px;
        }
        
        .features {
            text-align: left;
        }
        
        .download-btns {
            justify-content: center;
        }
        
         .hero-images {
        width: 100%;
        height: auto;
        min-height: 300px;
        transform: none !important; /* 移除整体缩放 */
    }

    /* PC图片调整 */
    .pc-image {
        width: 70%;
        left: 5%;
        transform: perspective(800px) rotateY(-10deg) !important;
    }

    /* Socks5图片调整（居中，大小合适） */
    .socks5-image {
        width: 60%;
        
        
        transform: perspective(800px) rotateY(-5deg) translateX(-50%) !important;
    }

    /* 安卓图片调整 */
    .android-image {
        width: 35%;
        right: 5%;
       
        transform: perspective(800px) rotateY(5deg) !important;
    }
    
    /* 悬停效果调整 */
    .pc-image:hover {
        transform: perspective(800px) rotateY(-5deg) translateY(-5px) !important;
    }
    
    .socks5-image:hover {
        transform: perspective(800px) rotateY(0) translateX(-50%) translateY(-5px) !important;
    }
    
    .android-image:hover {
        transform: perspective(800px) rotateY(0) translateY(-5px) !important;
    }
    }
    
    @media (max-width: 576px) {
        .hero {
            padding: 60px 0;
        }
        
        .hero h1 {
            font-size: 28px;
        }
        
        .subtitle {
            font-size: 16px;
        }
        
        .features li {
            font-size: 15px;
            padding-left: 24px;
        }
        
        .download-btns {
            flex-direction: column;
            gap: 12px;
        }
        
        .download-btn {
            width: 100%;
            justify-content: center;
        }
        
         .pc-image {
        width: 75%;
        left: 0;
    }

    .socks5-image {
        width: 65%;
        
    }

    .android-image {
        width: 40%;
        right: 0;
    }
    }
	
	/*hero下介绍*/
	.qip-features-section {
        background: #fff;
        padding: 80px 0;
        position: relative;
    }
    
    .qip-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .qip-section-title {
        text-align: center;
        font-size: 36px;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    
    .qip-section-subtitle {
        text-align: center;
        font-size: 18px;
        color: #3a7bd5;
        margin-bottom: 50px;
        font-weight: 500;
    }
    
    .qip-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .qip-feature-card {
        background: #f8fafc;
        border-radius: 12px;
        padding: 30px;
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }
    
    .qip-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: #cbd5e0;
    }
    
    .qip-feature-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .qip-feature-title {
        font-size: 20px;
        color: #2d3748;
        margin-bottom: 15px;
    }
    
    .qip-feature-desc {
        color: #4a5568;
        line-height: 1.6;
        font-size: 15px;
    }
    
    .qip-tech-specs {
        background: #f1f5f9;
        border-radius: 12px;
        padding: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .qip-specs-title {
        text-align: center;
        margin-bottom: 20px;
        color: #2c3e50;
    }
    
    .qip-specs-tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .qip-spec-tag {
        background: #3a7bd5;
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
    }
    
    /* 响应式调整 */
    @media (max-width: 768px) {
        .qip-section-title {
            font-size: 28px;
        }
        
        .qip-features-grid {
            grid-template-columns: 1fr;
        }
        
        .qip-spec-tag {
            font-size: 13px;
            padding: 6px 12px;
        }
    }
	
	/*案例*/
	
	   /* 基础样式（延续qip前缀） */
    .qip-case-section {
        background: #f9fbfd;
        padding: 80px 0;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .qip-case-study {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    /* 案例卡片 */
    .qip-case-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        margin-bottom: 40px;
    }
    
    .qip-case-header {
        background: linear-gradient(135deg, #24457d 0%, #3a7bd5 50%, #00d2ff 100%);
        padding: 25px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .qip-case-logo {
        height: 40px;
        width: auto;
        filter: brightness(0) invert(1);
    }
    
    .qip-case-badge {
        background: rgba(255,255,255,0.2);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 14px;
    }
    
    .qip-case-content {
        padding: 30px;
    }
    
    .qip-case-title {
        font-size: 22px;
        color: #2c3e50;
        margin-bottom: 30px;
        text-align: center;
    }
    
    /* 数据对比模块 */
    .qip-case-metrics {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .qip-metric-box {
        text-align: center;
        flex: 1;
        max-width: 200px;
    }
    
    .qip-metric-value {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 5px;
    }
    
    .qip-metric-box:first-child .qip-metric-value {
        color: #e74c3c;
    }
    
    .qip-metric-box:last-child .qip-metric-value {
        color: #2ecc71;
    }
    
    .qip-metric-label {
        color: #7f8c8d;
        margin-bottom: 10px;
    }
    
    .qip-metric-bar {
        height: 8px;
        border-radius: 4px;
    }
    
    .qip-metric-bar-before {
        background: linear-gradient(90deg, #e74c3c 0%, #f39c12 100%);
    }
    
    .qip-metric-bar-after {
        background: linear-gradient(90deg, #2ecc71 0%, #3498db 100%);
    }
    
    .qip-metric-arrow {
        font-size: 32px;
        color: #95a5a6;
        margin-top: -20px;
    }
    
    /* 客户证言 */
    .qip-testimonial {
        background: #f8fafc;
        border-left: 4px solid #3a7bd5;
        padding: 20px;
        font-style: italic;
        color: #34495e;
        margin: 30px 0;
        position: relative;
    }
    
    .qip-testimonial footer {
        display: block;
        text-align: right;
        font-style: normal;
        color: #7f8c8d;
        margin-top: 10px;
        font-size: 14px;
    }
    
    .qip-highlight {
        color: #3a7bd5;
        font-weight: 500;
        font-style: normal;
    }
    
    /* 技术细节 */
    .qip-tech-details {
        background: #f1f5f9;
        border-radius: 8px;
        padding: 20px;
        margin-top: 30px;
    }
    
    .qip-tech-details h4 {
        color: #2c3e50;
        margin-bottom: 15px;
        font-size: 18px;
    }
    
    .qip-tech-list {
        list-style: none;
        padding-left: 0;
    }
    
    .qip-tech-list li {
        padding: 8px 0;
        position: relative;
        padding-left: 25px;
    }
    
    .qip-tech-list li:before {
        content: "✓";
        color: #2ecc71;
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    
    /* 更多案例链接 */
    .qip-more-cases {
        text-align: center;
    }
    
    .qip-case-link {
        display: inline-flex;
        align-items: center;
        color: #3a7bd5;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .qip-case-link svg {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .qip-case-link:hover {
        color: #2c3e50;
    }
    
    .qip-case-link:hover svg {
        transform: translateX(3px);
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .qip-case-metrics {
            flex-direction: column;
            gap: 20px;
        }
        
        .qip-metric-box {
            max-width: 100%;
            width: 100%;
        }
        
        .qip-metric-arrow {
            transform: rotate(90deg);
            margin: 10px 0;
        }
    }
	
	
	
	/*首页底部文章*/
	
	.modern-news-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.modern-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.modern-news-header {
    text-align: center;
    margin-bottom: 40px;
}

.modern-news-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.modern-news-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
}

.modern-tabs-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.modern-tab-nav {
    display: flex;
    border-bottom: 1px solid #eaeaea;
}

.modern-tab-btn {
    flex: 1;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.modern-tab-btn.active {
    color: #3498db;
}

.modern-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
}

.modern-tab-content {
    padding: 30px;
}

.modern-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.modern-tab-pane.active {
    display: block;
}

.modern-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.modern-news-card {
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-news-card:hover {
    transform: translateY(-5px);
}

.modern-news-link {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    background-color: #f8f9fa;
    border-radius: 6px;
    height: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.modern-news-card:hover .modern-news-link {
    background-color: #f1f5f9;
}

.modern-news-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.modern-news-date {
    font-size: 14px;
    color: #95a5a6;
    display: block;
}

.modern-view-more-wrap {
    text-align: right;
}

.modern-view-more {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-view-more:hover {
    color: #2980b9;
}

.modern-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.modern-view-more:hover .modern-arrow {
    transform: translateX(3px);
}

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

@media (max-width: 768px) {
    .modern-news-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-tab-nav {
        flex-direction: column;
    }
    
    .modern-tab-btn {
        padding: 12px 0;
        text-align: center;
    }
    
    .modern-tab-btn.active::after {
        width: 30%;
        left: 35%;
    }
}
	
	
	
	
	/*footer底部*/
	.qip-footer {
        background: #2c3e50;
        color: #ecf0f1;
        padding: 50px 0 20px;
        font-size: 14px;
    }
    
    .qip-footer-content {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 40px;
        gap: 40px;
    }
    
    .qip-footer-logo img {
        margin-bottom: 15px;
    }
    
    .qip-footer-slogan {
        color: #bdc3c7;
        margin-top: 10px;
    }
    
    .qip-footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin-left: auto;
    }
    
    .qip-footer-column h4 {
        color: #fff;
        margin-bottom: 20px;
        font-size: 16px;
    }
    
    .qip-footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .qip-footer-column li {
        margin-bottom: 12px;
    }
    
    .qip-footer-column a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .qip-footer-column a:hover {
        color: #3a7bd5;
    }
    
    .qip-footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .qip-footer-legal {
        color: #7f8c8d;
    }
    
    .qip-footer-legal a {
        color: #7f8c8d;
    }
    
    .qip-footer-social {
        display: flex;
        gap: 20px;
    }
    
    .qip-footer-social a {
        color: #bdc3c7;
        font-size: 20px;
        transition: color 0.3s;
    }
    
    .qip-footer-social a:hover {
        color: #3a7bd5;
    }
    
    /* 响应式调整 */
    @media (max-width: 768px) {
        .qip-footer-content {
            flex-direction: column;
        }
        
        .qip-footer-links {
            margin-left: 0;
        }
        
        .qip-footer-bottom {
            flex-direction: column;
            gap: 15px;
        }
    }
	
	/*在线咨询客服*/
	
	.float-service {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 100;
}

.service-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.top-btn {
  background: #666;
  color: white;
}

.qq-btn {
  background: #12B7F5;
  color: white;
}

.wx-btn {
  background: #07C160;
  color: white;
}

.service-btn:hover {
  transform: translateY(-3px);
}

.tooltip-box {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  width: 160px;
  opacity: 0;
  transition: all 0.3s;
  color: #333;
  text-align: center;
  /* 关键修改：初始不可见但保留空间 */
  visibility: hidden;
}

.service-btn:hover .tooltip-box,
.service-btn .tooltip-box:hover {
  opacity: 1;
  right: 65px;
  /* 关键修改：显示时设置为可见 */
  visibility: visible;
}

/* 关键新增：为提示框添加悬停区域 */
.tooltip-box:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 20px;
  height: 100%;
}

.qq-number {
  white-space: nowrap;
  margin: 0 0 10px 0;
  font-size: 14px;
}

.tooltip-box img {
  display: block;
  margin: 0 auto 10px;
  border: 1px solid #eee;
}

.consult-btn {
  display: block;
  background: #12B7F5;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.consult-btn:hover {
  background: #0E9DDA;
}

/*price*/

.qip-pricing {

background: #f8fafc;

padding: 60px 0;

}

.qip-container {

max-width: 1200px;

margin: 0 auto;

padding: 0 20px;

}

.qip-section-title {

text-align: center;

font-size: 32px;

color: #2c3e50;

margin-bottom: 10px;

}

.qip-section-subtitle {

text-align: center;

color: #4a5568;

margin-bottom: 40px;

font-size: 16px;

}

.qip-pricing-grid {

display: grid;

grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

gap: 20px;

margin-top: 40px;

}

.qip-pricing-card {

background: white;

border-radius: 10px;

padding: 25px;

box-shadow: 0 5px 15px rgba(0,0,0,0.05);

transition: all 0.3s ease;

position: relative;

border: 1px solid #e2e8f0;

}

.qip-pricing-card:hover {

transform: translateY(-5px);

box-shadow: 0 10px 25px rgba(0,0,0,0.1);

}

.qip-featured {

border: 2px solid #3a7bd5;

transform: scale(1.02);

}

.qip-featured .qip-price {

color: #3a7bd5;

}

.qip-premium {

background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);

border: 1px solid #d4b499;

}

.qip-premium .qip-price {

color: #d4b499;

}

.qip-pricing-header {

text-align: center;

margin-bottom: 20px;

padding-bottom: 20px;

border-bottom: 1px solid #eee;

}

.qip-pricing-header h3 {

font-size: 20px;

color: #2c3e50;

margin-bottom: 10px;

}

.qip-price {

font-size: 36px;

font-weight: 700;

color: #2c3e50;

}

.qip-price span {

font-size: 16px;

font-weight: normal;

}

.qip-premium-badge {

position: absolute;

top: -10px;

right: 20px;

background: #d4b499;

color: white;

padding: 3px 10px;

border-radius: 20px;

font-size: 12px;

}

.qip-features {

list-style: none;

padding: 0;

margin: 0 0 25px 0;

}

.qip-features li {

padding: 8px 0;

font-size: 14px;

color: #4a5568;

display: flex;

align-items: center;

}

.qip-icon-check {

display: inline-block;

width: 18px;

height: 18px;

background: #2ecc71;

color: white;

border-radius: 50%;

text-align: center;

line-height: 18px;

margin-right: 10px;

font-size: 12px;

}

.qip-btn-primary, .qip-btn-secondary, .qip-btn-premium {

display: block;

width: 100%;

padding: 12px;

border-radius: 6px;

text-align: center;

font-weight: 500;

cursor: pointer;

transition: all 0.3s;

text-decoration: none;

color: white;

}

.qip-btn-primary {

background: linear-gradient(135deg, #24457d 0%, #3a7bd5 50%, #00d2ff 100%);

}

.qip-btn-secondary {

background: #edf2f7;

color: #2c3e50;

}

.qip-btn-premium {

background: #d4b499;

}

.qip-btn-primary:hover {

transform: translateY(-2px);

box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);

}

.qip-notice {

text-align: center;

margin-top: 40px;

color: #7f8c8d;

font-size: 14px;

}

@media (max-width: 992px) {

.qip-pricing-grid {

grid-template-columns: 1fr 1fr;

}

}

@media (max-width: 576px) {

.qip-pricing-grid {

grid-template-columns: 1fr;

}

.qip-section-title {

font-size: 28px;

}

}


/*下载*/
/* 基础样式 */
.x-download-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.x-download-title {
  text-align: center;
  color: #2d3748;
  margin-bottom: 40px;
  font-size: 2rem;
  position: relative;
}

.x-download-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3a7bd5, #07C160);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* 卡片网格布局 */
.x-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* 卡片样式 */
.x-download-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 4px solid;
}

.x-download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.x-pc-card {
  border-color: #3a7bd5;
}

.x-android-card {
  border-color: #07C160;
}

.x-socks-card {
  border-color: #7f8c8d;
}

/* 图标样式 */
.x-card-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}

/* 文字内容 */
.x-download-card h3 {
  color: #2d3748;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.x-card-desc {
  color: #718096;
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* 特性列表 */
.x-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.x-feature-list li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 20px;
}

.x-feature-list li:before {
  content: "•";
  color: inherit;
  position: absolute;
  left: 8px;
}

/* 按钮样式 */
.x-download-btn {
  display: block;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.x-pc-btn {
  background: #3a7bd5;
  color: white;
}

.x-android-btn {
  background: #07C160;
  color: white;
}

.x-socks-btn {
  background: #7f8c8d;
  color: white;
}

.x-download-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* 按钮组 - 修改为水平排列，扫码下载在右侧 */
.x-btn-group {
  display: flex;
  gap: 10px;
}

.x-android-btn {
  flex: 1;
}

/* 二维码相关 - 调整到右侧 */
.x-qr-trigger {
  position: relative;
}

.x-qr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #3a7bd5;
  cursor: pointer;
  border-radius: 8px;
  background: rgba(58,123,213,0.1);
  transition: all 0.3s;
  height: 100%;
  box-sizing: border-box;
}

.x-qr-btn:hover {
  background: rgba(58,123,213,0.2);
}

.x-qr-toggle {
  display: none;
}

.x-qr-box {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 10;
  margin-bottom: 15px;
}

.x-qr-trigger:hover .x-qr-box {
  opacity: 1;
}

.x-qr-img {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto;
  border: 1px solid #eee;
}

.x-qr-box p {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin: 10px 0 0;
}

.x-qr-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .x-download-grid {
    grid-template-columns: 1fr;
  }
  
  .x-download-title {
    font-size: 1.7rem;
  }
  
  .x-btn-group {
    flex-direction: column;
  }
  
  .x-qr-trigger {
    margin-top: 10px;
  }
  
  .x-qr-box {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* 移动端二维码弹出 */
  .x-qr-toggle:checked ~ .x-qr-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 100;
  }
  
  .x-qr-toggle:checked ~ .x-qr-mask {
    display: block;
  }
  
  /* PC端保持悬停效果 */
  @media (hover: hover) {
    .x-qr-trigger:hover .x-qr-box {
      opacity: 1;
    }
    .x-qr-mask {
      display: none !important;
    }
  }
}

/*教程中心*/
  /* 容器样式 */
.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px 60px;
}

/* 头部样式 */
.help-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.help-title {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.help-subtitle {
    font-size: 1rem;
    color: #718096;
}

/* 内容区域布局 */
.help-content {
    display: flex;
    gap: 30px;
}

/* 左侧导航栏 */
.help-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: -webkit-sticky; /* 兼容Safari */
    position: sticky;
    top: 80px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    /* 恢复阴影效果 */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.category-item {
    border-bottom: 1px solid #f0f2f5;
}

.category-item:last-child {
    border-bottom: none;
}

/* 栏目交互样式 */
.category-toggle {
    display: none;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    color: #3f3d59;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    user-select: none;
}

.category-title:hover {
    background-color: #f8fafc;
}

.category-arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.category-toggle:checked + .category-title .category-arrow {
    transform: rotate(-135deg);
}

/* 文章列表样式 */
.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.category-toggle:checked ~ .article-list {
    max-height: 1000px;
}

.article-link {
    display: block;
    padding: 10px 20px 10px 35px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.article-link:hover {
    background-color: #f8fafc;
    color: #3a7bd5;
}

.article-link.active {
    border-left-color: #3a7bd5;
    background-color: #f0f7ff;
    color: #3a7bd5;
}

/* 右侧内容区 */
.help-main {
    flex: 1;
    min-width: 0;
}

/* 文章卡片样式 - 列表页 */
.article-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-card-header {
    margin-bottom: 15px;
}

.article-card-title {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    color: #2d3748;
    line-height: 1.3;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.article-card-title a:hover {
    color: #3a7bd5;
}

.article-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #718096;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-card-excerpt {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.article-card-footer {
    text-align: right;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #f0f7ff;
    color: #3a7bd5;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: #e1ecfa;
    color: #2a5db0;
}

/* 文章详情页样式 */
.article-detail {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
}

.article-detail-header {
    
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f2f5;
}

.article-detail-title {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    color: #2d3748;
    line-height: 1.3;
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #718096;
}

.article-detail-content {
    padding: 15px 0;
    line-height: 1.8;
    color: #4a5568;
}

.article-detail-content p {
    margin: 0 0 1.5em 0;
}

.article-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/*.article-detail-content table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    margin: 20px 0;*/
/*    font-size: 0.95rem;*/
/*    box-shadow: 0 1px 3px rgba(0,0,0,0.1);*/
/*}*/

/*.article-detail-content th,*/
/*.article-detail-content td {*/
/*    padding: 12px 15px;*/
/*    text-align: left;*/
/*    border: 1px solid #e2e8f0;*/
/*}*/

/*.article-detail-content th {*/
/*    background-color: #f8fafc;*/
/*    font-weight: 600;*/
/*    color: #4a5568;*/
/*}*/

/*.article-detail-content tr:nth-child(even) {*/
/*    background-color: #f8fafc;*/
/*}*/



/* 响应式设计 */
@media (max-width: 992px) {
    .help-content {
        flex-direction: column;
    }
    
    .help-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .help-header {
        padding: 20px 0;
    }
    .help-content {
        flex-direction: column;
    }
    
    .help-sidebar {
        width: 100%;
        margin-bottom: 30px;
        position: static; /* 移动端取消粘性定位 */
        max-height: none;
        overflow-y: visible;
    }
    .help-title {
        font-size: 1.8rem;
    }
    
    .article-card {
        padding: 20px;
    }
    
    .article-card-title {
        font-size: 1.2rem;
    }
    
    .article-detail {
        padding: 20px;
    }
    
    .article-detail-title {
        font-size: 1.5rem;
    }
    
   
    .article-detail-content img {
        margin: 15px auto;
    }
}
/*教程内容图片放大样式*/

/* 图片放大功能样式 - 优化版 */
.img-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.img-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.img-overlay img {
    max-width: 90%;
    max-height: 90%;
    transform: scale(1);
    transition: transform 0.3s;
    cursor: zoom-out;
}

.img-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1;
}

.img-overlay .zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    align-items: center;
}

.img-overlay .zoom-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    line-height: 1;
    font-family: 'FontAwesome';
}

.img-overlay .zoom-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.img-overlay .zoom-level {
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 10px;
    font-family: inherit;
}

.img-overlay .img-caption {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.img-overlay .img-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.img-overlay .nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.img-overlay .nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    user-select: none;
    line-height: 1;
    font-family: 'FontAwesome';
}

.img-overlay .nav-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
}

.img-overlay .grabbing {
    cursor: grabbing;
}

/*ol ul列表*/
/* 有序列表（默认数字） */
.neirong-content-body ol,
.article-detail-content ol {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin: 0.5em 0;
}

/* 无序列表（默认圆点） */
.neirong-content-body ul,
.article-detail-content ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin: 0.5em 0;
}

/* 嵌套有序列表（子级样式） */
.neirong-content-body ol ol,
.article-detail-content ol ol {
    list-style-type: lower-alpha; /* a. b. c. */
}

.neirong-content-body ol ol ol,
.article-detail-content ol ol ol {
    list-style-type: lower-roman; /* i. ii. iii. */
}

/* 嵌套无序列表（子级样式） */
.neirong-content-body ul ul,
.article-detail-content ul ul {
    list-style-type: circle; /* ◦ 空心圆 */
}

.neirong-content-body ul ul ul,
.article-detail-content ul ul ul {
    list-style-type: square; /* ▪ 方块 */
}

/* 混合嵌套（ol 里面有 ul，或 ul 里面有 ol） - 两层嵌套 */
.neirong-content-body ol ul,
.article-detail-content ol ul {
    list-style-type: circle; /* ol > ul 用空心圆 */
}

.neirong-content-body ul ol,
.article-detail-content ul ol {
    list-style-type: lower-alpha; /* ul > ol 用字母 */
}

/* 混合嵌套 - 三层嵌套情况 */
/* ol > ul > ol */
.neirong-content-body ol ul ol,
.article-detail-content ol ul ol {
    list-style-type: lower-roman; /* i. ii. iii. */
}

/* ol > ul > ul */
.neirong-content-body ol ul ul,
.article-detail-content ol ul ul {
    list-style-type: square; /* ▪ 方块 */
}

/* ul > ol > ul */
.neirong-content-body ul ol ul,
.article-detail-content ul ol ul {
    list-style-type: square; /* ▪ 方块 */
}

/* ul > ol > ol */
.neirong-content-body ul ol ol,
.article-detail-content ul ol ol {
    list-style-type: lower-roman; /* i. ii. iii. */
}







/*轮播图*/
 /* 游戏展示区容器 */
        .game-showcase {
            padding: 60px 0;
           
            margin: 0 auto;
            overflow: hidden;
        }
        
        /* 标题样式 */
        .game-showcase-title {
            text-align: center;
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 40px;
            font-weight: 700;
            position: relative;
        }
        
        .game-showcase-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #3498db;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        /* 滚动容器 */
        .game-scroller-container {
            width: 100%;
            position: relative;
        }
        
        /* 通用滚动条样式 */
        .game-scroller {
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
            position: relative;
        }
        
        .game-scroller::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
        }
        
        .game-scroller-left::before {
            left: 0;
            background: linear-gradient(90deg, rgba(248,249,250,1) 0%, rgba(248,249,250,0) 100%);
        }
        
        .game-scroller-right::before {
            right: 0;
            background: linear-gradient(270deg, rgba(248,249,250,1) 0%, rgba(248,249,250,0) 100%);
        }
        
        /* 滚动轨道 */
        .game-track {
            display: flex;
            width: max-content;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
            will-change: transform;
        }
        
        /* 第一排：从左向右滑动 */
        .game-scroller-left .game-track {
            animation-name: scrollLeftToRight;
            animation-duration: 40s;
        }
        
        /* 第二排：从右向左滑动 */
        .game-scroller-right .game-track {
            animation-name: scrollRightToLeft;
            animation-duration: 40s;
        }
        
        /* 游戏图标样式 */
        .game-icon {
            display: block;
            width: 140px;
            height: 140px;
            margin: 0 20px;
            transition: all 0.3s ease;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 12px rgba(0,0,0,0.08);
            background: white;
            flex-shrink: 0;
        }
        
        .game-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            
        }
        
        .game-icon:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        
        /* 动画定义 */
        @keyframes scrollLeftToRight {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        @keyframes scrollRightToLeft {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .game-icon {
                width: 120px;
                height: 120px;
                margin: 0 15px;
            }
        }
        
        @media (max-width: 768px) {
            .game-showcase {
                padding: 40px 0;
            }
            
            .game-showcase-title {
                font-size: 28px;
                margin-bottom: 30px;
            }
            
            .game-icon {
                width: 100px;
                height: 100px;
                margin: 0 12px;
                border-radius: 12px;
            }
        }
        
        @media (max-width: 576px) {
            .game-icon {
                width: 80px;
                height: 80px;
                margin: 0 8px;
                border-radius: 10px;
            }
            
            .game-scroller {
                padding: 15px 0;
            }
        }
		
		
		/*点击注册弹窗*/
		  /* 按钮容器样式 */
        .liangzi-auth-buttons {
            display: flex;
            gap: 15px;
          
            justify-content: center;
        }
        
        /* 基础按钮样式 */
        .liangzi-auth-btn {
            padding: 8px 24px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        /* 注册按钮样式 */
        .liangzi-register-btn {
            background-color: #4CAF50;
            color: white;
        }
        
        .liangzi-register-btn:hover {
            background-color: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        
        /* 登录按钮样式 */
        .liangzi-login-btn {
            background-color: #2196F3;
            color: white;
        }
        
        .liangzi-login-btn:hover {
            background-color: #0b7dda;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        
        /* 提示框样式 */
        .liangzi-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .liangzi-modal-overlay.liangzi-active {
            opacity: 1;
            visibility: visible;
        }
        
        .liangzi-modal-content {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }
        
        .liangzi-modal-overlay.liangzi-active .liangzi-modal-content {
            transform: translateY(0);
        }
        
        .liangzi-modal-text {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
        }
        
        .liangzi-copy-link {
            display: flex;
            margin: 15px 0;
        }
        
        .liangzi-copy-link input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }
        
        .liangzi-copy-btn {
            padding: 10px 15px;
            background-color: #2196F3;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .liangzi-copy-btn:hover {
            background-color: #0b7dda;
        }
        
        .liangzi-close-btn {
            display: block;
            margin-top: 15px;
            padding: 8px 15px;
            background-color: #f44336;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-left: auto;
            transition: background-color 0.3s;
        }
        
        .liangzi-close-btn:hover {
            background-color: #d32f2f;
        }
        
        /* 响应式调整 */
        @media (max-width: 480px) {
            .liangzi-auth-buttons {
           flex-direction: row; /* 确保水平排列 */
            flex-wrap: nowrap; /* 禁止换行 */
            gap: 8px; /* 适当缩小间距 */
            }
            
            .liangzi-auth-btn {
                 width: auto; /* 自适应宽度 */
            min-width: fit-content; /* 确保按钮宽度适应文字 */
            white-space: nowrap; /* 禁止文字换行 */
            padding: 8px 12px; /* 适当的内边距 */
            }
            
            .liangzi-copy-link {
                flex-direction: column;
            }
            
            .liangzi-copy-link input {
                border-radius: 4px 4px 0 0;
            }
            
            .liangzi-copy-btn {
                border-radius: 0 0 4px 4px;
            }
        }
        
        
        /*首页轮播图*/
        
/* ===== 主容器 ===== */
.bzw-game-accelerator {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

/* ===== 装饰元素 ===== */
.bzw-decor {
    position: absolute;
        background: linear-gradient(136deg, rgb(139 181 247), rgb(218 237 245));
    width: 489px;
    height: 471px;
    right: -11%;
    top: 31%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* ===== 内容容器 ===== */
.bzw-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 标题区 ===== */
.bzw-header {
    margin-bottom: 60px;
    text-align: center;
}

.bzw-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.bzw-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4f46e5;
    border-radius: 3px;
}

.bzw-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== 内容区 ===== */
.bzw-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* ===== 轮播图区域 ===== */
.bzw-slider {
    width: 704px;
    height: 528px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
     width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* ===== 轮播导航按钮 ===== */
.bzw-slider-prev,
.bzw-slider-next {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    color: #4f46e5;
    font-size: 20px;
    font-weight: bold;
}

.bzw-slider-prev:hover,
.bzw-slider-next:hover {
    background-color: #4f46e5;
    color: white;
}

.bzw-slider-next {
    right: 20px;
    font-family: fangsong;
}

.bzw-slider-prev {
    left: 20px;
	 font-family: fangsong;
}

.bzw-slider-prev[disabled],
.bzw-slider-next[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
   
}

/* ===== 分页指示器 ===== */
.bzw-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.bzw-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bzw-pagination-dot.active {
    background-color: white;
    width: 20px;
    border-radius: 5px;
}

/* ===== 功能列表 ===== */
.bzw-features {
    width: calc(100% - 704px - 40px);
    height: 528px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 0;
}

.bzw-feature {
    display: flex;
    gap: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    margin-bottom: 15px;
}

.bzw-feature:last-child {
    margin-bottom: 0;
}

.bzw-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.bzw-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #24457d 0%, #3a7bd5 50%, #00d2ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: white;
}

.bzw-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bzw-feature-content h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.bzw-feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1240px) {
    .bzw-slider {
        width: 600px;
        height: 450px;
    }
    .bzw-features {
        width: calc(100% - 600px - 40px);
        height: 450px;
    }
}

@media (max-width: 992px) {
    .bzw-content {
        flex-direction: column;
        align-items: center;
    }
    
    .bzw-slider {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        max-width: 704px;
        margin-bottom: 30px;
    }
    
    .bzw-features {
        width: 100%;
        height: auto;
        max-width: 600px;
        padding: 0;
    }
    
    .bzw-feature {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .bzw-game-accelerator {
        padding: 80px 0;
    }
    
    .bzw-header h2 {
        font-size: 2rem;
    }
    
    .bzw-feature {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    .bzw-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .bzw-header h2 {
        font-size: 1.6rem;
    }
    
    .bzw-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .bzw-slider-prev,
    .bzw-slider-next {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}
        
        
        
        
        
        
        
        /*zuixinzixun*/


/* 基础样式 */
.bangzhu-help-center {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    
}

/* 头部区域 */
.bangzhu-header {
    background: linear-gradient(135deg, #02cffe 0%, #3a7bd5 70%, #24457d 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.bangzhu-header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.bangzhu-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.bangzhu-header p {
    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;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 20px;
}

/* 面包屑导航 */
.bangzhu-breadcrumb {
    font-size: 0.95rem;
    color: #666;
}

.bangzhu-breadcrumb a {
    color: #1e88e5;
    text-decoration: none;
}

.bangzhu-breadcrumb a:hover {
    text-decoration: underline;
}

/* 搜索框 */
.bangzhu-search-wrapper {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
}

.bangzhu-search-wrapper:focus-within {
    border-color: #1e88e5;
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
}

.bangzhu-search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    min-width: 200px;
}

.bangzhu-search-button {
    background: #f5f5f5;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.bangzhu-search-button:hover {
    background: #e0e0e0;
}

.bangzhu-icon-search {
    font-size: 1rem;
}

.bangzhu-search-text {
    font-size: 0.95rem;
}

/* 子栏目导航 */
.bangzhu-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.bangzhu-subnav-item {
    margin: 0;
}

.bangzhu-subnav-item a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #555;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.bangzhu-subnav-item a:hover {
    background: #f5f5f5;
    color: #1e88e5;
}

.bangzhu-subnav-item.active a {
    background: #1e88e5;
    color: white;
}

/* 教程列表 */
.bangzhu-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bangzhu-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.bangzhu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.bangzhu-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.bangzhu-thumb-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 比例 */
    background: #f5f5f5;
    overflow: hidden;
}

.bangzhu-thumb-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bangzhu-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.bangzhu-item:hover .bangzhu-thumb {
    transform: scale(1.03);
}

.bangzhu-no-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.bangzhu-content {
    padding: 20px;
}

.bangzhu-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
}

.bangzhu-icon-eye {
    margin-right: 4px;
}

.bangzhu-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bangzhu-desc {
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bangzhu-more {
    color: #1e88e5;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.bangzhu-item:hover .bangzhu-more {
    color: #0d47a1;
}

/* 分页样式 */
.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: #1e88e5;
    background: white;
}

.bangzhu-pagination-list a:hover {
    background: #e3f2fd;
    border-color: #bbdefb;
}

.bangzhu-pagination-list strong,
.bangzhu-pagination-list .active a {
    background: #1e88e5;
    color: white;
    border-color: #1e88e5;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .bangzhu-header {
        padding: 40px 0;
    }
    
    .bangzhu-header h1 {
        font-size: 2rem;
    }
    
    .bangzhu-header p {
        font-size: 1rem;
    }
    
    .bangzhu-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bangzhu-search {
        width: 100%;
    }
    
    .bangzhu-search-wrapper {
        width: 100%;
    }
    
    .bangzhu-list {
        grid-template-columns: 1fr;
    }
    
    .bangzhu-subnav {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    .bangzhu-subnav::-webkit-scrollbar {
        height: 4px;
    }
    
    .bangzhu-subnav::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 2px;
    }
}

@media (max-width: 480px) {
    
    
    .bangzhu-header {
        padding: 30px 0;
    }
    
    .bangzhu-header h1 {
        font-size: 1.8rem;
    }
    
    .bangzhu-content {
        padding: 15px;
    }
    
    .bangzhu-title {
        font-size: 1.1rem;
    }
    
    .bangzhu-desc {
        font-size: 0.9rem;
    }
}        
        
        
        /*neirong*/
        
        
        /* 基础样式 */
.neirong-content-wrapper {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.8;
 margin-top: 20px;
    padding: 0 20px;
}

.neirong-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 面包屑导航 */
.neirong-content-breadcrumb {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.neirong-content-breadcrumb a {
    color: #1e88e5;
    text-decoration: none;
    transition: color 0.2s;
}

.neirong-content-breadcrumb a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* 文章标题 */
.neirong-content-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #222;
}

/* 文章元信息 */
.neirong-content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #666;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.neirong-meta-item {
    display: flex;
    align-items: center;
}

/* 文章内容 */
.neirong-content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.neirong-content-body p {
    margin-bottom: 1em;
}

.neirong-content-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
}


.neirong-content-body blockquote {
    border-left: 4px solid #1e88e5;
    background: #f5f9ff;
    padding: 15px 20px;
    margin: 20px 0;
    color: #555;
    font-style: italic;
}

.neirong-content-body ul,
.neirong-content-body ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.neirong-content-body li {
    margin-bottom: 0.5em;
}

/*.neirong-content-body table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    margin: 20px 0;*/
/*    font-size: 0.95rem;*/
/*}*/

/*.neirong-content-body th,*/
/*.neirong-content-body td {*/
/*    padding: 12px 15px;*/
/*    border: 1px solid #ddd;*/
/*    text-align: left;*/
/*}*/

/*.neirong-content-body th {*/
/*    background-color: #f5f5f5;*/
/*    font-weight: 600;*/
/*}*/

/* 标签 */
.neirong-content-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.neirong-tags-label {
    font-size: 0.95rem;
    color: #666;
}

.neirong-tag-item {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f5;
    color: #555;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.neirong-tag-item:hover {
    background: #1e88e5;
    color: white;
}

/* 上一篇下一篇 */
.neirong-content-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.neirong-nav-prev,
.neirong-nav-next {
    display: flex;
    flex-direction: column;
}

.neirong-nav-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.neirong-nav-link {
    font-size: 1.05rem;
    color: #1e88e5;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
    word-break: break-word;
}

.neirong-nav-link:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .neirong-content-container {
        padding: 0;
    }
    
    .neirong-content-title {
        font-size: 1.8rem;
    }
    
    .neirong-content-body {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .neirong-content-wrapper {
       
        padding: 0 15px;
    }
    
    .neirong-content-title {
        font-size: 1.6rem;
    }
    
    .neirong-content-meta {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .neirong-content-navigation {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

        
        /*文章标题*/
        
        /* 重置所有标题样式 */
.article-detail-content h1,
.article-detail-content h2,
.article-detail-content h3,
.article-detail-content h4,
.article-detail-content h5,
.article-detail-content h6,
.neirong-content-body h1,
.neirong-content-body h2,
.neirong-content-body h3,
.neirong-content-body h4,
.neirong-content-body h5,
.neirong-content-body h6 {
  all: unset;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* 简洁版本标题样式 */
.article-detail-content h1,
.neirong-content-body h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 1.8rem 0 1rem 0;
  padding: 0.8rem 1rem;
  background: #f8f9fa;
  color: #2c3e50;
  border-left: 4px solid #3498db;
  border-radius: 4px;
}

.article-detail-content h2,
.neirong-content-body h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 1.6rem 0 0.8rem 0;
  padding: 0.7rem 0.9rem;
  background: #f8f9fa;
  color: #34495e;
  border-left: 4px solid #2ecc71;
  border-radius: 4px;
}

.article-detail-content h3,
.neirong-content-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 1.4rem 0 0.6rem 0;
  padding: 0.6rem 0.8rem;
  background: #f8f9fa;
  color: #2c3e50;
  border-left: 3px solid #9b59b6;
  border-radius: 3px;
}

.article-detail-content h4,
.neirong-content-body h4 {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 1.2rem 0 0.5rem 0;
  padding: 0.5rem 0.7rem;
  background: #f8f9fa;
  color: #4a5568;
  border-left: 3px solid #e74c3c;
  border-radius: 3px;
}

.article-detail-content h5,
.neirong-content-body h5 {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 1rem 0 0.4rem 0;
  padding: 0.4rem 0.6rem;
  background: #f8f9fa;
  color: #5a6c7d;
  border-left: 2px solid #f39c12;
  border-radius: 2px;
}

.article-detail-content h6,
.neirong-content-body h6 {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0.8rem 0 0.3rem 0;
  padding: 0.3rem 0.5rem;
  background: #f8f9fa;
  color: #6c757d;
  border-left: 2px solid #95a5a6;
  border-radius: 2px;
}



/* 为表格添加清晰的边框样式 */
.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; /* 单元格内边距 */
      margin: 0 0 15px 0;
}

/* 表头样式 */
.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;
  }
}

/*内容 pre*/

.article-detail-content code,
.article-detail-content kbd,
.article-detail-content pre,
.article-detail-content samp,
.neirong-content-body code,
.neirong-content-body kbd,
.neirong-content-body pre,
.neirong-content-body samp {
    font-size: 1em;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.article-detail-content code,
.article-detail-content kbd,
.neirong-content-body code,
.neirong-content-body kbd {
    padding: 2px 4px;
    font-size: 90%;
}

.article-detail-content code,
.neirong-content-body code {
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 2px;
    border: 1px solid #e1e1e1;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 4px rgba(0,0,0,.1);
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

.article-detail-content kbd,
.neirong-content-body kbd {
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
}

.article-detail-content kbd kbd,
.neirong-content-body kbd kbd {
    padding: 0;
    font-size: 100%;
    box-shadow: none;
}

.article-detail-content pre,
.neirong-content-body pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.article-detail-content pre code,
.neirong-content-body pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background-color: transparent;
}

.article-detail-content pre[class*="language-"],
.neirong-content-body pre[class*="language-"] {
    padding: 10px;
    border: 1px solid #f1f4f7 !important;
    margin: 0;
}

.article-detail-content pre[class*="language-"] code,
.neirong-content-body pre[class*="language-"] code {
    border: 0 !important;
}

.article-detail-content code.form-control-static,
.neirong-content-body code.form-control-static {
    padding: 5px 10px;
    min-height: 30px;
}

/* 额外的样式增强 */
.article-detail-content pre,
.neirong-content-body pre {
    overflow-x: auto;
    max-width: 100%;
}

.article-detail-content pre::-webkit-scrollbar,
.neirong-content-body pre::-webkit-scrollbar {
    height: 8px;
}

.article-detail-content pre::-webkit-scrollbar-track,
.neirong-content-body pre::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0 4px 4px;
}

.article-detail-content pre::-webkit-scrollbar-thumb,
.neirong-content-body pre::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.article-detail-content pre::-webkit-scrollbar-thumb:hover,
.neirong-content-body pre::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

        