
        /* ===== HFDT 产品详情展示（完全自包含样式，不依赖全局）===== */
        /* 极严格的作用域隔离 - 所有选择器都以 .hfdt-product-showcase 开头 */
        .hfdt-product-showcase {
            display: block;
            max-width: 1000px;        /* 限制最大宽度，避免电脑上太宽 */
            margin: 0 auto;            /* 水平居中 */
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            color: #1a2c3e;
            line-height: 1.5;
            background: transparent;
            padding: 0;                /* 移除内边距，让容器自己控制 */
        }
        
        /* 确保所有子元素继承box-sizing */
        .hfdt-product-showcase * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 标题样式 */
        .hfdt-product-showcase .section-title {
            font-size: 1.6rem;
            font-weight: 620;
            color: #173b5c;
            margin: 2rem 0 1.2rem;
            border-bottom: 3px solid #c6daf2;
            padding-bottom: 0.5rem;
        }
        
        /* 视频模块样式 (YouTube嵌入适配) */
        .hfdt-product-showcase .video-module {
            margin: 2rem 0 1rem;
        }
        .hfdt-product-showcase .video-wrapper {
            position: relative;
            width: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,35,70,0.15);
            background: #000;
            aspect-ratio: 16 / 9;
        }
        .hfdt-product-showcase .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 24px;
        }
        
        /* 响应式 */
        @media (max-width: 600px) {
            .hfdt-product-showcase .video-wrapper {
                border-radius: 20px;
            }
        }
    