/* FLYZ-8101 产品页样式 - 从内联CSS提取 */


        /* 产品页面特有样式 */
        .hero-product {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            border-radius: 8px;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-product::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
            z-index: 1;
        }
        
        .hero-product-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-product h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .hero-product p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .cta-button {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background-color: #c0392b;
        }
        
        .secondary-button {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .secondary-button:hover {
            background-color: white;
            color: #3498db;
        }
        
        .product-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            margin: 2rem 0;
        }
        
        .features {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }
        
        .features h2 {
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .feature-card h3 {
            color: #3498db;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .feature-icon {
            font-size: 1.5rem;
        }
        
        .specifications {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }
        
        .specifications h2 {
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .spec-tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .spec-tab {
            padding: 0.8rem 1.5rem;
            cursor: pointer;
            border: none;
            background: none;
            font-size: 1rem;
            color: #7f8c8d;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        
        .spec-tab.active {
            color: #3498db;
            border-bottom: 3px solid #3498db;
        }
        
        .spec-content {
            display: none;
        }
        
        .spec-content.active {
            display: block;
        }
        
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }
        
        .spec-table th, .spec-table td {
            padding: 0.8rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .spec-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        
        .application {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }
        
        .application h2 {
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .application-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .application-card {
            text-align: center;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .application-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #3498db;
        }
        
        .workflow {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        
        .workflow-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        
        .workflow-step {
            text-align: center;
            flex: 1;
            min-width: 200px;
            margin: 1rem 0;
        }
        
        .workflow-step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #3498db;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: bold;
        }
        
        .resources {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }
        
        .resources h2 {
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .resources-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .resources-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .resource-card {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
        }
        
        .resource-link {
            display: inline-block;
            margin-top: 1rem;
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .resource-link:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        .safety {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 3rem;
        }
        
        .safety h2 {
            color: #856404;
            margin-bottom: 1rem;
        }
        
        .safety-list {
            list-style: disc;
            padding-left: 2rem;
        }
        
        .safety-list li {
            margin-bottom: 0.5rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .hero-product h1 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .workflow-steps {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .workflow-step {
                width: 100%;
                text-align: left;
                display: flex;
                align-items: center;
                gap: 1rem;
            }
            
            .workflow-step-number {
                margin: 0;
            }
        }
    