
        .product-detail {
            max-width: 1200px;
            margin: 0 auto;
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            font-size: 16px; /* 正文标准字号 */
        }
        /* 主标题 H1 */
        .product-title {
            font-size: 28px; /* 电脑主标题 */
            font-weight: bold;
            margin: 20px 0;
            padding-left: 10px;
            border-left: 4px solid #3E63F6;
        }
        /* 二级标题 H2 */
        .section-title {
            font-size: 22px; /* 电脑二级标题 */
            font-weight: bold;
            margin: 30px 0 15px;
        }
        /* 三级标题 H3（段落小标题） */
        .subsection-title {
            font-size: 18px;
            font-weight: bold;
            margin: 15px 0 10px;
        }
        .text-block {
            margin-bottom: 15px;
            font-size: 16px;
        }

        /* 卡片样式 + 安全悬浮 */
        .item {
            background: #f8f9ff;
            border-left: 3px solid #3E63F6;
            padding: 12px 15px;
            margin-bottom: 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .item:hover {
            background: #eef3ff;
        }
        /* 卡片内关键词加粗 */
        .item strong {
            font-weight: bold;
        }

        /* 表格样式 + 标题加粗 */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .spec-table td {
            border: 1px solid #eee;
            padding: 12px;
        }
        .spec-table td:nth-child(odd) {
            background: #f9f9f9;
            font-weight: bold;
        }
        .spec-table tr:hover {
            background: #f8f9ff;
        }

        .service-item {
            background: #f0f7ff;
            padding: 12px 15px;
            margin-bottom: 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .service-item:hover {
            background: #ddecff;
        }

        /* 移动端响应式 */
        @media (max-width: 768px) {
            .product-title {
                font-size: 24px; /* 手机主标题 */
            }
            .section-title {
                font-size: 20px; /* 手机二级标题 */
            }
            .subsection-title {
                font-size: 17px; /* 手机三级标题 */
            }
            .product-detail,
            .text-block {
                font-size: 15px; /* 手机正文 */
            }
        }
    