
/* 通用容器 */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 标题部分 */
.header { text-align: center; padding: 60px 0 40px; }
.header h1 { font-size: 36px; font-weight: 600; margin-bottom: 10px; }
.header p { color: #666; font-size: 16px; }

/* 功能网格 (6个卡片) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.feature-card { background: #fff; border: 1px solid #fff; border-radius: 10px; padding: 0px; transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.feature-card-content{ position: relative; padding: 24px; box-sizing: border-box; z-index: 10; border-radius: 12px; background: #fff;}


/* 模拟图片占位 */
.card-img { height: 135px; background: linear-gradient(135deg, #fff3e0, #ffe0b2); border-top-left-radius: 8px; border-top-right-radius: 8px; color: #fe6109; font-size: 14px; }
.card-img >img{ width: 100%; height: 145px; position: relative; border-top-left-radius: 8px; border-top-right-radius: 8px;}

.feature-tags { display: flex; gap: 10px; margin-bottom: 10px; }
.tag { background: #fff7f3; color: #fe6c1a; font-size: 12px; padding: 4px 8px; border-radius: 4px; }

.feature-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: #807d79; margin-bottom: 20px; height: 40px; }

.btn-link { width: 100%; display: inline-block; border: 1px solid #fe6109; color: #fe6109; padding: 6px 16px; border-radius: 8px; text-decoration: none; font-size: 13px; text-align: center; }
.btn-link:hover { background: #fe6109; color: #fff; }

/* 数据统计部分 */
.stats-section {  padding: 80px 0; text-align: center; background:  linear-gradient(to bottom left, #fff, #faf3eb) left/50% 100% no-repeat, linear-gradient(to bottom right, #fff, #faf3eb) right/50% 100% no-repeat;}
.stats-title { font-size: 32px; font-weight: 600; margin-bottom: 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.stat-item h2 { color: #fe6109; font-size: 48px; font-weight: bold; margin-bottom: 5px; }
.stat-item p { font-size: 14px; color: #000; font-weight: 600; }

.stats-banner { background: linear-gradient(90deg, #ffa77b, #ff7730); color: #fff; padding: 15px 60px; border-radius: 30px; display: inline-block; font-size: 14px; box-shadow: 0 5px 15px rgba(255, 94, 98, 0.3); }

/* 为什么选择我们 */
.why-section { padding: 80px 0; }
.why-title { text-align: center; font-size: 32px; font-weight: 600; margin-bottom: 10px; }
.why-subtitle { text-align: center; color: #777; margin-bottom: 60px; font-size: 14px; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.why-num { font-size: 36px; font-weight: 800; color: #fbdccb; margin-bottom: 10px; }
.why-card-title { font-size: 18px; font-weight: 600; margin-bottom: 15px; color: #fe6109; }
.why-card p { font-size: 13px; color: #666; margin-bottom: 20px; height: 60px; }

.why-tags { display: flex; gap: 10px; }
.why-tag { background: #fffbfa; color: #fe792e; font-size: 12px; padding: 4px 10px; border-radius: 8px; border: 1px solid #fbf2ec; }

/* 响应式适配 */
@media (max-width: 900px) {
    .feature-grid, .stats-grid, .why-grid { grid-template-columns: 1fr; }
    .header h1 { font-size: 28px; }
}















.home-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 基础排版 */
.home-section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0;
    min-height: 500px;
    padding-top: 16px;
}

/* 左右互换控制 */
.home-row-reverse {
    flex-direction: row-reverse;
}

/* 左侧文字区域 */
.home-text-area { flex: 1; max-width: 450px; }
.home-text-area h2 { font-size: 32px; font-weight: 600; margin-bottom: 20px; color: #333; }
.home-text-area p { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 40px; }

.home-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #ff6600, #ff5e62);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.3);
    transition: all 0.3s;
}
.home-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 94, 98, 0.4); }

/* 右侧图片/界面区域（通用） */
.home-img-area {
    flex: 1.2;
    background: #fcf8f3;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-height: 400px;
}

/* 模拟界面（可复用的模板） */
.home-mock-ui {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    overflow: hidden;
    border: 1px solid #eee;
}
.home-sidebar { width: 150px; background: #f9f9f9; padding: 20px 10px; border-right: 1px solid #eee; }

/* 特色功能接口图片 */
.home-section-img {
    width: 100%;
    max-width: 600px;
    max-height: 400px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.home-sidebar-item { display: block; padding: 10px; font-size: 12px; color: #666; margin-bottom: 10px; border-radius: 4px; }
.home-sidebar-item.active { background: #e8f5f0; color: #00b377; font-weight: bold; }

.home-main-content { flex: 1; padding: 20px; }
.home-tab-row { display: flex; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #666; }
.home-tab-row span.active { color: #00b377; font-weight: bold; border-bottom: 2px solid #00b377; padding-bottom: 5px; }
.home-ui-card { border: 1px solid #eee; border-radius: 8px; padding: 15px; margin-bottom: 15px; background: #fff; }
.home-ui-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: bold; font-size: 13px; }
.home-ui-badge { background: #ff6600; color: #fff; font-size: 10px; padding: 2px 5px; border-radius: 3px; }
.home-btn-green { background: #00b377; color: #fff; font-size: 12px; padding: 5px 10px; border-radius: 4px; border: none; margin-top: 10px; }
.home-shop-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.home-shop-item { background: #f9f9f9; padding: 8px; border-radius: 4px; font-size: 12px; }

/* 响应式适配 */
@media (max-width: 900px) {
    .home-section-row, .home-row-reverse { flex-direction: column; gap: 30px; text-align: center; }
    .home-text-area p { text-align: center; }
    .home-text-area { margin: 0 auto; }
    .home-btn-primary { margin: 0 auto; }
    .home-img-area { width: 100%; }
}








.home-pricing-title { font-size: 36px; font-weight: 600; color: #333; margin-bottom: 10px; text-align: center; }
.home-highlight { color: #ff6600; }
.home-pricing-subtitle { font-size: 14px; color: #666; margin-bottom: 60px; text-align: center; }



.home-pricing-section { padding-top: 80px; }
/* 将网格改为从左到右排成一排（4列） */
.home-pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

/* 卡片基础样式（保持不变） */
.home-price-card { 
    background: #fff; 
    border: 1px solid #eee; 
    border-radius: 10px; 
    padding: 24px; 
    position: relative; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); 
    transition: all 0.3s;
}
.home-price-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }

/* 新数据需要的补充样式（保持原有橙色系风格） */
.home-price-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 15px; }
.home-price-title { font-size: 22px; font-weight: 600; color: #333; }
.home-price-version { font-size: 14px; color: #888; }

.home-price-tag { display: inline-block; border: 1px solid #ff6600; color: #ff6600; padding: 4px 10px; border-radius: 4px; font-size: 12px; margin-bottom: 20px; }

.home-price-amount { font-size: 36px; font-weight: bold; color: #ff6600; margin-bottom: 5px; }
.home-price-unit { font-size: 13px; color: #999; font-weight: normal; }

.home-price-desc { font-size: 13px; color: #666; margin-bottom: 20px; }

/* 分割线与规则 */
.home-divider { border-top: 1px dashed #ddd; margin-bottom: 15px; }
.home-price-rule { font-size: 12px; color: #999; margin-bottom: 25px; line-height: 1.6; }

/* 按钮样式（保持不变） */
.home-price-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 10px 0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: auto;
}
.home-btn-outline { border: 1px solid #ff6600; color: #ff6600; background: transparent; }
.home-btn-outline:hover { background: #ff6600; color: #fff; }
.home-btn-solid {
    background: linear-gradient(90deg, #ff6600, #ff5e62);
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.3);
}
.home-btn-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 94, 98, 0.4); }

/* 响应式：小屏幕时自动变为单列堆叠 */
@media (max-width: 1000px) {
    .home-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .home-pricing-grid { grid-template-columns: 1fr; }
}











/* ========== 模块网格 ========== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ========== 卡片 ========== */
.module-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 28px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.30s ease, border-color 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(254, 99, 10, 0.07), 0 8px 24px rgba(0, 0, 0, 0.03);
    border-color: rgba(254, 99, 10, 0.15);
}

/* 顶部装饰线 — 浅色橙 */
.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    background: linear-gradient(90deg, #fe630a, #ff8a4a, #fe630a);
    background-size: 200% 100%;
    border-radius: 0 0 4px 4px;
    opacity: 0.5;
    transition: opacity 0.3s ease, background-position 0.6s ease;
}

.module-card:hover::before {
    opacity: 1;
    background-position: 100% 0;
}

/* 图标容器 — 浅色背景 + 橙 */
.module-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(254, 99, 10, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.module-card:hover .module-icon {
    background: rgba(254, 99, 10, 0.14);
    transform: scale(1.02);
}

.module-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fe630a;
    stroke-width: 1.8;
    fill: none;
    transition: stroke 0.25s ease;
}

.module-card:hover .module-icon svg {
    stroke: #e85a0a;
}

/* 标题 */
.module-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.module-card h3 .highlight {
    color: #fe630a;
}

/* 描述 */
.module-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* 标签组 (浅色标签) */
.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.module-tags span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 4px 14px;
    border-radius: 40px;
    background: rgba(254, 99, 10, 0.06);
    color: #fe630a;
    border: 1px solid rgba(254, 99, 10, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.module-card:hover .module-tags span {
    background: rgba(254, 99, 10, 0.10);
    border-color: rgba(254, 99, 10, 0.18);
}

/* 链接 / 按钮 (浅色橙) */
.module-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fe630a;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, gap 0.2s ease;
    align-self: flex-start;
    margin-top: 4px;
}

.module-link:hover {
    border-bottom-color: #fe630a;
    gap: 12px;
}

.module-link svg {
    width: 18px;
    height: 18px;
    stroke: #fe630a;
    stroke-width: 2;
    fill: none;
    transition: transform 0.25s ease;
}

.module-link:hover svg {
    transform: translateX(4px);
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 680px) {
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .module-card {
        padding: 28px 22px 26px;
    }
}

@media (max-width: 400px) {
    body {
        padding: 20px 12px;
    }
    .container {
        padding: 0 12px;
    }
    .module-card {
        padding: 24px 18px 22px;
    }
}


















        /* ===== 卡片网格 ===== */
        .grid-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 12px;
        }

        .card {
            background: #ffffff;
            border-radius: 28px;
            padding: 36px 30px 32px;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--border-light);
            transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--card-hover-shadow);
            border-color: rgba(254, 99, 10, 0.25);
        }

        .card:hover::before {
            opacity: 1;
        }

        .card-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: var(--primary-ultra-light);
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 18px;
            transition: background 0.25s, color 0.25s, transform 0.2s;
        }
        .card-icon>i{
            font-size: 2rem;
        }

        .card:hover .card-icon {
            background: var(--primary);
            color: #fff;
            transform: scale(1.02);
        }

        .card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 18px;
        }

        .card .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .card .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-dark);
            padding: 5px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }
        .card .feature-list li > i {
            font-size: 1rem;
        }

        .card .feature-list li:last-child {
            border-bottom: none;
        }

        .card .feature-list i {
            color: var(--primary);
            font-size: 0.8rem;
            width: 18px;
            text-align: center;
        }

        .card .tag {
            display: inline-block;
            background: var(--primary-ultra-light);
            color: var(--primary);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 12px;
            border-radius: 40px;
            margin-top: 6px;
            border: 1px solid rgba(254, 99, 10, 0.1);
        }


        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .stats-row {
                gap: 28px;
                padding: 24px 20px;
                border-radius: 32px;
                flex-wrap: wrap;
            }

            .stat-item .number {
                font-size: 1.6rem;
            }

            .nav-links {
                gap: 18px;
                font-size: 0.85rem;
            }

            .nav-cta {
                padding: 6px 14px;
                font-size: 0.8rem;
            }

            .grid-cards {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 32px 20px;
            }

            .cta-section h3 {
                font-size: 1.4rem;
            }

            .btn-outline {
                margin-left: 0;
                margin-top: 12px;
                display: inline-block;
            }
        }

        @media (max-width: 480px) {
            .navbar .container {
                flex-wrap: wrap;
                gap: 12px;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 16px;
            }

            .section-header .badge {
                font-size: 0.7rem;
            }

            .stats-row {
                flex-direction: column;
                gap: 12px;
                padding: 20px;
                border-radius: 28px;
            }
        }