
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            background: #fdf7f7;
            color: #2c2c2c;
            line-height: 1.7;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 头部横幅 */
        .hero {
            background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
            color: white;
            padding: 48px 0 40px;
            border-radius: 0 0 32px 32px;
            margin-bottom: 40px;
            text-align: center;
        }
        .hero .badge {
            background: rgba(255,255,255,0.2);
            display: inline-block;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }
        .hero .hero-title {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.15rem;
            opacity: 0.92;
            max-width: 750px;
            margin: 0 auto;
        }

        /* 引言 */
        .intro-text {
            font-size: 1.05rem;
            margin-bottom: 36px;
            padding: 0 4px;
        }
        .intro-text strong {
            color: #b71c1c;
        }

        /* 卡片 */
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 28px 32px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            border-left: 6px solid #c62828;
            transition: 0.2s;
        }
        .feature-card:hover {
            box-shadow: 0 8px 28px rgba(0,0,0,0.10);
            transform: translateY(-2px);
        }
        .feature-card h2 {
            color: #b71c1c;
            font-size: 1.5rem;
            margin-bottom: 12px;
        }
        .feature-card h2 .emoji {
            margin-right: 10px;
        }
        .feature-card p {
            color: #444;
            margin-bottom: 10px;
        }
        .feature-card ul {
            margin: 12px 0 4px 24px;
            color: #444;
        }
        .feature-card ul li {
            margin-bottom: 6px;
        }
        .feature-card .highlight-box {
            background: #ffebee;
            padding: 14px 20px;
            border-radius: 12px;
            margin: 12px 0 4px;
            border-left: 4px solid #c62828;
            font-size: 0.95rem;
        }
        .feature-card .highlight-box strong {
            color: #b71c1c;
        }

        /* CTA 内联按钮 — 仅保留2个 */
        .cta-inline {
            background: #ffebee;
            padding: 16px 20px;
            border-radius: 12px;
            margin: 16px 0 4px;
            text-align: center;
            border: 2px dashed #c62828;
        }
        .cta-inline a {
            color: #b71c1c;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.05rem;
        }
        .cta-inline a:hover {
            text-decoration: underline;
            color: #8e0000;
        }
        .cta-inline .arrow {
            display: inline-block;
            margin-left: 8px;
            transition: 0.2s;
        }
        .cta-inline a:hover .arrow {
            transform: translateX(4px);
        }

        /* 规格表格 */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 12px 0 4px;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
        }
        .spec-table th {
            background: #c62828;
            color: white;
            padding: 10px 16px;
            text-align: left;
            font-weight: 600;
            width: 40%;
        }
        .spec-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #f0e0e0;
            background: #fefafa;
            width: 60%;
        }
        .spec-table tr:last-child td {
            border-bottom: none;
        }

        /* 优势网格 */
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 20px 0 10px;
        }
        .advantage-item {
            background: #fefafa;
            padding: 20px;
            border-radius: 16px;
            border: 1px solid #f0e0e0;
        }
        .advantage-item h3 {
            color: #b71c1c;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .advantage-item p {
            color: #555;
            font-size: 0.95rem;
        }

        /* 价值网格 */
        .value-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin: 20px 0 10px;
        }
        .value-item {
            background: #fefafa;
            padding: 16px 20px;
            border-radius: 12px;
            border-left: 4px solid #c62828;
        }
        .value-item strong {
            color: #b71c1c;
            display: block;
            margin-bottom: 4px;
        }
        .value-item span {
            color: #555;
            font-size: 0.95rem;
        }

        /* 结尾区块 — 保留主按钮作为最终引导 */
        .closing-section {
            background: #ffebee;
            border-radius: 28px;
            padding: 36px 32px;
            margin: 40px 0 30px;
            text-align: center;
        }
        .closing-section h2 {
            color: #b71c1c;
            font-size: 1.7rem;
            margin-bottom: 12px;
        }
        .closing-section p {
            max-width: 700px;
            margin: 0 auto 12px;
            font-size: 1.05rem;
        }
        .closing-section .cta-link {
            display: inline-block;
            background: #c62828;
            color: white;
            padding: 12px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            margin-top: 12px;
            transition: 0.2s;
        }
        .closing-section .cta-link:hover {
            background: #8e0000;
            transform: scale(1.02);
        }

        .footer-note {
            text-align: center;
            font-size: 0.8rem;
            color: #999;
            padding: 20px 0 30px;
            border-top: 1px solid #f0cfcf;
            margin-top: 10px;
        }

        @media (max-width: 700px) {
            .hero .hero-title { font-size: 1.6rem; }
            .feature-card { padding: 20px; }
            .spec-table { font-size: 0.85rem; }
            .spec-table th, .spec-table td { padding: 8px 12px; }
            .value-grid { grid-template-columns: 1fr; }
            .closing-section { padding: 24px 18px; }
            .closing-section h2 { font-size: 1.3rem; }
        }
    