  /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            padding-top: 70px;
        }
        
        a {
            text-decoration: none; /* 移除所有a标签下划线 */
            color: inherit;
        }
        
        /* 头部样式 */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #0a192f;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        /* Logo样式 */
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 36px;
            width: auto;
        }
        
        /* 导航菜单 */
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin: 0 15px;
            position: relative;
        }
        
        .nav-link {
            color: #ccd6f6;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: #64ffda;
        }
        
        .nav-item.active .nav-link {
            color: #64ffda;
        }
        
        .nav-item.active .nav-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #64ffda;
        }
        
        /* 右侧区域 */
        .header-right {
            display: flex;
            align-items: center;
        }
        
        /* 认证按钮 */
        .auth-buttons {
            display: flex;
            margin-right: 20px;
        }
        
        .auth-btn {
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 15px;
            margin-left: 12px;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .login-btn {
            border: 1px solid #64ffda;
            color: #64ffda;
        }
        
        .login-btn:hover {
            background: rgba(100, 255, 218, 0.1);
        }
        
        .register-btn {
            background: #1e90ff;
            color: white;
        }
        
        .register-btn:hover {
            background: #0077ff;
        }
        
        /* 汉堡菜单 */
        .hamburger {
            display: none;
            width: 30px;
            height: 20px;
            position: relative;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            z-index: 1001;
        }
        
        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: #ccd6f6;
            position: absolute;
            left: 0;
            transition: all 0.3s;
        }
        
        .hamburger span:nth-child(1) {
            top: 0;
        }
        
        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }
        
        .hamburger span:nth-child(3) {
            bottom: 0;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        /* 移动端样式 */
        @media (max-width: 992px) {
            .nav-list {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: #0a192f;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s;
                pointer-events: none;
                z-index: 1000;
            }
            
            .nav-list.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .auth-buttons {
                margin-right: 15px;
            }
            
            .hamburger {
                display: block;
            }
        }
		
		
		
		
		/*hero*/
		
		  /* 基础样式 - 科技蓝主题 */
    .dk-hero {
        padding: 40px 0;
        background: linear-gradient(135deg, #1a2a6c 0%, #3a7bd5 100%);
        color: #fff;
    }
    
    .dk-hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .dk-hero-content {
        flex: 1;
        max-width: 600px;
        padding-right: 40px;
    }
    
    .dk-hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .dk-hero-img {
        max-height: 500px;
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    /* 文字样式 */
    .dk-hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.2;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .dk-hero-subtitle {
        font-size: 1.25rem;
        font-weight: 400;
        margin-bottom: 30px;
        color: rgba(255,255,255,0.9);
    }
    
    /* 特性列表 */
    .dk-hero-features {
        margin-bottom: 30px;
        padding-left: 20px;
    }
    
    .dk-feature-item {
        font-size: 1rem;
        margin-bottom: 12px;
        position: relative;
        color: rgba(255,255,255,0.9);
    }
    
    .dk-feature-item:before {
        content: "•";
        color: #64ffda;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }
    
    /* 游戏标签 */
    .dk-hero-games {
        margin-bottom: 30px;
    }
    
    .dk-games-label {
        display: block;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.7);
        margin-bottom: 10px;
    }
    
    .dk-game-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .dk-game-tag {
        background: rgba(100, 255, 218, 0.2);
        color: #64ffda;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        border: 1px solid rgba(100, 255, 218, 0.3);
    }
    
    /* 按钮样式 */
    .dk-hero-cta {
        display: flex;
        gap: 15px;
        margin-top: 40px;
    }
    
    .dk-download-btn {
        background: #1e90ff;
        color: white;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .dk-download-btn:hover {
        background: #0077ff;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    }
    
    .dk-learn-more {
        border: 1px solid #64ffda;
        color: #64ffda;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .dk-learn-more:hover {
        background: rgba(100, 255, 218, 0.1);
        transform: translateY(-2px);
    }
    
    /* 移动端样式 */
    @media (max-width: 992px) {
        .dk-hero {
          
            padding: 30px 0;
            background: linear-gradient(135deg, #1a2a6c 0%, #3a7bd5 100%);
        }
        
        .dk-hero-container {
            flex-direction: column;
            padding: 0 15px;
        }
        
        .dk-hero-content {
            max-width: 100%;
            padding-right: 0;
            margin-bottom: 30px;
            order: 1;
        }
        
        .dk-hero-image {
            order: 2;
            margin-bottom: 30px;
        }
        
        .dk-hero-img {
            max-height: 350px;
        }
        
        .dk-hero-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .dk-hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .dk-hero-cta {
            flex-direction: column;
            gap: 10px;
        }
        
        .dk-game-tags {
            justify-content: center;
        }
    }
    
    @media (max-width: 576px) {
        .dk-hero-title {
            font-size: 1.5rem;
        }
        
        .dk-hero-subtitle {
            font-size: 1rem;
        }
        
        .dk-feature-item {
            font-size: 0.9rem;
        }
        
        .dk-hero-img {
            max-height: 280px;
        }
    }
	
	
	
	/*首页介绍*/
	
	   /* 基础样式 */
    .dk-homepage {
        font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .dk-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 通用部分样式 */
    .dk-section-header {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }
    
    .dk-section-decorator {
        display: block;
        width: 50px;
        height: 3px;
        background: #1e90ff;
        margin: 0 auto 15px;
    }
    
    .dk-section-title {
        font-size: 2rem;
        font-weight: 700;
        color: #0a192f;
        margin-bottom: 10px;
    }
    
    .dk-section-subtitle {
        font-size: 1.1rem;
        color: #666;
    }
    
    /* 平台部分 */
    .dk-platform-section {
        padding: 80px 0;
        background: #f8fafc;
    }
    
    .dk-platform-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .dk-platform-category {
        background: white;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .dk-platform-category:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .dk-category-title {
        font-size: 1.3rem;
        color: #1e90ff;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .dk-tag-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .dk-tag {
        background: #e6f2ff;
        color: #1e90ff;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
    }
    
    .dk-cta-wrapper {
        text-align: center;
    }
    
    .dk-cta-btn {
        display: inline-flex;
        align-items: center;
        background: #1e90ff;
        color: white;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .dk-cta-btn:hover {
        background: #0077ff;
        transform: translateY(-2px);
    }
    
    .dk-icon-tutorial {
        margin-right: 8px;
    }
    
    /* 技术优势部分 */
    .dk-tech-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #1a2a6c 0%, #3a7bd5 100%);
        color: white;
    }
    
    .dk-tech-section .dk-section-title,
    .dk-tech-section .dk-section-subtitle {
        color: white;
    }
    
    .dk-tech-section .dk-section-subtitle {
        opacity: 0.9;
    }
    
    .dk-feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .dk-feature-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 30px;
        transition: transform 0.3s;
    }
    
    .dk-feature-card:hover {
        transform: translateY(-5px);
    }
    
    .dk-card-icon {
        margin-bottom: 20px;
    }
    
    .dk-card-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: white;
    }
    
    .dk-card-desc {
        font-size: 0.95rem;
        opacity: 0.9;
    }
    
    /* 多样化选择部分 */
    .dk-diversity-section {
        padding: 80px 0;
        background: #f8fafc;
    }
    
    .dk-showcase-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .dk-showcase-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .dk-showcase-content {
        display: flex;
        align-items: center;
        padding: 0;
    }
    
    .dk-showcase-text {
        flex: 1;
        padding: 40px;
    }
    
    .dk-showcase-image {
        flex: 1;
        text-align: center;
        padding: 20px;
    }
    
    .dk-showcase-title {
        font-size: 1.4rem;
        color: #1e90ff;
        margin-bottom: 15px;
    }
    
    .dk-showcase-desc {
        color: #666;
        line-height: 1.7;
    }
    
    .dk-alt-layout .dk-showcase-content {
        flex-direction: row-reverse;
    }
    
    /* 应用场景部分 */
    .dk-apps-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #dee2f1 0%, #3a7bd5 100%);
        color: white;
    }
    
    .dk-apps-section .dk-section-title,
    .dk-apps-section .dk-section-subtitle {
        color: white;
    }
    
    .dk-apps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }
    
    .dk-app-card {
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 30px 20px;
        transition: transform 0.3s;
    }
    
    .dk-app-card:hover {
        transform: translateY(-5px);
    }
    
    .dk-app-icon {
        margin-bottom: 15px;
    }
    
    .dk-app-name {
        font-size: 1.1rem;
        color: white;
    }
    
    /* 节点布局部分 */
    .dk-nodes-section {
        padding: 80px 0;
        background: #0a192f;
        color: white;
    }
    
    .dk-nodes-section .dk-section-title,
    .dk-nodes-section .dk-section-subtitle {
        color: white;
    }
    
    /* 响应式设计 */
    @media (max-width: 992px) {
        .dk-showcase-content {
            flex-direction: column;
        }
        
        .dk-alt-layout .dk-showcase-content {
            flex-direction: column;
        }
        
        .dk-showcase-text,
        .dk-showcase-image {
            padding: 30px;
        }
        
        .dk-apps-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .dk-section-title {
            font-size: 1.6rem;
        }
        
        .dk-section-subtitle {
            font-size: 1rem;
        }
        
        .dk-platform-grid {
            grid-template-columns: 1fr;
        }
        
        .dk-feature-grid {
            grid-template-columns: 1fr;
        }
        
        .dk-apps-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .dk-section-title {
            font-size: 1.4rem;
        }
        
        .dk-apps-grid {
            grid-template-columns: 1fr;
        }
    }
	
	
	/*底部文章*/
	
	    /* 帮助中心基础样式 */
       /* 帮助中心基础样式 */
    .dk-help-center {
        padding: 60px 0;
        background: #f8fafc;
    }
    
    .dk-help-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 头部样式 */
    .dk-help-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .dk-help-title {
        font-size: 2rem;
        color: #0a192f;
        margin-bottom: 10px;
    }
    
    .dk-help-subtitle {
        font-size: 1.1rem;
        color: #666;
    }
    
    /* 标签导航 */
    .dk-tab-nav {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #e1e6eb;
    }
    
    .dk-tab-btn {
        padding: 12px 25px;
        background: none;
        border: none;
        font-size: 1rem;
        color: #666;
        cursor: pointer;
        position: relative;
        transition: all 0.3s;
    }
    
    .dk-tab-btn:hover {
        color: #1e90ff;
    }
    
    .dk-tab-btn.active {
        color: #1e90ff;
        font-weight: 500;
    }
    
    .dk-tab-btn.active:after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #1e90ff;
    }
    
    /* 标签内容 */
    .dk-tab-content {
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .dk-tab-pane {
        display: none;
        padding: 30px;
    }
    
    .dk-tab-pane.active {
        display: block;
    }
    
    /* 文章网格布局 */
    .dk-article-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .dk-article-card {
        padding: 12px 15px;
        border-radius: 6px;
        background: #f9fbfd;
        transition: all 0.3s;
    }
    
    .dk-article-card:hover {
        background: #f0f7ff;
        transform: translateY(-2px);
    }
    
    .dk-article-link {
        display: flex;
        align-items: center;
        color: #333;
        transition: color 0.3s;
    }
    
    .dk-article-link:hover {
        color: #1e90ff;
    }
    
    .dk-article-bullet {
        color: #1e90ff;
        margin-right: 12px;
        font-weight: bold;
    }
    
    .dk-article-title {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.95rem;
    }
    
    .dk-article-date {
        color: #999;
        font-size: 0.8rem;
        margin-left: 15px;
        white-space: nowrap;
    }
    
    /* 查看更多按钮 */
    .dk-view-more {
        text-align: center;
        margin-top: 25px;
    }
    
    .dk-more-btn {
        display: inline-block;
        padding: 10px 25px;
        background: #1e90ff;
        color: white;
        border-radius: 4px;
        font-size: 0.95rem;
        transition: all 0.3s;
    }
    
    .dk-more-btn:hover {
        background: #0077ff;
        transform: translateY(-2px);
    }
    
    /* 响应式设计 */
    @media (max-width: 992px) {
        .dk-article-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .dk-help-title {
            font-size: 1.6rem;
        }
        
        .dk-help-subtitle {
            font-size: 1rem;
        }
        
        .dk-tab-nav {
            flex-wrap: wrap;
        }
        
        .dk-tab-btn {
            padding: 10px 15px;
            font-size: 0.95rem;
        }
        
        .dk-tab-pane {
            padding: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .dk-help-center {
            padding: 40px 0;
        }
        
        .dk-help-title {
            font-size: 1.4rem;
        }
        
        .dk-article-link {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .dk-article-date {
            margin-left: 27px;
            margin-top: 5px;
        }
    }
	
	
	/*footer*/
	
	 /* 底部基础样式 */
    .dk-footer {
        background: #0a192f;
        color: #ccd6f6;
        padding: 50px 0 20px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .dk-footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 友情链接部分 */
    .dk-friend-links {
        margin-bottom: 30px;
    }
    
    .dk-links-title {
        font-size: 1.2rem;
        color: #64ffda;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    }
    
    .dk-links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .dk-link-item {
        color: #ccd6f6;
        transition: all 0.3s;
        padding: 5px 0;
    }
    
    .dk-link-item:hover {
        color: #64ffda;
        transform: translateX(3px);
    }
    
    /* 法律声明部分 */
    .dk-legal-text {
        color: #8892b0;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .dk-footer-meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        border-top: 1px solid rgba(204, 214, 246, 0.1);
        padding-top: 20px;
    }
    
    .dk-icp-link {
        color: #8892b0;
        transition: color 0.3s;
    }
    
    .dk-icp-link:hover {
        color: #64ffda;
    }
    
    .dk-copyright {
        color: #8892b0;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .dk-footer {
            padding: 30px 0 15px;
        }
        
        .dk-links-grid {
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        }
        
        .dk-footer-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
    }
    
    @media (max-width: 480px) {
        .dk-links-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .dk-legal-text {
            font-size: 0.85rem;
        }
    }
	
	
	/*客服模板*/
	
	    /* 主容器样式 - 使用独特类名 */
        .custom-service-7e8f9g {
            position: fixed;
            right: 20px;
            bottom: 100px;
            z-index: 9999;
            font-family: 'Microsoft YaHei', sans-serif;
        }

        /* 客服按钮通用样式 */
        .custom-service-7e8f9g .service-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            margin-bottom: 10px;
            border-radius: 50%;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }

        .custom-service-7e8f9g .service-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .custom-service-7e8f9g .service-btn img {
            width: 30px;
            height: 30px;
        }

        /* QQ弹窗样式 */
        .custom-service-7e8f9g .qq-popup {
            position: absolute;
            right: 60px;
            bottom: 24px;
            width: 200px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            padding: 15px;
            display: none;
            opacity: 0;
            transition: opacity 0.3s;
            transform: translateY(50%);
        }

        .custom-service-7e8f9g .qq-popup.show {
            display: block;
            opacity: 1;
        }

        .custom-service-7e8f9g .qq-popup::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #fff;
        }

        .custom-service-7e8f9g .qq-title {
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
        }

        .custom-service-7e8f9g .qq-number {
            font-size: 16px;
            color: #333;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .custom-service-7e8f9g .copy-btn {
            width: 20px;
            height: 20px;
            margin-left: 8px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg>') no-repeat center;
            background-size: contain;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.2s;
        }

        .custom-service-7e8f9g .copy-btn:hover {
            opacity: 1;
        }

        .custom-service-7e8f9g .qq-consult {
            display: block;
            background: #12B7F5;
            color: #fff;
            text-align: center;
            padding: 8px 0;
            border-radius: 4px;
            font-size: 14px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .custom-service-7e8f9g .qq-consult:hover {
            background: #0E9BD8;
        }

        /* 微信弹窗样式 */
        .custom-service-7e8f9g .wechat-popup {
            position: absolute;
            right: 60px;
            bottom: 24px;
            width: 180px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            padding: 15px;
            display: none;
            text-align: center;
            transform: translateY(50%);
        }

        .custom-service-7e8f9g .wechat-popup.show {
            display: block;
        }

        .custom-service-7e8f9g .wechat-popup::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #fff;
        }

        .custom-service-7e8f9g .wechat-popup img {
            width: 150px;
            height: 150px;
            margin-bottom: 5px;
        }

        .custom-service-7e8f9g .wechat-popup p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        /* 返回顶部按钮 */
        .custom-service-7e8f9g .back-top {
            display: none;
            background-color: #fff;
        }

        .custom-service-7e8f9g .back-top.show {
            display: flex;
        }

        /* 复制成功提示 */
        .custom-service-7e8f9g .copy-tooltip {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: #4CAF50;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }

        .custom-service-7e8f9g .copy-tooltip.show {
            opacity: 1;
        }
	
	
	
	/*jiage*/
	
	    /* 基础样式 */
    .price-section {
        padding: 60px 0;
        background: #f8fafc;
    }
    
    .price-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 标题样式 */
    .price-title {
        text-align: center;
        font-size: 2rem;
        color: #0a192f;
        margin-bottom: 40px;
    }
    
    /* 价格方案容器 */
    .price-plans {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    /* 价格卡片 */
    .price-card {
        flex: 1;
        min-width: 280px;
        max-width: 380px;
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .price-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .price-featured {
        border: 2px solid #1e90ff;
        position: relative;
    }
    
    .price-featured::before {
        content: '推荐';
        position: absolute;
        top: -12px;
        right: 20px;
        background: #1e90ff;
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }
    
    /* 卡片头部 */
    .price-card-header {
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .price-plan-name {
        font-size: 1.5rem;
        color: #0a192f;
        margin: 0;
    }
    
    .price-tag {
        background: #f0f7ff;
        color: #1e90ff;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    /* 价格高亮区域 */
    .price-highlight {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e1e6eb;
    }
    
    .price-amount {
        font-size: 1.8rem;
        color: #0a192f;
        margin: 0 0 5px;
    }
    
    .price-number {
        font-size: 2.2rem;
        font-weight: bold;
        color: #1e90ff;
    }
    
    .price-original {
        color: #999;
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* 功能列表 */
    .price-features {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
    }
    
    .price-feature-item {
        padding: 8px 0;
        position: relative;
        padding-left: 24px;
    }
    
    .price-feature-item::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #1e90ff;
        font-weight: bold;
    }
    
    .price-important {
        font-weight: 500;
        color: #ff4757;
    }
    
    /* 购买按钮 */
    .price-btn {
        display: block;
        text-align: center;
        padding: 12px;
        background: #1e90ff;
        color: white;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s, transform 0.3s;
    }
    
    .price-btn:hover {
        background: #0077ff;
        transform: translateY(-2px);
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .price-section {
            padding: 40px 0;
        }
        
        .price-title {
            font-size: 1.6rem;
            margin-bottom: 30px;
        }
        
        .price-plans {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .price-card {
            width: 100%;
            max-width: 350px;
        }
        
        .price-amount {
            font-size: 1.5rem;
        }
        
        .price-number {
            font-size: 1.8rem;
        }
    }
    
    @media (max-width: 480px) {
        .price-title {
            font-size: 1.4rem;
        }
        
        .price-card {
            padding: 20px;
        }
        
        .price-plan-name {
            font-size: 1.3rem;
        }
    }
	
	
	/*xiazai*/
	
	 /* 基础样式 */
    .xiazai-section {
        padding: 40px 0;
        background: #f8fafc;
    }
    
    .xiazai-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 头部下载区域 */
    .xiazai-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .xiazai-main-btn {
        display: inline-block;
        padding: 12px 36px;
        background: #1e90ff;
        color: white;
        border-radius: 30px;
        font-size: 1.2rem;
        font-weight: 500;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
        transition: all 0.3s;
    }
    
    .xiazai-main-btn:hover {
        background: #0077ff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(30, 144, 255, 0.4);
    }
    
    .xiazai-support-text {
        margin-top: 15px;
        color: #666;
        font-size: 0.9rem;
    }
    
    .xiazai-support-link {
        color: #1e90ff;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .xiazai-support-link:hover {
        color: #0077ff;
        text-decoration: underline;
    }
    
    /* 平台下载卡片 */
    .xiazai-platforms {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }
    
    .xiazai-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        display: flex;
        flex-direction: column;
    }
    
    .xiazai-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .xiazai-disabled {
        opacity: 0.6;
        filter: grayscale(30%);
    }
    
    .xiazai-disabled:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    /* 平台信息 */
    .xiazai-platform-info {
        flex: 1;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .xiazai-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .xiazai-platform-title {
        font-size: 1.3rem;
        color: #0a192f;
        margin: 0 0 10px;
    }
    
    .xiazai-platform-desc {
        color: #666;
        font-size: 0.95rem;
        margin: 0;
    }
    
    /* 下载按钮 */
    .xiazai-btn {
        display: block;
        padding: 12px;
        background: #1e90ff;
        color: white;
        border-radius: 6px;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .xiazai-btn:hover:not([disabled]) {
        background: #0077ff;
        transform: translateY(-2px);
    }
    
    .xiazai-btn[disabled] {
        background: #e1e6eb;
        color: #999;
        cursor: not-allowed;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .xiazai-section {
            padding: 30px 0;
        }
        
        .xiazai-header {
            margin-bottom: 30px;
        }
        
        .xiazai-main-btn {
            padding: 10px 30px;
            font-size: 1.1rem;
        }
        
        .xiazai-platforms {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .xiazai-card {
            padding: 25px;
        }
    }
    
    @media (max-width: 480px) {
        .xiazai-main-btn {
            font-size: 1rem;
        }
        
        .xiazai-platform-title {
            font-size: 1.2rem;
        }
    }
	
	
	
	/*help*/
	
	/* 基础样式 */
    .bangzhu-help-center {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .bangzhu-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 头部区域 */
    .bangzhu-header {
        background: linear-gradient(135deg, #1e88e5, #0d47a1);
        color: white;
        padding: 60px 0 40px;
        margin-bottom: 40px;
    }
    
    .bangzhu-header-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .bangzhu-main-title {
        font-size: 2.5rem;
        margin: 0 0 15px;
        font-weight: 600;
    }
    
    .bangzhu-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        margin: 0;
    }
    
    /* 主内容区 */
    .bangzhu-main-container {
        padding: 0 20px 40px;
    }
    
    .bangzhu-content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* 顶部导航栏 */
    .bangzhu-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    /* 面包屑导航 */
    .bangzhu-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
    }
    
    .bangzhu-breadcrumb-item {
        color: #1e88e5;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s;
    }
    
    .bangzhu-breadcrumb-item:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    
    .bangzhu-breadcrumb-separator {
        margin: 0 8px;
        color: #666;
        font-size: 0.95rem;
    }
    
    /* 搜索框 */
    .bangzhu-search-wrapper {
        display: flex;
        border: 1px solid #e0e0e0;
        border-radius: 30px;
        overflow: hidden;
        transition: all 0.3s;
    }
    
    .bangzhu-search-wrapper:focus-within {
        border-color: #1e88e5;
        box-shadow: 0 0 0 3px 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 {
        display: flex;
        align-items: center;
        padding: 0 15px;
        background: #1e88e5;
        color: white;
        border: none;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .bangzhu-search-button:hover {
        background: #1565c0;
    }
    
    .bangzhu-icon-search {
        margin-right: 5px;
    }
    
    .bangzhu-search-text {
        font-size: 0.95rem;
    }
    
    /* 子栏目导航 */
    .bangzhu-subnav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 0 30px;
        padding: 0;
        list-style: none;
    }
    
    .bangzhu-subnav-item {
        display: inline-block;
        padding: 8px 16px;
        background: #f5f5f5;
        color: #333;
        text-decoration: none;
        border-radius: 20px;
        font-size: 0.95rem;
        transition: all 0.3s;
    }
    
    .bangzhu-subnav-item:hover {
        background: #e0e0e0;
    }
    
    .bangzhu-subnav-item.bangzhu-active {
        background: #1e88e5;
        color: white;
    }
    
    /* 教程列表 */
    .bangzhu-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .bangzhu-item {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .bangzhu-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .bangzhu-link {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%;
    }
    
    /* 缩略图容器 - 优化版 */
    .bangzhu-thumb-container {
        width: 100%;
        height: 200px; /* 固定高度 */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
    }
    
    .bangzhu-thumb {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* 保持原比例缩放 */
        transition: transform 0.3s;
    }
    
    .bangzhu-item:hover .bangzhu-thumb {
        transform: scale(1.05);
    }
    
    .bangzhu-no-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
    }
    
    /* 内容区域 */
    .bangzhu-content {
        padding: 20px;
    }
    
    .bangzhu-meta {
        display: flex;
        justify-content: space-between;
        color: #666;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .bangzhu-date {
        display: flex;
        align-items: center;
    }
    
    .bangzhu-views {
        display: flex;
        align-items: center;
    }
    
    .bangzhu-icon-eye {
        margin-right: 5px;
    }
    
    .bangzhu-title {
        font-size: 1.2rem;
        margin: 0 0 10px;
        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;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .bangzhu-more {
        color: #1e88e5;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s;
    }
    
    .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 30px;
        }
        
        .bangzhu-main-title {
            font-size: 2rem;
        }
        
        .bangzhu-subtitle {
            font-size: 1.1rem;
        }
        
        .bangzhu-top-bar {
            flex-direction: column;
            align-items: stretch;
        }
        
        .bangzhu-search-wrapper {
            width: 100%;
        }
        
        .bangzhu-list {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .bangzhu-subnav {
            justify-content: center;
        }
        
        .bangzhu-thumb-container {
            height: 180px;
        }
    }
    
    @media (max-width: 480px) {
        .bangzhu-header {
            padding: 30px 0 20px;
        }
        
        .bangzhu-main-title {
            font-size: 1.8rem;
        }
        
        .bangzhu-subtitle {
            font-size: 1rem;
        }
        
        .bangzhu-container,
        .bangzhu-main-container {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .bangzhu-pagination-list a,
        .bangzhu-pagination-list strong {
            min-width: 30px;
            padding: 6px 8px;
            font-size: 0.9rem;
        }
        
        .bangzhu-thumb-container {
            height: 160px;
        }
    }
	
	
	/*neirong*/
	
	
	   /* 基础样式 */
    .neirong-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        margin-bottom: 60px;
    }
    
    .neirong-container {
        max-width: 1100px;
        margin: 0 auto;
		margin-top: 20px;
        padding: 0 30px;
    }
    
    /* 面包屑导航 */
    .neirong-breadcrumb {
        margin-bottom: 20px;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .neirong-breadcrumb-item {
        color: #1e88e5;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s;
    }
    
    .neirong-breadcrumb-item:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    
    .neirong-breadcrumb-separator {
        margin: 0 8px;
        color: #666;
        font-size: 0.95rem;
    }
    
    /* 文章标题 */
    .neirong-title {
        font-size: 2rem;
        margin: 0 0 20px;
        color: #222;
        line-height: 1.3;
        font-weight: 600;
    }
    
    /* 文章元信息 */
    .neirong-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 30px;
        color: #666;
        font-size: 0.95rem;
    }
    
    .neirong-meta-item {
        display: inline-flex;
        align-items: center;
    }
    
    /* 文章内容 */
    .neirong-body {
        margin-bottom: 40px;
    }
    
    .neirong-body p {
        margin: 0 0 1.5em;
    }
    
    .neirong-body img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
    }
    
    .neirong-body a {
  color: #1890ff;
  text-decoration: none;
}

.neirong-body a:hover {
  color: #ff4d4f;
  text-decoration: underline;
}
    .neirong-body h2,
    .neirong-body h3,
    .neirong-body h4 {
        margin: 1.5em 0 0.8em;
        color: #222;
    }
    
    .neirong-body h2 {
        font-size: 1.6rem;
        border-bottom: 1px solid #eee;
        padding-bottom: 0.5em;
    }
    
    .neirong-body h3 {
        font-size: 1.4rem;
    }
    
    .neirong-body h4 {
        font-size: 1.2rem;
    }
    
    .neirong-body ul,
    .neirong-body ol {
        margin: 1em 0;
        padding-left: 2em;
    }
    
    .neirong-body li {
        margin-bottom: 0.5em;
    }
    
    .neirong-body blockquote {
        margin: 1.5em 0;
        padding: 1em 1.5em;
        background: #f8fafc;
        border-left: 4px solid #1e88e5;
        color: #555;
        font-style: italic;
    }
    
    /* 标签 */
    .neirong-tags {
        margin-bottom: 40px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }
    
    .neirong-tags-label {
        font-size: 0.95rem;
        color: #666;
    }
    
    .neirong-tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .neirong-tag-item {
        display: inline-block;
        padding: 4px 12px;
        background: #f0f7ff;
        color: #1e88e5;
        border-radius: 20px;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .neirong-tag-item:hover {
        background: #d0e3ff;
    }
    
    /* 上一篇下一篇 */
    .neirong-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
        border-top: 1px solid #eee;
        padding-top: 30px;
    }
    
    .neirong-nav-prev,
    .neirong-nav-next {
        flex: 1;
        max-width: 48%;
    }
    
    .neirong-nav-prev {
        padding-right: 15px;
    }
    
    .neirong-nav-next {
        text-align: right;
        padding-left: 15px;
    }
    
    .neirong-nav-label {
        display: block;
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .neirong-nav-link {
        color: #1e88e5;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .neirong-nav-link:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .neirong-container {
            padding: 0 20px;
        }
        
        .neirong-title {
            font-size: 1.8rem;
        }
        
        .neirong-meta {
            gap: 10px;
        }
        
        .neirong-navigation {
            flex-direction: column;
            gap: 20px;
        }
        
        .neirong-nav-prev,
        .neirong-nav-next {
            max-width: 100%;
            padding: 0;
        }
        
        .neirong-nav-next {
            text-align: left;
        }
    }
    
    @media (max-width: 480px) {
        .neirong-container {
            padding: 0 15px;
        }
        
        .neirong-title {
            font-size: 1.6rem;
        }
        
        .neirong-meta {
            font-size: 0.9rem;
        }
        
        .neirong-body h2 {
            font-size: 1.4rem;
        }
        
        .neirong-body h3 {
            font-size: 1.2rem;
        }
        
        .neirong-body h4 {
            font-size: 1.1rem;
        }
    }