* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f7f8fa;
    color: #1a1a1a;
    line-height: 1.6;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.page-header {
    
background: #6344C6;
    color: #fff;
    padding: 80px 40px;
    text-align: center;
    border-bottom: 1px solid #e6e6e6;
    background: #6344C6;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}
.content {

}
/* ========== Hero区域 - 大气稳重装饰版 ========== */
.hero-section {
    position: relative;
    text-align: center;
    padding: 120px 60px 60px 60px;
    background: linear-gradient(90deg, #b9dcff, #f5ecfa), linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #fff 500px, #fff);
    overflow: hidden;
}

/* 装饰圆形 - 左上浮动 */
.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(99, 68, 198, 0.15) 0%, rgba(99, 68, 198, 0.02) 100%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite;
    pointer-events: none;
}

/* 装饰圆形 - 右下浮动 */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 68, 198, 0.12) 0%, rgba(99, 68, 198, 0.02) 100%);
    border-radius: 50%;
    animation: heroFloat 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* 小装饰圆点 - 通过额外元素添加 */
.hero-dot-1 {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(99, 68, 198, 0.25);
    border-radius: 50%;
    top: 25%;
    right: 20%;
    animation: heroPulse 3s ease-in-out infinite;
}

.hero-dot-2 {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(99, 68, 198, 0.2);
    border-radius: 50%;
    bottom: 35%;
    left: 15%;
    animation: heroPulse 4s ease-in-out infinite 1s;
}

.hero-dot-3 {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(99, 68, 198, 0.15);
    border-radius: 50%;
    top: 40%;
    left: 10%;
    animation: heroPulse 5s ease-in-out infinite 0.5s;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* 原有样式保持不变 */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 68, 198, 0.1);
    border: 1px solid rgba(99, 68, 198, 0.2);
    color: #6344C6;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border-radius: 0px 15px 0px 5px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero-title .highlight {
    color: #6344C6;
}

.hero-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.btn-primary {
    padding: 14px 28px;
    background: #6344C6;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    border: 1px solid #6344C6;
    border-radius: 0px 15px 0px 5px;
}
.btn-primary:hover {
    background: #005a9e;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.3);
}
.btn-secondary {
    padding: 14px 28px;
    background: #fff;
    color: #6344C6;
    text-decoration: none;
    border: 1px solid #6344C6;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    border-radius: 0px 15px 0px 5px;
}
.btn-secondary:hover {
    background: #f0f7ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.2);
}
.stats-section {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    /*! padding: 40px 20px; */
    /*! background: #f5f7fa; */
    /*! border: 1px solid #e6e6e6; */
}
.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6344C6;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.95rem;
    color: #666;
}
.modules-section {
    margin-bottom: 60px;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}
.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 120, 212, 0.1);
    border: 1px solid rgba(0, 120, 212, 0.2);
    color: #6344C6;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border-radius: 0px 15px 0px 5px;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.module-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border: 1px solid #e6e6e6;
    transition: all 0.3s;
    background: #f5f7fa;
    border: 1px solid #e6e6e6;
    display: block;
    cursor: pointer;
}
.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.1);
    border-color: #6344C6;
}
.module-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #6344C6;
}
.module-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.module-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
/* ========== AI专家区域 - 梯形拼接背景版 ========== */
.ai-section {
    position: relative;
    background: #6344C6;
    color: #fff;
    padding: 80px 40px;
    overflow: hidden;
}

/* 上梯形 - 倒梯形 */
.ai-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    animation: aiFloatTrapezoid 8s ease-in-out infinite;
    pointer-events: none;
}

/* 下梯形 - 正梯形 */
.ai-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
    animation: aiFloatTrapezoid 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes aiFloatTrapezoid {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* 额外装饰梯形元素 */
.ai-rect-1 {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 150px;
    background: rgba(255, 255, 255, 0.04);
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    animation: aiFloatTrapezoid2 6s ease-in-out infinite 1s;
    pointer-events: none;
}

.ai-rect-2 {
    position: absolute;
    bottom: 15%;
    left: -5%;
    width: 250px;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 20% 100%);
    animation: aiFloatTrapezoid2 7s ease-in-out infinite 0.5s;
    pointer-events: none;
}

@keyframes aiFloatTrapezoid2 {
    0%, 100% { transform: translateY(0); opacity: 0.04; }
    50% { transform: translateY(-12px); opacity: 0.06; }
}

/* 标题区域 */
.ai-section .section-header {
    position: relative;
    z-index: 1;
}

.ai-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 0px 15px 0px 5px;
    position: relative;
    z-index: 1;
}

