<style>
        /* 导入Inter字体 */
        /* 淡入动画 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 介绍文字块 */
        .intro-text-block {
            width: 100%; /* 占据整行 */
            box-sizing: border-box;
            padding: 0 20px; /* 左右内边距，使其不贴边 */
        }

        .intro-text-block p {
            font-size: 1.05em;
            color: #555;
            margin-bottom: 15px;
            text-align: justify; /* 两端对齐 */
        }

        /* 参数和图片的主内容区包装器 */
        .content-sections-wrapper {
            display: flex;
            flex-wrap: wrap; /* 允许内部项目换行 */
            gap: 30px; /* 左侧参数和右侧图片之间的间距 */
            width: 100%; /* 占据整行 */
            box-sizing: border-box;
            text-indent: 2em;
        }

        /* 左侧内容区：参数 */
        .left-section {
            flex: 1; /* 占据可用空间 */
            min-width: 300px; /* 最小宽度 */
            box-sizing: border-box; /* 包含内边距和边框在宽度内 */
        }

        .left-section h2 {
            font-size: 2.2em;
            color: #2c3e50;
            margin-bottom: 20px;
            border-bottom: 3px solid #3498db; /* 底部边框 */
            padding-bottom: 10px;
            display: inline-block; /* 使边框只作用于文本宽度 */
        }

        .left-section ul {
            list-style: none; /* 移除列表点 */
            padding: 0;
            margin-bottom: 25px;
        }

        .left-section ul li {
            background-color: #ecf0f1;
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            font-size: 1.05em;
            color: #34495e;
            /*display: flex;*/
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .left-section ul li::before {
            content: '✅'; /* 小勾图标 */
            margin-right: 10px;
            font-size: 1.2em;
        }

        /* 右侧图片区 */
        .right-section {
            flex: 1.5; /* 占据更多空间 */
            min-width: 400px; /* 最小宽度 */
            display: flex;
            flex-direction: column; /* 垂直堆叠 */
            gap: 20px;
            box-sizing: border-box;
        }

        /* 主图片容器 */
        .main-image-container {
            width: 100%;
            height: 400px; /* 固定高度，可根据需要调整 */
            overflow: hidden; /* 隐藏溢出部分 */
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative; /* 用于图片放大 */
        }

        .main-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 裁剪图片以填充容器 */
            display: block;
            transition: transform 0.3s ease-out; /* 放大动画 */
            transform-origin: center center; /* 默认放大中心 */
            cursor: zoom-in; /* 放大光标 */
        }

        /* 鼠标悬停放大效果 */
        .main-image-container img.zoomed {
            transform: scale(2); /* 放大2倍 */
            cursor: zoom-out; /* 缩小光标 */
        }

        /* 缩略图画廊 */
        .thumbnail-gallery {
            display: flex;
            align-items: center;
            justify-content: center; /* 居中所有缩略图和按钮 */
            gap: 10px; /* 按钮与thumbnails-wrapper之间的间距 */
            margin-top: 10px;
        }

        /* 缩略图列表容器 - 关键修改：显示所有5个缩略图，允许滚动 */
        .thumbnails-wrapper {
            display: flex;
            gap: 10px;
            overflow-x: auto; /* 允许横向滚动 */
            scroll-behavior: smooth; /* 平滑滚动 */
            flex-grow: 0; /* 不占据可用空间 */
            flex-shrink: 0; /* 防止缩略图容器自身被压缩 */
            /* 宽度将由其内容决定，并通过外层flex容器居中 */
            padding: 5px 0; /* 增加上下内边距，方便滚动 */
            box-sizing: border-box;
            -ms-overflow-style: none;  /* 隐藏IE/Edge的滚动条 */
            scrollbar-width: none;  /* 隐藏Firefox的滚动条 */
        }

        /* 隐藏Chrome/Safari/Opera的滚动条 */
        .thumbnails-wrapper::-webkit-scrollbar {
            display: none;
        }

        /* 缩略图样式 */
        .thumbnail {
            width: 90px; /* 缩略图宽度 */
            height: 90px; /* 缩略图高度 */
            object-fit: cover;
            border-radius: 8px;
            border: 3px solid transparent; /* 默认边框 */
            cursor: pointer;
            transition: border-color 0.2s ease, transform 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            flex-shrink: 0; /* 防止缩略图缩小 */
        }

        /* 缩略图悬停和选中状态 */
        .thumbnail:hover,
        .thumbnail.active {
            border-color: #3498db; /* 选中/悬停颜色 */
            transform: translateY(-3px); /* 轻微上浮 */
        }

        /* 导航按钮 - 关键修改：固定宽高确保圆形，并重新显示 */
        .nav-button {
            background-color: #3498db;
            color: white;
            border: none;
            width: 48px; /* 固定宽度，确保圆形 */
            height: 48px; /* 固定高度，确保圆形 */
            cursor: pointer;
            border-radius: 50%; /* 圆形按钮 */
            font-size: 1.5em;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease, transform 0.2s ease;
            outline: none; /* 移除焦点边框 */
            flex-shrink: 0; /* 防止按钮被压缩 */
        }

        .nav-button:hover {
            background-color: #2980b9;
            transform: scale(1.05);
        }

        .nav-button:active {
            transform: scale(0.95);
        }

        /* 产品内容区域 */
        .container-body{
            padding: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .product-content {
            width: 100%;
            max-width: 1200px; /* 限制最大宽度 */
            margin: 40px auto 0 auto; /* 居中显示并调整上边距 */
            padding: 30px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            box-sizing: border-box;
            animation: fadeIn 1s ease-out 0.2s forwards; /* 延迟淡入 */
            opacity: 0; /* 初始隐藏 */
        }

        .product-content h3 {
            font-size: 2em;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
        }

        .product-content h3::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: #3498db;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .product-content .text-features p { /* 文本内容的段落样式 */
            font-size: 1.05em;
            color: #555;
            margin-bottom: 15px;
            padding: 8px 0; /* 增加上下内边距 */
            border-bottom: 1px dashed #e0e0e0; /* 添加虚线分隔 */
            text-align: justify; /* 两端对齐 */
        }

        .product-content .text-features p:last-child {
            border-bottom: none; /* 最后一个不显示虚线 */
        }

        .product-content .text-features p strong {
            color: #2c3e50;
            font-weight: 600;
            margin-right: 8px;
            min-width: 120px; /* 确保标题有足够的宽度对齐 */
            display: inline-block; /* 允许设置宽度 */
        }

        /* 移动端适配 (最大宽度为768px的屏幕) */
        @media (max-width: 768px) {
            
            .container {
                /*padding: 15px; 
                gap: 15px;*/
            }

            .intro-text-block {
                padding: 0; /* 移动端不额外内边距 */
            }

            .intro-text-block p {
                font-size: 1em;
            }

            .content-sections-wrapper {
                flex-direction: column;
                gap: 20px;
            }

            .left-section, .right-section {
                min-width: unset; /* 取消最小宽度限制 */
                width: 100%; /* 占据全部宽度 */
                padding: 0; /* 移除内边距 */
            }

            /* 移动端图片在上方，参数在下方 */
            .right-section {
                order: -1; /* 将图片区放在最前面 */
            }

            .left-section {
                order: 0; /* 参数区在图片区之后 */
            }

            .main-image-container {
                height: 250px; /* 移动端高度略低 */
            }

            .left-section h2 {
                font-size: 1.8em;
                text-align: center;
                border-bottom: none; /* 移除底部边框 */
                padding-bottom: 0;
            }

            .left-section ul li {
                padding: 10px 12px;
                font-size: 1em;
            }

            .thumbnail-gallery {
                flex-direction: row; /* 移动端按钮和缩略图保持水平排列 */
                gap: 10px; /* 调整间距 */
                justify-content: center; /* 居中显示 */
            }

            /* 移动端缩略图列表容器 - 关键修改：显示3个，允许滚动 */
            .thumbnails-wrapper {
                /* 3个缩略图宽度 (70px/图) + 2个间距 (10px/间距) + 额外2px缓冲 */
                width: calc(3 * 70px + 2 * 10px + 2px);
                overflow-x: auto; /* 允许横向滚动 */
                scroll-behavior: smooth; /* 平滑滚动 */
                justify-content: flex-start; /* 确保缩略图从左侧开始排列 */
                padding-bottom: 10px; /* 避免滚动条覆盖内容 */
                -webkit-overflow-scrolling: touch; /* 启用iOS平滑滚动 */
                -ms-overflow-style: none;  /* 隐藏IE/Edge的滚动条 */
                scrollbar-width: none;  /* 隐藏Firefox的滚动条 */
            }

            /* 隐藏Chrome/Safari/Opera的滚动条 */
            .thumbnails-wrapper::-webkit-scrollbar {
                display: none;
            }

            .thumbnail {
                width: 70px;
                height: 70px;
            }

            /* 移动端导航按钮尺寸 */
            .nav-button {
                width: 38px; /* 固定宽度，确保圆形 */
                height: 38px; /* 固定高度，确保圆形 */
                font-size: 1.2em;
                margin: 0; /* 移除左右外边距 */
            }

            .product-content {
                padding: 15px;
                margin-top: 25px;
                max-width: 100%; /* 移动端可以占据全部宽度 */
            }

            .product-content h3 {
                font-size: 1.6em;
            }

            .product-content .text-features p {
                font-size: 1em;
            }
        }
    </style>