
        :root {
            --primary-color: #00B95E; /* 核心蓝绿色 */
            --primary-light: rgba(0, 185, 94, 0.03); /* 浅背景色 */
            --primary-hover: rgba(0, 185, 94, 0.08); /* 悬浮背景色 */
            --secondary-color: #0F172A; /* 深灰蓝（科技感） */
            --text-primary: #334155; /* 正文色 */
            --text-secondary: #64748B; /* 辅助文字色 */
            --bg-light: #F8FAFC; /* 页面背景 */
            --bg-white: #FFFFFF; /* 卡片背景 */
            --border-radius: 12px;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-primary);
            line-height: 1.8;
            padding: 40px 0;
        }

        /* 核心容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 页面头部 */
        .page-header {
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--primary-light);
        }

        .page-header h1 {
            font-size: 36px;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }

        .page-header h1::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .page-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto;
            text-align: justify;
            text-justify: inter-ideograph;
        }

        /* 通用卡片样式 */
        .card {
            background-color: var(--bg-white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            padding: 50px;
            margin-bottom: 40px;
            transition: var(--transition);
            border-top: 4px solid transparent;
        }

        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-top-color: var(--primary-color);
        }

        /* 章节标题样式 */
        .chapter-title {
            font-size: 28px;
            color: var(--secondary-color);
            font-weight: 600;
            margin: 40px 0 24px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .chapter-title::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 24px;
            background-color: var(--primary-color);
            border-radius: 2px;
            margin-right: 16px;
        }

        /* 内容段落 */
        .content-p {
            font-size: 17px;
            color: var(--text-primary);
            margin-bottom: 20px;
            text-align: justify;
        }

        /* 特性列表 */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 24px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 16px;
        }

        .feature-list li {
            font-size: 16px;
            color: var(--text-primary);
            padding: 16px 20px;
            background-color: var(--primary-light);
            border-radius: 8px;
            border-left: 3px solid var(--primary-color);
            transition: var(--transition);
        }

        .feature-list li:hover {
            transform: translateX(4px);
            background-color: var(--primary-hover);
        }

        /* 高亮数据 */
        .highlight-data {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 18px;
        }

        /* 技术参数表格 */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 32px 0;
            font-size: 16px;
        }

        .spec-table th {
            background-color: var(--primary-light);
            color: var(--secondary-color);
            font-weight: 600;
            padding: 16px 12px;
            text-align: left;
            border-bottom: 2px solid var(--primary-color);
        }

        .spec-table td {
            padding: 16px 12px;
            color: var(--text-primary);
            border-bottom: 1px solid #eee;
        }

        .spec-table tr:hover {
            background-color: var(--primary-light);
        }

        .spec-table td:first-child {
            font-weight: 500;
            color: var(--secondary-color);
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 32px;
            }
            .chapter-title {
                font-size: 24px;
            }
            .card {
                padding: 40px 30px;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 20px 0;
            }
            .page-header {
                margin-bottom: 40px;
            }
            .page-header h1 {
                font-size: 28px;
            }
            .page-header p {
                font-size: 16px;
            }
            .card {
                padding: 30px 20px;
                margin-bottom: 24px;
            }
            .chapter-title {
                font-size: 22px;
                margin: 32px 0 20px;
            }
            .content-p, .feature-list li {
                font-size: 16px;
            }
            .spec-table th, .spec-table td {
                padding: 12px 8px;
                font-size: 15px;
            }
        }
    