.ai-section .section-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.ai-section .section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* 网格布局 */
.ai-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* 专家卡片 */
.ai-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.ai-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* 图标 */
.ai-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.ai-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.ai-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* AI区域响应式适配 */
@media (max-width: 991px) {
    .ai-section {
        padding: 60px 30px;
    }
    .ai-section .section-title {
        font-size: 1.8rem;
    }
    .ai-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .ai-section {
        padding: 50px 20px;
    }
    .ai-section .section-title {
        font-size: 1.5rem;
    }
    .ai-section .section-desc {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    .ai-grid {
        grid-template-columns: 1fr;
    }
    .ai-card {
        padding: 16px;
    }
    .ai-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}
.ai-icon {
    width: 60px;
    height: 60px;
    /*! background: rgba(255,255,255,0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}
.ai-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.ai-info p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.pricing-section {
    margin-bottom: 60px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.pricing-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border: 1px solid #e6e6e6;
    transition: all 0.3s;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.1);
    border-color: #6344C6;
}
.pricing-card.popular {
    border: 1px solid #6344C6;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.2);
}
.pricing-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.pricing-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6344C6;
    margin-bottom: 4px;
}
.pricing-price small {
    font-size: 1rem;
    font-weight: 500;
}
.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
}
.pricing-btn-primary {
    background: #6344C6;
    color: #fff;
    border: 1px solid #6344C6;
}
.pricing-btn-primary:hover {
    background: #005a9e;
    transform: translateY(-1px);
}
.pricing-btn-secondary {
    background: #fff;
    color: #6344C6;
    border: 1px solid #6344C6;
}
.pricing-btn-secondary:hover {
    background: #f0f7ff;
}
.cta-section {
    
background: #6344C6;
    color: #fff;
    padding: 40px;
    text-align: center;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.site-footer {
    /*! background: #f5f7fa; */
    color: #1a1a1a;
    padding: 60px;
    /*! margin-top: 60px; */
    /*! border-top: 1px solid #e6e6e6; */
    /*! background: linear-gradient(180deg,#eff3f9 -6.32%,rgba(215,229,237,0) 66.74%); */
    max-width: 1400px;
    width: 100%;
    left: 0;
    right: 0;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #6344C6;
}
.footer-desc {
    color: #000;
    line-height: 1.6;
}
.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #6344C6;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e6e6e6;
    font-size: 0.85rem;
    color: #000;
}
.footer-bottom a {
    color: #000;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #90cdf4;
}

/* 公文类型模块 */
.doc-category-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.doc-category-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.doc-category-card.open {
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.doc-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: #f8fafc;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}
.doc-category-header:hover {
    background: #f1f5f9;
}
.doc-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.doc-category-info {
    flex: 1;
}
.doc-category-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}
.doc-category-desc {
    font-size: 0.85rem;
    color: #4a5568;
}
.doc-category-arrow {
    font-size: 0.8rem;
    color: #64748b;
    transition: transform 0.3s;
}
.doc-category-card.open .doc-category-arrow {
    transform: rotate(180deg);
}
.doc-category-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.doc-category-card.open .doc-category-body {
    max-height: 500px;
}
.doc-table {
    width: 100%;
    border-collapse: collapse;
}
.doc-table th,
.doc-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.doc-table th {
    background: #f8fafc;
    font-weight: 600;
    font-size: 0.85rem;
    color: #4a5568;
}
.doc-table tr:hover {
    background: #f8fafc;
}
.doc-type-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1a202c;
}
.doc-type-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}
.doc-focus {
    font-size: 0.9rem;
    color: #1a202c;
}
.doc-focus small {
    font-size: 0.8rem;
    display: block;
    margin-top: 4px;
}
.doc-structure ol {
    padding-left: 20px;
    margin: 0;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
}
.doc-structure li {
    margin-bottom: 4px;
}
.doc-structure li:last-child {
    margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .page-header {
        padding: 40px 20px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .content {
        padding: 40px 20px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
    .stats-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
    }
    .stat-item {
        min-width: 150px;
    }
    .modules-grid {
        grid-template-columns: 1fr;
    }
    .ai-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .cta-title {
        font-size: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .doc-table {
        font-size: 0.85rem;
    }
    .doc-table th,
    .doc-table td {
        padding: 8px 12px;
    }
    .doc-category-header {
        padding: 16px 20px;
    }
    .doc-category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .module-card {
        padding: 20px;
    }
    .module-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.modules-section,
.ai-section,
.pricing-section,
.cta-section {
    animation: fadeIn 0.6s ease-out;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* 公文知识百科部分 */
.doc-knowledge-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.doc-knowledge-container {
    max-width: 1200px;
    margin: 0 auto;
}

.doc-knowledge-header {
    text-align: center;
    margin-bottom: 60px;
}

.doc-knowledge-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.doc-knowledge-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px;
}

.doc-knowledge-desc {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0;
}

/* 示例部分 */
.examples-section {
    padding: 100px 40px;
    background: #fff;
}

.examples-container {
    width: 100%;
    margin: 0 auto;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.example-card {
    background: #f8fafc;
    padding: 28px;
    transition: all 0.4s;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #1976D2;
}

.example-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.example-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.example-card-category {
    font-size: 0.75rem;
    color: #a0aec0;
    margin-bottom: 2px;
}

.example-card-type {
    font-weight: 700;
    color: #1a202c;
}

.example-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.example-card-content {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 16px;
}

.example-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.example-card-date {
    font-size: 0.75rem;
    color: #a0aec0;
}

.example-card-link {
    font-size: 0.85rem;
    color: #c9a227;
    font-weight: 600;
    text-decoration: none;
}

.example-card-link:hover {
    text-decoration: underline;
}

/* 立即使用按钮 */
.cta-button-container {
    text-align: center;
    margin-top: 48px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.cta-button-desc {
    margin-top: 16px;
    font-size: 0.88rem;
    color: #94a3b8;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .doc-knowledge-section,
    .examples-section {
        padding: 80px 30px;
    }
}

@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: 1fr;
    }
    .doc-knowledge-section,
    .examples-section {
        padding: 60px 20px;
    }
    .doc-knowledge-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   V2 全新设计样式 - 会员定价、公文百科、精品案例
   ============================================ */

/* 通用标题样式 */
.section-header-v2 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border: 1px solid rgba(102,126,234,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 16px;
}

.section-badge.docs {
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(5,150,105,0.1));
    border-color: rgba(16,185,129,0.2);
    color: #10b981;
}

.section-badge.examples {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(217,119,6,0.1));
    border-color: rgba(245,158,11,0.2);
    color: #d97706;
}

.section-title-v2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #1a202c, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-v2 {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   会员定价 V3 - 简洁高端设计
   ============================================ */
.pricing-section-v2 {
    position: relative;
    padding: 100px 20px;
    background: #f8fafc;
    overflow: hidden;
}

.pricing-bg-orb,
.pricing-bg-orb-2 {
    display: none;
}

.pricing-section-v2 .section-title-v2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.pricing-section-v2 .section-desc-v2 {
    color: #64748b;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card-v2 {
    position: relative;
    background: #fff;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    overflow: hidden;
}

.pricing-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99,68,198,0.15);
    border-color: #6344C6;
}

