
        /* 产品详情页样式 - 主色调 #fabf01 黄色 */
        .product-detail-page {
            max-width: 1000px;
            margin: 0 auto;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            color: #1a2c3e;
            line-height: 1.6;
            background: #fff;
            padding: 20px;
        }
        
        .product-detail-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 标题区域 */
        .product-title {
            text-align: left;
            margin-bottom: 24px;
        }
        .product-title h1 {
            font-size: 28px;
            font-weight: 650;
            color: #173759;
            line-height: 1.4;
        }
        
        /* 主图区域 */
        .main-image {
            margin: 20px 0;
            text-align: center;
        }
        .main-image img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        /* 副图两张 - 不限制图片大小，每张独立显示 */
        .sub-images {
            margin: 20px 0;
        }
        .sub-images img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin-bottom: 16px;
        }
        .sub-images img:last-child {
            margin-bottom: 0;
        }
        
        /* 特点列表模块：新增标题样式，保留黄色主调 */
        .features-wrapper {
            margin: 24px 0;
        }
        .features-title {
            font-size: 1.6rem;
            font-weight: 620;
            color: #173b5c;
            margin: 0 0 0.8rem 0;
            border-bottom: 3px solid #fabf01;
            padding-bottom: 0.5rem;
            display: inline-block;
            width: 100%;
        }
        .features-list {
            background: #f5f8fc;
            border-radius: 24px;
            padding: 24px 32px;
            margin: 8px 0 0 0;
        }
        .features-list p {
            font-size: 18px;
            line-height: 2.2;
            color: #1a3c5e;
        }
        
        /* 更多图片展示 - 不限制图片大小，每张独立显示 */
        .more-images {
            margin: 20px 0;
        }
        .more-images img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin-bottom: 16px;
        }
        .more-images img:last-child {
            margin-bottom: 0;
        }
        
        /* 产品推荐表格样式 - 使用黄色主色调 */
        .specs-table-wrapper {
            margin: 20px 0;
        }
        .section-title {
            font-size: 1.6rem;
            font-weight: 620;
            color: #173b5c;
            margin: 0 0 1.2rem 0;
            border-bottom: 3px solid #fabf01;
            padding-bottom: 0.5rem;
        }
        .recommend-table-responsive {
            overflow-x: auto;
            border-radius: 20px;
            border: 1px solid #f5e6b0;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 700px;
        }
        .specs-table th,
        .specs-table td {
            padding: 1rem 1rem;
            text-align: center;
            border-bottom: 1px solid #f0e6c8;
        }
        .specs-table th {
            background: #fabf01;
            color: #1a2c3e;
            font-weight: 700;
            font-size: 0.9rem;
            border-bottom: none;
        }
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        .specs-table tr:hover td {
            background: #fffcf0;
        }
        
        /* 图文网格模块 - 通用样式 */
        .image-grid-module {
            margin: 32px 0;
        }
        .image-grid-module .module-title {
            font-size: 1.6rem;
            font-weight: 620;
            color: #173b5c;
            margin: 0 0 1.2rem 0;
            border-bottom: 3px solid #fabf01;
            padding-bottom: 0.5rem;
        }
        .image-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .grid-item {
            flex: 1;
            min-width: 0;
            text-align: center;
        }
        .grid-item img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.2s;
            display: block;
        }
        .grid-item img:hover {
            transform: scale(1.02);
        }
        .grid-item .image-caption {
            margin-top: 10px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #1a3c5e;
            line-height: 1.4;
        }
        
        /* 模块一：5列布局 */
        .module-1 .grid-item {
            flex-basis: calc(20% - 16px);
        }
        
        /* 模块二：3列布局 */
        .module-2 .grid-item {
            flex-basis: calc(33.333% - 14px);
        }
        
        /* 视频模块 */
        .video-section {
            margin: 32px 0;
        }
        .video-section .section-title {
            font-size: 24px;
            font-weight: 620;
            color: #173b5c;
            margin-bottom: 20px;
            border-bottom: 3px solid #fabf01;
            padding-bottom: 10px;
        }
        .video-wrapper {
            position: relative;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,35,70,0.15);
            background: #000;
            aspect-ratio: 16 / 9;
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* 底部浮动图片 */
        .bottom-image {
            margin: 24px 0;
            text-align: center;
            clear: both;
        }
        .bottom-image img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        /* 响应式 */
        @media (max-width: 768px) {
            .features-list {
                padding: 20px;
            }
            .features-list p {
                font-size: 16px;
            }
            .product-title h1 {
                font-size: 24px;
            }
            .specs-table th,
            .specs-table td {
                padding: 0.75rem 0.5rem;
                font-size: 0.8rem;
            }
            .image-grid-module .module-title {
                font-size: 1.3rem;
            }
            /* 手机端模块一改为2列，模块二改为1列 */
            .module-1 .grid-item {
                flex-basis: calc(50% - 10px);
            }
            .module-2 .grid-item {
                flex-basis: 100%;
            }
            .grid-item .image-caption {
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .module-1 .grid-item {
                flex-basis: 100%;
            }
        }
    