
    /* ----- 全局重置 & 基础排版 ----- */
    .se-content * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .se-content {
        max-width: 1980px;
        margin: 0 auto;
        padding: 20px 24px 40px;
        font-family: Arial, Helvetica, sans-serif;
        color: #1e2a3a;
        line-height: 1.7;
        background: #ffffff;
    }

    /* ----- 标题层级 ----- */
    .se-content h1 {
        font-size: 32px;
        font-weight: 700;
        color: #0b1a2e;
        margin-bottom: 18px;
        line-height: 1.3;
        letter-spacing: -0.3px;
        border-left: 6px solid #1a6bb0;
        padding-left: 20px;
    }

    .se-content h2 {
        font-size: 24px;
        font-weight: 700;
        color: #0b1a2e;
        margin-top: 42px;
        margin-bottom: 14px;
        line-height: 1.3;
        padding-bottom: 8px;
        border-bottom: 2px solid #e8edf3;
    }

    .se-content h3 {
        font-size: 20px;
        font-weight: 700;
        color: #1a6bb0;
        margin-top: 28px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    /* ----- 段落 & 文本 ----- */
    .se-content p {
        font-size: 16px;
        margin-bottom: 18px;
        color: #2c3e50;
    }

    .se-content strong {
        color: #0b1a2e;
        font-weight: 700;
    }

    /* ----- 引言段落特殊处理 ----- */
    .se-content .lead {
        font-size: 18px;
        color: #2c3e50;
        background: #f6f9fc;
        padding: 18px 24px;
        border-radius: 8px;
        margin-bottom: 28px;
        border-left: 4px solid #1a6bb0;
    }

    /* ----- 列表（用于文章中的要点） ----- */
    .se-content ul {
        margin: 12px 0 20px 28px;
        list-style: none;
    }

    .se-content ul li {
        font-size: 16px;
        margin-bottom: 10px;
        padding-left: 24px;
        position: relative;
        color: #2c3e50;
    }

    .se-content ul li::before {
        content: "▹";
        color: #1a6bb0;
        font-weight: 700;
        position: absolute;
        left: 0;
        top: 0;
    }

    /* ----- 表格样式 (3列9行) ----- */
    .se-content .roi-table-wrap {
        margin: 24px 0 30px;
        overflow-x: auto;
        border-radius: 10px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        border: 1px solid #e2e8f0;
    }

    .se-content .roi-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        text-align: left;
        background: #ffffff;
        min-width: 580px;
    }

    .se-content .roi-table thead th {
        background: #0b1a2e;
        color: #ffffff;
        font-weight: 700;
        padding: 16px 18px;
        font-size: 15px;
        letter-spacing: 0.3px;
        border-bottom: 2px solid #0b1a2e;
    }

    .se-content .roi-table thead th:first-child {
        border-top-left-radius: 10px;
    }
    .se-content .roi-table thead th:last-child {
        border-top-right-radius: 10px;
    }

    .se-content .roi-table tbody td {
        padding: 14px 18px;
        border-bottom: 1px solid #edf2f7;
        color: #1e2a3a;
        vertical-align: middle;
    }

    .se-content .roi-table tbody tr:last-child td {
        border-bottom: none;
    }

    /* 行交替色 */
    .se-content .roi-table tbody tr:nth-child(even) {
        background: #f8fafc;
    }

    .se-content .roi-table tbody tr:nth-child(odd) {
        background: #ffffff;
    }

    /* 第一列加粗 + 颜色 */
    .se-content .roi-table tbody td:first-child {
        font-weight: 600;
        color: #0b1a2e;
        background: #f2f6fb;
    }

    /* 最后一列 (SEA HEART) 用蓝色强调 */
    .se-content .roi-table tbody td:last-child {
        color: #0b1a2e;
        font-weight: 500;
    }

    .se-content .roi-table tbody td:last-child .badge {
        display: inline-block;
        background: #e6f0fa;
        color: #1a6bb0;
        font-size: 13px;
        font-weight: 600;
        padding: 2px 12px;
        border-radius: 20px;
        margin-left: 4px;
    }

    /* 表脚/备注 */
    .se-content .table-note {
        font-size: 14px;
        color: #5a6b7c;
        margin-top: 10px;
        font-style: italic;
        text-align: right;
    }

    /* ----- 特殊高亮块 (例如 "The Verdict") ----- */
    .se-content .verdict-box {
        background: #f0f6fe;
        border-radius: 10px;
        padding: 24px 28px;
        margin: 32px 0 18px;
        border-left: 6px solid #1a6bb0;
    }

    .se-content .verdict-box p {
        margin-bottom: 6px;
        font-size: 17px;
    }

    .se-content .verdict-box p:last-child {
        margin-bottom: 0;
    }

    /* ----- 行动号召 (CTA) 文字 ----- */
    .se-content .cta-text {
        font-size: 17px;
        font-weight: 600;
        color: #0b1a2e;
        margin-top: 14px;
        padding: 14px 20px;
        background: #ffffff;
        border: 1px dashed #1a6bb0;
        border-radius: 8px;
        text-align: center;
    }

    /* ----- 响应式微调 ----- */
    @media (max-width: 680px) {
        .se-content {
            padding: 12px 14px 30px;
        }

        .se-content h1 {
            font-size: 26px;
            padding-left: 14px;
            border-left-width: 4px;
        }

        .se-content h2 {
            font-size: 20px;
            margin-top: 30px;
        }

        .se-content h3 {
            font-size: 18px;
        }

        .se-content .lead {
            font-size: 16px;
            padding: 14px 16px;
        }

        .se-content .roi-table {
            font-size: 14px;
            min-width: 420px;
        }

        .se-content .roi-table thead th,
        .se-content .roi-table tbody td {
            padding: 10px 12px;
        }

        .se-content .verdict-box {
            padding: 18px 16px;
        }

        .se-content .cta-text {
            font-size: 15px;
            padding: 12px 14px;
        }
    }

    @media (max-width: 480px) {
        .se-content .roi-table {
            font-size: 13px;
            min-width: 320px;
        }

        .se-content .roi-table thead th,
        .se-content .roi-table tbody td {
            padding: 8px 10px;
        }
    }