.pricing-card-v2.popular {
    background: #fff;
    border: 3px solid #6344C6;
    position: relative;
}

.pricing-card-v2.popular:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99,68,198,0.2);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #6344C6;
    color: #fff;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
}

.pricing-card-glow {
    display: none;
}

.pricing-card-content {
    background: #fff;
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-v2.popular .pricing-card-content {
    padding-top: 70px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #6344C6;
    margin: 0 auto 20px;
}

.pricing-card-v2.popular .pricing-icon {
    background: #6344C6;
    border-color: #6344C6;
    color: #fff;
}

.pricing-name-v2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}

.pricing-desc-v2 {
    font-size: 0.9rem;
    color: #64748b;
}

.pricing-price-v2 {
    text-align: center;
    margin-bottom: 12px;
}

.pricing-price-v2 .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748b;
    vertical-align: top;
}

.pricing-price-v2 .amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.pricing-price-v2 .period {
    font-size: 0.95rem;
    color: #64748b;
}

.pricing-save {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6344C6;
    background: rgba(99,68,198,0.1);
    padding: 6px 16px;
    margin: 0 auto 28px;
    width: fit-content;
}

.pricing-save.highlight {
    background: #6344C6;
    color: #fff;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #475569;
}

.pricing-features li.disabled {
    color: #94a3b8;
}

.pricing-features li i {
    font-size: 1.1rem;
}

.pricing-features li i.bi-check2 {
    color: #6344C6;
}

.pricing-features li i.bi-x {
    color: #94a3b8;
}

.pricing-btn-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #6344C6;
    cursor: pointer;
}

.pricing-btn-v2.btn-outline {
    background: #fff;
    color: #6344C6;
    border: 1px solid;
}

.pricing-btn-v2.btn-outline:hover {
    background: #6344C6;
    color: #fff;
}

.pricing-btn-v2.btn-primary {
    background: #6344C6;
    color: #fff;
    box-shadow: 0 4px 12px rgba(99,68,198,0.3);
}

.pricing-btn-v2.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99,68,198,0.4);
    background: #4c3599;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.trust-item i {
    color: #6344C6;
    font-size: 1.2rem;
}

/* ============================================
   会员定价 V3 响应式设计
   ============================================ */
