
        /* 添加作用域容器避免全局样式冲突 */
        .faq-component {
            --primary-color: #e63946;
            --secondary-color: #ff6b6b;
            --light-bg: #f9f9f9;
            --dark-bg: #f0f0f0;
            --text-dark: #333;
            --text-medium: #666;
            --text-light: #888;
            --border-color: #f0f0f0;
            --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            --attribute-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--dark-bg) 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .faq-component * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .faq-component .container {
            max-width: 1440px;
            width: 100%;
        }
        
        .faq-component .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }
        
        .faq-component .header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .faq-component .header p {
            font-size: 1.2rem;
            color: var(--text-medium);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .faq-component .faq-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .faq-component .faq-item {
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        
        .faq-component .faq-question {
            padding: 22px 60px 22px 25px;
            position: relative;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            transition: all 0.2s ease;
        }
        
        .faq-component .faq-question:hover {
            color: var(--primary-color);
        }
        
        .faq-component .faq-question::after {
            content: '+';
            position: absolute;
            right: 25px;
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .faq-component .faq-item.active .faq-question::after {
            content: '-';
            transform: rotate(0deg);
            color: var(--primary-color);
        }
        
        .faq-component .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background-color: #fff0f0;
            color: #555;
            line-height: 1.7;
            font-size: 0.98rem;
            border-radius: 0 0 8px 8px;
        }
        
        .faq-component .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 22px 25px;
        }
        
        .faq-component .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-component .faq-item:hover {
            background-color: #fcfcfc;
        }
        
        /* 产品缩略图区域样式 */
        .faq-component .answer-content {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }
        
        .faq-component .product-thumbnail {
            flex-shrink: 0;
            width: 180px;
            height: 180px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #ffe0e0;
            background: linear-gradient(45deg, #ffcccc, #ffe6e6);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .faq-component .product-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .faq-component .product-thumbnail:hover img {
            transform: scale(1.05);
        }
        
        .faq-component .thumbnail-placeholder {
            text-align: center;
            padding: 20px;
            color: var(--primary-color);
        }
        
        .faq-component .thumbnail-placeholder i {
            font-size: 3rem;
            margin-bottom: 10px;
            display: block;
        }
        
        .faq-component .answer-text {
            flex: 1;
        }
        
        .faq-component .product-name {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        /* 属性部分样式 */
        .faq-component .attribute-section {
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(to right, #fff5f5, #ffeeee);
            border-radius: 15px;
            box-shadow: var(--attribute-shadow);
        }
        
        .faq-component .attribute-section h3 {
            color: #d44;
            margin-bottom: 25px;
            font-weight: 700;
            font-size: 1.8rem;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .faq-component .attribute-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), #ff9aa2);
            border-radius: 2px;
        }
        
        .faq-component .attributes {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        
        .faq-component .attribute {
            background: rgba(255, 255, 255, 0.85);
            border-radius: 12px;
            padding: 25px;
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #ffecec;
            position: relative;
            overflow: hidden;
        }
        
        .faq-component .attribute:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
        }
        
        .faq-component .attribute::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), #ff9aa2);
        }
        
        .faq-component .attribute h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faq-component .attribute h4 i {
            background: #ffecec;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        .faq-component .attribute p {
            color: var(--text-medium);
            line-height: 1.7;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .faq-component .header h1 {
                font-size: 2.3rem;
            }
            
            .faq-component .faq-question {
                padding: 18px 50px 18px 20px;
                font-size: 1rem;
            }
            
            .faq-component .faq-question::after {
                right: 20px;
                font-size: 1.5rem;
            }
            
            .faq-component .faq-item.active .faq-answer {
                padding: 18px 20px;
            }
            
            .faq-component .answer-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .faq-component .product-thumbnail {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
                height: 200px;
            }
            
            .faq-component .attribute-section {
                padding: 25px 20px;
            }
            
            .faq-component .attribute {
                min-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .faq-component .header h1 {
                font-size: 1.9rem;
            }
            
            .faq-component .header p {
                font-size: 1rem;
            }
            
            .faq-component .faq-question {
                padding: 16px 45px 16px 16px;
                font-size: 0.95rem;
            }
            
            .faq-component .faq-question::after {
                right: 16px;
                font-size: 1.4rem;
            }
            
            .faq-component .attribute-section h3 {
                font-size: 1.5rem;
            }
            
            .faq-component .product-thumbnail {
                height: 180px;
            }
        }
        
        /* 添加可访问性特性 */
        .faq-component .faq-question:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }
        
        .faq-component .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
    