
    /* 1. 基础容器 */
    .analytics-feature-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 40px 20px;
        display: flex;
        align-items: center; /* 垂直居中 */
        gap: 60px; /* 左右间距 */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    /* 2. 左侧图片区域 */
    .analytics-visual-wrap {
        flex: 1;
        position: relative; /* 为左上角图标定位 */
    }

    .analytics-main-img {
        width: 100%;
        height: auto;
        border-radius: 35px; /* 大圆角 */
        display: block;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* 左上角深色悬浮图标 */
    .analytics-top-badge {
        position: absolute;
        top: -15px;
        left: -15px;
        width: 56px;
        height: 56px;
        background-color: #0f172a; /* 深色背景 */
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }

    /* 3. 右侧文字内容 */
    .analytics-content {
        flex: 1.2;
    }

    /* 标题头 (带彩色条形图图标) */
    .analytics-header-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    /* 模拟彩色条形图图标 */
    .bar-chart-icon {
        display: flex;
        align-items: flex-end;
        gap: 2px;
        height: 20px;
    }
    .bar-chart-icon span { width: 4px; border-radius: 1px; }
    .bar-chart-icon .bar-1 { height: 60%; background-color: #ef4444; }
    .bar-chart-icon .bar-2 { height: 100%; background-color: #f59e0b; }
    .bar-chart-icon .bar-3 { height: 80%; background-color: #56B8B8; }

    .analytics-content h2 {
        font-size: 32px;
        font-weight: 800;
        color: #0f172a;
        margin: 0;
        line-height: 1.2;
    }

    .analytics-desc {
        font-size: 16px;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 35px;
        max-width: 500px;
    }

    /* 4. 底部功能标签组 */
    .analytics-tag-group {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .analytics-tag-item {
        background-color: #f1f5f9; /* 浅灰色背景 */
        padding: 10px 18px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        color: #1e293b;
    }

    .analytics-tag-item svg {
        color: #56B8B8; /* 使用主色调图标 */
    }

    /* 5. 响应式适配 */
    @media (max-width: 992px) {
        .analytics-feature-section {
            flex-direction: column; /* 手机端上下堆叠 */
            text-align: left;
            gap: 50px;
        }
        .analytics-visual-wrap {
            width: 100%;
        }
        .analytics-top-badge {
            left: 5px; /* 移动端微调 */
        }
        .analytics-content h2 {
            font-size: 26px;
        }
    }