@media (max-width: 1400px) {
    .pricing-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .pricing-section-v2 {
        padding: 80px 20px;
    }
    
    .pricing-section-v2 .section-title-v2 {
        font-size: 2rem;
    }
    
    .pricing-grid-v2 {
        gap: 20px;
    }
    
    .pricing-card-content {
        padding: 32px 24px;
    }
    
    .pricing-card-v2.popular .pricing-card-content {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .pricing-section-v2 {
        padding: 60px 15px;
    }
    
    .pricing-section-v2 .section-title-v2 {
        font-size: 1.75rem;
    }
    
    .pricing-section-v2 .section-desc-v2 {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 24px;
    }
    
    .pricing-card-content {
        padding: 28px 24px;
    }
    
    .pricing-card-v2.popular .pricing-card-content {
        padding-top: 55px;
    }
    
    .pricing-name-v2 {
        font-size: 1.2rem;
    }
    
    .pricing-price-v2 .amount {
        font-size: 2.4rem;
    }
    
    .pricing-trust {
        gap: 24px;
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .pricing-section-v2 {
        padding: 50px 10px;
    }
    
    .pricing-section-v2 .section-title-v2 {
        font-size: 1.5rem;
    }
    
    .pricing-card-content {
        padding: 24px 20px;
    }
    
    .pricing-card-v2.popular .pricing-card-content {
        padding-top: 50px;
    }
    
    .popular-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .pricing-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    
    .pricing-price-v2 .amount {
        font-size: 2.2rem;
    }
    
    .pricing-trust {
        gap: 16px;
        margin-top: 50px;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
}

/* ============================================
   会员定价 V3 - 简洁高端设计
   ============================================ */
.pricing-section-v3 {
    padding: 100px 40px;
    /*! background: #f8fafc; */
}

.section-header-v3 {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*! background: linear-gradient(135deg, #2563eb, #1d4ed8); */
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    background: #6344C6;
}

.section-title-v3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-title-v3 .highlight {
    background: #6344C6;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /*! COLOR: #6344C6; */
}

.section-desc-v3 {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.pricing-card-v3 {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #6344C6;
    border-radius: 0px 15px 0px 5px;
}

.pricing-card-v3:hover {
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.pricing-card-v3.popular {
    border: 2px solid #6344C6;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.popular-badge-v3 {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6344C6;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-header-v3 {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-name-v3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.pricing-desc-v3 {
    font-size: 0.9rem;
    color: #64748b;
}

.pricing-price-v3 {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-price-v3 .currency {
    font-size: 1.5rem;
    color: #6344C6;
    font-weight: 600;
}

.pricing-price-v3 .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.pricing-price-v3 .period {
    font-size: 1rem;
    color: #64748b;
}

.pricing-save-v3 {
    text-align: center;
    background: #fef3c7;
    color: #d97706;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
    width: 100%;
}

.pricing-save-v3.highlight {
    background: #6344C6;
    color: #fff;
}

.pricing-features-v3 {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.pricing-features-v3 li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features-v3 li:last-child {
    border-bottom: none;
}

.pricing-features-v3 li i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-features-v3 li i.bi-check2-circle {
    color: #2563eb;
}

.pricing-features-v3 li.disabled {
    color: #cbd5e1;
}

.pricing-features-v3 li.disabled i {
    color: #cbd5e1;
}

.pricing-btn-v3 {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-btn-v3.btn-outline {
    background: #fff;
    color: #6344C6;
    border: 1px solid #6344C6;
}

.pricing-btn-v3.btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

.pricing-btn-v3.btn-primary {
    background: #6344C6;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.pricing-btn-v3.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.pricing-trust-v3 {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.trust-item-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.95rem;
}

.trust-item-v3 i {
    color: #2563eb;
    font-size: 1.2rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .pricing-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-section-v3 {
        padding: 60px 20px;
    }
    
    .section-title-v3 {
        font-size: 1.8rem;
    }
    
    .pricing-grid-v3 {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-trust-v3 {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* ============================================
   公文知识百科 V2
   ============================================ */
.docs-section-v2 {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.docs-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102,126,234,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(16,185,129,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.docs-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.doc-category-card-v2 {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.doc-category-card-v2:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.doc-category-card-v2.open {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.doc-category-header-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.doc-category-header-v2:hover {
    background: #f8fafc;
}

.doc-category-icon-v2 {
    width: 48px;
    height: 48px;
    background: var(--icon-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.doc-category-info-v2 {
    flex: 1;
}

.doc-category-name-v2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-category-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 50px;
}

.doc-category-desc-v2 {
    font-size: 0.875rem;
    color: #64748b;
}

.doc-category-arrow-v2 {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s;
}

.doc-category-card-v2.open .doc-category-arrow-v2 {
    transform: rotate(180deg);
    background: #e2e8f0;
}

.doc-category-body-v2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.doc-category-card-v2.open .doc-category-body-v2 {
    max-height: 1200px;
}

/* 公文百科表格样式 */
.doc-category-body-v2 .doc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.9rem;
}

.doc-category-body-v2 .doc-table th {
    background: #f8fafc;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
}

.doc-category-body-v2 .doc-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

.doc-category-body-v2 .doc-table tr:last-child td {
    border-bottom: none;
}

.doc-category-body-v2 .doc-table tbody tr:hover {
    background: #f8fafc;
}

.doc-type-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1e293b;
}

.doc-type-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.doc-focus {
    color: #475569;
    font-size: 0.875rem;
}

.doc-focus small {
    display: block;
    margin-top: 4px;
}

.doc-structure ol {
    margin: 0;
    padding-left: 20px;
    color: #64748b;
}

.doc-structure ol li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.doc-structure ol li:last-child {
    margin-bottom: 0;
}

.docs-cta {
    text-align: center;
    margin-top: 48px;
}

.docs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(102,126,234,0.3);
    transition: all 0.3s;
}

.docs-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102,126,234,0.4);
}

.docs-cta-hint {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* ============================================
   公文百科 - FAQ Accordion 内表格样式
   ============================================ */
.docs-section-v2 .faq-home-5-wrapper {
    background: #f3f0ff;
    border: 1px solid rgba(139,92,246,0.1);
}

.docs-section-v2 .faq-home-5-wrapper .title-faq .title {
    text-transform: none;
    letter-spacing: 0;
}

.docs-section-v2 .faq-home-5-wrapper .title-faq .title,
.docs-section-v2 .faq-home-5-wrapper .title-faq .sub-title {
    color: #1F1F21;
}

.docs-section-v2 .faq-home-5-wrapper .accordion-faq-home-five .accordion-item {
    background: #FFFFFF;
    border: 1px solid rgba(139,92,246,0.08);
    border-radius: 12px !important;
    padding: 20px;
}

.docs-section-v2 .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.docs-section-v2 .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button[aria-expanded=true] {
    color: #7C3AED;
}

.doc-tag-in-title {
    font-size: 13px;
    font-weight: 400;
    color: #8B5CF6;
    background: rgba(139,92,246,0.08);
    padding: 3px 12px;
    border-radius: 50px;
    margin-left: 8px;
}

/* accordion-body 内的表格 */
.doc-accordion-table {
    margin: 16px -10px -10px;
}

.doc-accordion-table .doc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.doc-accordion-table .doc-table th {
    background: #f8f7ff;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    color: #475569;
    border-bottom: 2px solid rgba(139,92,246,0.15);
    font-size: 13px;
}

.doc-accordion-table .doc-table td {
    padding: 14px;
    border-bottom: 1px solid #f1f0ff;
    vertical-align: top;
}

.doc-accordion-table .doc-table tr:last-child td {
    border-bottom: none;
}

.doc-accordion-table .doc-table tbody tr:hover {
    background: #faf8ff;
}

.doc-type-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

.doc-type-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.doc-focus {
    color: #475569;
    font-size: 14px;
}

.doc-focus small {
    display: block;
    margin-top: 4px;
    color: #94a3b8;
}

.doc-structure ol {
    margin: 0;
    padding-left: 18px;
    color: #64748b;
}

.doc-structure ol li {
    margin-bottom: 4px;
    line-height: 1.6;
    font-size: 14px;
}

.doc-structure ol li:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .doc-accordion-table .doc-table th,
    .doc-accordion-table .doc-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    .doc-tag-in-title {
        display: none;
    }
    .docs-section-v2 .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button {
        font-size: 17px;
    }
}

/* ============================================
   首页 FAQ 常见问题模块 (从1111模板提取)
   ============================================ */
.rts-section-gap2Bottom {
    padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gap2Bottom { padding-bottom: 80px; }
}
@media only screen and (max-width: 767px) {
    .rts-section-gap2Bottom { padding-bottom: 60px; }
}

.faq-home-5-wrapper {
    background: #F8F8F8;
    padding: 100px;
    border-radius: 8px;
}
@media (max-width: 991px) {
    .faq-home-5-wrapper { padding: 70px 10px; }
}
@media only screen and (max-width: 767px) {
    .faq-home-5-wrapper { padding: 30px 10px; }
}

.faq-home-5-wrapper .title-faq {
    width: 100%;
    margin: auto;
}
.faq-home-5-wrapper .title-faq .title {
    font-size: 40px;
    line-height: 126%;
    text-transform: uppercase;
}
@media (max-width: 700px) {
    .faq-home-5-wrapper .title-faq .title { font-size: 30px; }
}
@media (max-width: 680px) {
    .faq-home-5-wrapper .title-faq .sub-title br { display: none; }
}

.faq-home-5-wrapper .accordion-faq-home-five .accordion-item {
    background: #FFFFFF;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.04);
    padding: 25px 20px;
}
@media only screen and (max-width: 767px) {
    .faq-home-5-wrapper .accordion-faq-home-five .accordion-item { padding: 15px; }
}
@media only screen and (max-width: 575px) {
    .faq-home-5-wrapper .accordion-faq-home-five .accordion-item { padding: 10px; }
}

.faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header {
    border: none;
}
.faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button {
    font-weight: 400;
    font-size: 24px;
    color: #1F1F21;
    border: none;
    box-shadow: none;
    padding: 0;
}
@media only screen and (max-width: 575px) {
    .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button { font-size: 18px; }
}
.faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button[aria-expanded=true] {
    background: #fff;
    border: none;
    box-shadow: none;
    color: var(--color-primary-m);
}
.faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-body p {
    font-weight: 400;
    font-size: 18px;
    line-height: 212.4%;
    letter-spacing: 0.02em;
}
@media (max-width: 576px) {
    .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-body p { font-size: 16px; }
}

/* FAQ 手风琴箭头图标 */
.faq-home-5-wrapper .accordion-button::after {
    content: "\f067";
    background-image: none !important;
    font-family: "Font Awesome 5 Pro" !important;
    font-weight: 200;
    width: unset !important;
    height: unset !important;
}
.faq-home-5-wrapper .accordion-button[aria-expanded=true]::after {
    content: "\f068";
    transform: none;
}

/* FAQ accordion-item 圆角 */
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.modules-section-v2 {
    position: relative;
    padding: 60px;
    overflow: hidden;
    background-image: url(../../assets/img/dabj.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    background-attachment: scroll; 
}

.modules-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(102,126,234,0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201,162,39,0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16,185,129,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.modules-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.module-card-v2 {
    position: relative;
    
background: #6344C6;
    border-radius: 0;border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border: none;
    border-radius: 4px 15px 0px 5px;
}

.module-card-v2:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border: 1px solid #e6e6e6;
    background: #f5f7fa;
}

.module-icon-v2 {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    color: #fff;
    background: transparent;
    border: none;
}

.module-card-v2:hover .module-icon-v2 {
    color: #6344C6;
    transform: scale(1.1);
}

.module-title-v2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
    color: #fff;
    transition: color 0.3s ease;
}

.module-card-v2:hover .module-title-v2 {
    color: #000;
}

.module-desc-v2 {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    color: #fff;
    opacity: 0.9;
    transition: color 0.3s ease;
}

.module-card-v2:hover .module-desc-v2 {
    color: #000;
    opacity: 1;
}

.module-arrow-v2 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.module-card-v2:hover .module-arrow-v2 {
    opacity: 1;
    transform: translateX(0);
    color: #6344C6;
    color: #fff;
    box-shadow: 0 8px 20px rgba(14,165,233,0.3);
}

.module-title-v2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.module-desc-v2 {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid #ccc;
    padding: 10px 0px;
}

.module-arrow-v2 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-10px);
}

.module-card-v2:hover .module-arrow-v2 {
    opacity: 1;
    transform: translateX(0);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .modules-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .modules-section-v2 {
        padding: 60px 20px;
    }
    
    .modules-grid-v2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    
    .module-card-v2 {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    
    .module-icon-v2 {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .module-card-v2:hover .module-icon-v2 {
        transform: scale(1.05) rotate(0);
    }
    
    .module-content {
        flex: 1;
    }
    
    .module-title-v2 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .module-desc-v2 {
        font-size: 0.85rem;
    }
    
    .module-arrow-v2 {
        position: static;
        opacity: 1;
        transform: none;
        width: 32px;
        height: 32px;
        background: #f1f5f9;
    }
}

/* ============================================
   精品案例 V2 - 高端大气设计
   ============================================ */
.examples-section-v2 {
    position: relative;
    padding: 100px 20px;
    background: #f8fafc;
    overflow: hidden;
    background: linear-gradient(90deg, #faf2ff, #e2f1ff), linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #fff 500px, #fff);
}

.examples-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(99,68,198,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(99,68,198,0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* 容器最大宽度1600px */
.examples-section-v2 .container-two {
    max-width: 1600px;
    padding: 0;
}

.examples-swiper-area {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

/* 导航按钮 - 中央位置 */
.examples-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.examples-arrow {
    width: 56px;
    height: 56px;
    border: 2px solid #6344C6;
    background: #6344C6;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(99, 68, 198, 0.3);
}

.examples-arrow:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.examples-arrow:active {
    transform: translateY(0);
}

.Swiper-mazin-blog {
    max-width: 1600px;
    margin: 0 auto;
}

.example-card-v2 {
    position: relative;
    background: #fff;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.example-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99,68,198,0.15);
    border-color: #6344C6;
}

.example-card-glow {
    display: none;
}

.example-card-content {
    background: #fff;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.example-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.example-icon {
    width: 56px;
    height: 56px;
    background: #6344C6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.example-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.example-category {
    font-size: 0.8rem;
    color: #6344C6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.example-type {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.example-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.2em;
}

.example-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 24px;
    flex: 1;
}

.example-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
}

.example-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.example-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #6344C6;
    text-decoration: none;
    transition: all 0.3s;
}

.example-link:hover {
    gap: 10px;
    color: #4c3599;
}

.examples-cta-v2 {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.examples-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    background: #6344C6;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(99,68,198,0.3);
    transition: all 0.3s;
    border-radius: 0px 15px 0px 5px;
}

.examples-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99,68,198,0.4);
    background: #4c3599;
}

.examples-cta-hint {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #64748b;
}

.examples-cta-hint a {
    color: #6344C6;
    font-weight: 600;
    text-decoration: none;
}

.examples-cta-hint a:hover {
    text-decoration: underline;
}

/* ============================================
   精品案例 V2 响应式设计
   ============================================ */
@media (max-width: 1200px) {
    .examples-section-v2 {
        padding: 80px 20px;
    }
    
    .examples-section-v2 .container-two,
    .examples-swiper-area,
    .examples-nav-arrows,
    .Swiper-mazin-blog {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .examples-section-v2 {
        padding: 60px 20px;
    }
    
    .examples-nav-arrows {
        margin-top: 35px;
        gap: 18px;
    }
    
    .examples-arrow {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }
    
    .example-card-content {
        padding: 24px;
    }
    
    .example-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .example-title {
        font-size: 1.05rem;
    }
    
    .example-excerpt {
        font-size: 0.9rem;
    }
    
    .examples-cta-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .examples-section-v2 {
        padding: 50px 15px;
    }
    
    .examples-nav-arrows {
        margin-top: 30px;
        gap: 16px;
    }
    
    .examples-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .example-card-content {
        padding: 20px;
    }
    
    .example-card-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .example-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .examples-cta-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .example-type {
        font-size: 1rem;
    }
    
    .example-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .example-excerpt {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .example-footer {
        padding-top: 16px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .examples-cta-btn {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .examples-section-v2 {
        padding: 40px 10px;
    }
    
    .example-card-content {
        padding: 16px;
    }
    
    .example-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .examples-cta-btn {
        padding: 14px 32px;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   V2 响应式设计
   ============================================ */
@media (max-width: 1200px) {
    .pricing-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .pricing-card-v2.popular {
        transform: scale(1);
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card-v2.popular:hover {
        transform: translateY(-8px);
    }
    
    .examples-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-section-v2,
    .docs-section-v2,
    .examples-section-v2 {
        padding: 60px 20px;
    }
    
    .section-title-v2 {
        font-size: 1.8rem;
    }
    
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-v2.popular {
        grid-column: span 1;
        transform: scale(1);
    }
    
    .pricing-trust {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .examples-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .doc-category-header-v2 {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .doc-category-icon-v2 {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .doc-category-name-v2 {
        font-size: 0.95rem;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .doc-category-tag {
        font-size: 0.7rem;
        padding: 1px 8px;
    }
    
    .doc-category-desc-v2 {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .doc-category-arrow-v2 {
        width: 28px;
        height: 28px;
    }
    
    /* 移动端表格优化 */
    .doc-category-body-v2 .doc-table {
        font-size: 0.8rem;
    }
    
    .doc-category-body-v2 .doc-table th {
        padding: 10px 8px;
        font-size: 0.75rem;
    }
    
    .doc-category-body-v2 .doc-table td {
        padding: 10px 8px;
    }
    
    .doc-category-body-v2 .doc-table th:nth-child(2),
    .doc-category-body-v2 .doc-table td:nth-child(2) {
        width: 140px;
    }
    
    .doc-type-name {
        font-size: 0.85rem;
    }
    
    .doc-type-dot {
        width: 8px;
        height: 8px;
    }
    
    .doc-focus {
        font-size: 0.8rem;
    }
    
    .doc-focus small {
        font-size: 0.7rem;
    }
    
    .doc-structure ol {
        padding-left: 16px;
        font-size: 0.8rem;
    }
    
    .doc-structure ol li {
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .doc-knowledge-section,
    .examples-section {
        padding: 40px 15px;
    }
    .doc-knowledge-title {
        font-size: 1.5rem;
    }
    .example-card {
        padding: 20px;
    }
    
    .examples-section-v2 {
        padding: 40px 12px;
    }
    
    .examples-nav-arrows {
        margin-top: 24px;
        gap: 12px;
    }
    
    .examples-arrow {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        border-width: 1.5px;
    }
    
    .example-card-content {
        padding: 16px;
    }
    
    .example-title {
        font-size: 1rem;
    }
    
    .example-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .examples-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .examples-cta-hint {
        font-size: 0.85rem;
    }
}

/* ============================================
   容器类和间距类（从1111模板提取）
   ============================================ */
.container-two {
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}

@media only screen and (min-width: 1400px) {
    .container-two { max-width: 1600px; }
}
@media only screen and (max-width: 1199px) {
    .container-two { max-width: 1000px; }
}
@media only screen and (max-width: 992px) {
    .container-two { max-width: 800px; padding: 0 10px; }
}

.rts-section-gap2 {
    /*! padding: 120px 0; */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gap2 { padding: 80px 0; }
}
@media only screen and (max-width: 767px) {
    .rts-section-gap2 { padding: 60px 0; }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-12 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* ============================================
   首页 CTA 额外样式（用户要求）
   ============================================ */
.mazin-cta {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}

.footer-top-info-mazin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    /*! width: 70%; */
    margin-left: auto;
    margin-right: auto;
}

.footer-top-info-mazin .footer-single-wized {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.footer-top-info-mazin .footer-single-wized .title {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 头部品牌区域样式 */
.page-header {
    /*! text-align: center; */
    /*! padding: 40px 20px; */
}

.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.header-logo {
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.header-title {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 700;
    color:#fff;
    background-clip: text;
    letter-spacing: 4px;
}

.header-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
}

/* 桌面大屏端 (1400px+) */
@media (min-width: 1400px) {
    .header-logo {
        width: auto;
        height: auto;
        max-width: none;
        max-height: none;
    }
    .header-title {
        font-size: 3.8rem;
    }
    .header-subtitle {
        font-size: 1.35rem;
    }
}

/* 桌面端 (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .header-logo {
        width: auto;
        height: auto;
        max-width: none;
        max-height: none;
    }
    .header-title {
        font-size: 3.2rem;
    }
}

/* 笔记本端 (1024px - 1199px) */
@media (max-width: 1199px) {
    .header-logo {
        width: auto;
        height: auto;
        max-width: none;
        max-height: none;
    }
    .header-title {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    .header-subtitle {
        font-size: 1.1rem;
    }
}

/* 平板端 (992px - 1023px) */
@media (max-width: 1023px) {
    .header-logo {
        width: auto;
        height: auto;
        max-width: none;
        max-height: none;
    }
    .header-title {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }
    .header-subtitle {
        font-size: 1rem;
    }
}

/* 手机端适配 (最大768px) */
@media (max-width: 768px) {
    .page-header {
        padding: 20px 12px;
        overflow: hidden;
    }
    
    .header-brand {
        flex-direction: column;
        gap: 10px;
        padding: 0 8px;
    }
    
    .header-logo {
        max-height: 50px;
        max-width: 200px;
        width: 100%;
    }
    
    .header-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
        text-align: center;
    }
    
    .header-subtitle {
        font-size: 0.9rem;
        padding: 0 16px;
        text-align: center;
    }
}

/* 大手机端 (576px - 767px) */
@media (max-width: 767px) {
    .page-header {
        padding: 16px 10px;
    }
    
    .header-brand {
        gap: 8px;
    }
    
    .header-logo {
        max-height: 48px;
        max-width: 180px;
    }
    
    .header-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .header-subtitle {
        font-size: 0.85rem;
    }
}

/* 小屏手机适配 (最大480px) */
@media (max-width: 480px) {
    .page-header {
        padding: 14px 8px;
    }
    
    .header-brand {
        gap: 6px;
    }
    
    .header-logo {
        max-height: 44px;
        max-width: 160px;
    }
    
    .header-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .header-subtitle {
        font-size: 0.8rem;
        padding: 0 12px;
    }
}
        
/* 折叠屏 / 超小屏幕 (321px - 375px) */
@media (max-width: 375px) {
    .page-header {
        padding: 12px 6px;
    }
    
    .header-logo {
        max-height: 40px;
        max-width: 140px;
    }
    
    .header-title {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .header-subtitle {
        font-size: 0.75rem;
    }
}

/* iPhone SE / 超小屏幕 (320px及以下) */
@media (max-width: 320px) {
    .page-header {
        padding: 10px 4px;
    }
    
    .header-logo {
        max-height: 36px;
        max-width: 120px;
    }
    
    .header-title {
        font-size: 1rem;
    }
    
    .header-subtitle {
        font-size: 0.7rem;
    }
}

.doc-category-card {
    background:#fff;
    border-radius:16px;
    margin-bottom:20px;
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
    overflow:hidden;
    transition:box-shadow 0.3s;
}

.doc-category-card:hover { box-shadow:0 4px 20px rgba(0,0,0,0.1); }

.doc-category-header {
    display:flex;align-items:center;gap:16px;
    padding:20px 28px;
    cursor:pointer;
    border:none;background:none;width:100%;text-align:left;
    transition:background 0.2s;
}

.doc-category-header:hover { background:#f8fafc; }

.doc-category-icon {
    width:52px;height:52px;border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    font-size:1.6rem;flex-shrink:0;
}

.doc-category-info { flex:1 }

.doc-category-name { font-size:1.15rem;font-weight:700;color:#1e293b;margin:0 0 4px }

.doc-category-desc { font-size:0.88rem;color:#64748b;margin:0 }

.doc-category-arrow {
    font-size:1.2rem;color:#94a3b8;
    transition:transform 0.3s;
}

.doc-category-card.open .doc-category-arrow { transform:rotate(180deg); }

.doc-category-body { display:none;padding:0 28px 24px }

.doc-category-card.open .doc-category-body { display:block; }

/* 表格 */
.doc-table { width:100%;border-collapse:collapse;font-size:0.9rem }

.doc-table thead tr { background:#f1f5f9 }

.doc-table th {
    padding:12px 16px;text-align:left;font-weight:600;color:#475569;
    border-bottom:2px solid #e2e8f0;
}

.doc-table td {
    padding:14px 16px;color:#334155;
    border-bottom:1px solid #f1f5f9;
    vertical-align:top;line-height:1.7;
}

.doc-table tr:last-child td { border-bottom:none }

.doc-table tr:hover td { background:#f8fafc }

.doc-type-name {
    display:inline-flex;align-items:center;gap:6px;
    font-weight:700;color:#1e293b;white-space:nowrap;
}

.doc-type-dot {
    width:8px;height:8px;border-radius:50%;flex-shrink:0;
}

.doc-focus { color:#6366f1;font-weight:500;min-width:160px }

.doc-structure { color:#475569;line-height:1.8 }

.doc-structure ol { margin:0;padding-left:18px }

.doc-structure li { margin-bottom:4px }

@media (max-width:768px) {
    .doc-table { font-size:0.82rem }
    .doc-table th,.doc-table td { padding:10px 8px }
    .doc-focus { min-width:120px }
}

/* ============================================
   首页 CTA 行动召唤模块（从1111模板提取）
   ============================================ */
.rts-call-to-action.text-anim {
    position: relative;
}

.mazin-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 102px;
    background: #6344C6;
    margin-bottom: -95px;
    margin-top: -85px;
}
@media only screen and (max-width: 767px) {
    .mazin-cta { padding: 30px; }
}
@media only screen and (max-width: 575px) {
    .mazin-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 10px;
    }
}
@media only screen and (max-width: 575px) {
    .mazin-cta .left { margin-bottom: 20px; }
}

.mazin-cta .left .title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 126%;
}
@media only screen and (max-width: 767px) {
    .mazin-cta .left .title { font-size: 32px; }
}

.mazin-cta .left .disc {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.mazin-cta .right a.rts-btn.btn-secondary-m {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    min-width: max-content;
    padding: 14px 40px;
    background: transparent !important;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0;
}
.mazin-cta .right a.rts-btn.btn-secondary-m:hover {
    background: #6344C6 !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(99, 68, 198, 0.3);
    transform: translateY(-2px);
}

/* rts-btn 基础样式 */
.rts-btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.rts-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    background: #5041f5;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
    /*! border: 1px solid #cccc; */
}
.rts-btn:hover::after {
    width: 300%;
    height: 300%;
}
.rts-btn.btn-main {
    background: #FFC576;
    color: #0D0D0D;
}
.rts-btn.btn-main:hover {
    color: #fff;
}
/* ============================================
   首页 Footer 页脚模块（从1111模板提取）
   ============================================ */
.bg-footer-mazin {
    background: #1F1F21;
    padding-top: 136px;
}

.footer-top-info-mazin {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1199px) {
    .footer-top-info-mazin {
        flex-direction: column;
        gap: 30px;
    }
}

.footer-single-wized {
    flex: 1;
}

.footer-top-info-mazin .footer-single-wized .title {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.02em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}
@media only screen and (max-width: 1199px) {
    .footer-top-info-mazin .footer-single-wized .title { margin-bottom: 12px; }
}

.footer-top-info-mazin .footer-single-wized .title i {
    color: #6344C6;
    font-size: 20px;
    flex-shrink: 0;
}

.footer-top-info-mazin .footer-single-wized .title span,
.footer-top-info-mazin .footer-single-wized .title a {
    color: #fff;
    font-weight: 400;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-top-info-mazin .footer-single-wized .title a:hover,
.footer-top-info-mazin .footer-single-wized .title span:hover {
    color: var(--color-primary-m, #6344C6);
}

/* 版权栏 */
.banquan {
    text-align: center;
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 0.02em;
}
.banquan a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.banquan a:hover {
    color: #6344C6;
}

/* 响应式：Footer */
@media only screen and (max-width: 767px) {
    .bg-footer-mazin { padding-top: 140px; }
    .footer-top-info-mazin { gap: 20px; padding-bottom: 35px; }
    .footer-top-info-mazin .footer-single-wized .title {
        font-size: 16px;
        gap: 6px;
    }
    .mazin-cta .left .title { font-size: 26px; }
}

/* ================================================
   子页面顶部导航栏（contact / help / agreement）
   全平台响应式：PC / Pad / Mobile
   ================================================ */
.sub-page-navbar {
    background: #fff;
    border-bottom: 1px solid #e8ecf0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: #6344C6;
}
.sub-page-navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sub-navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.sub-navbar-logo img {
    height: 57px;
    width: 593px;
    object-fit: contain;
    display: block;
}
.sub-navbar-logo-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a202c;
    white-space: nowrap;
    display: none; /* 仅图片加载失败时通过 JS 显示 */
}
.sub-navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.sub-navbar-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #6344C6;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.sub-navbar-back:hover {
    background: #5234b0;
    transform: translateY(-1px);
}
.sub-navbar-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #6344C6;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.sub-navbar-login:hover {
    background: #5234b0;
    transform: translateY(-1px);
}

/* Pad端 (768px - 1024px) */
@media (max-width: 1024px) {
    .sub-page-navbar-inner {
        padding: 0 16px;
        height: 58px;
    }
    .sub-navbar-logo img {
        height: 48px;
        width: auto;
        max-width: 500px;
    }
}

/* 手机端大屏 (481px - 767px) */
@media (max-width: 767px) {
    .sub-page-navbar-inner {
        padding: 0 12px;
        height: 54px;
    }
    .sub-navbar-logo img {
        height: 40px;
        width: auto;
        max-width: 280px;
    }
    .sub-navbar-login,
    .sub-navbar-back {
        padding: 7px 13px;
        font-size: 0.85rem;
    }
}

/* 手机端小屏 (≤480px) */
@media (max-width: 480px) {
    .sub-page-navbar-inner {
        padding: 0 10px;
        height: 50px;
    }
    .sub-navbar-logo img {
        height: 36px;
        width: auto;
        max-width: 200px;
    }
    .sub-navbar-back,
    .sub-navbar-login {
        padding: 6px 11px;
        font-size: 0.8rem;
        border-radius: 16px;
    }
}

/* iPhone SE / 超小屏 (≤320px) */
@media (max-width: 320px) {
    .sub-page-navbar-inner {
        height: 46px;
        padding: 0 8px;
    }
    .sub-navbar-logo img {
        height: 32px;
        width: auto;
        max-width: 160px;
    }
    .sub-navbar-back,
    .sub-navbar-login {
        padding: 5px 9px;
        font-size: 0.75rem;
    }
}

/* 响应式：footer内边距手机端优化 */
@media (max-width: 768px) {
    .site-footer {
        padding: 32px 16px;
    }
}
@media (max-width: 480px) {
    .site-footer {
        padding: 24px 12px;
    }
}