 /* 反馈表单区域样式 */
        .inquiry-section {
            padding: 40px 5%;
            background-color: #f8f9fa;
        }
        
        .inquiry-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .inquiry-header {
            background-color: #ffaa00;
            color: white;
            padding: 20px 30px;
            
        }
        
        .inquiry-header h2 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .product-selection {
            padding: 20px 30px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .product-table {
            width: 100%;
            border-collapse: collapse;
        }
        /* 新增样式：优化产品表格显示 */
        .product-table img {
            max-width: 80px;
            max-height: 60px;
            object-fit: contain;
        }
        
        .product-summary-item {
            margin-bottom: 10px;
            padding: 10px;
            border: 1px solid #eee;
            border-radius: 4px;
        }
        .product-table th {
            background-color: #f8f8f8;
            text-align: left;
            padding: 12px 15px;
            font-weight: 600;
            color: #333;
            border-bottom: 2px solid #eaeaea;
        }
        
        .product-table td {
            padding: 15px;
            vertical-align: middle;
            border-bottom: 1px solid #eaeaea;
        }
        
        .product-image {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .product-name a {
            color: #333;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .product-name a:hover {
            color: #e53935;
        }
        
        .quantity-input {
            width: 80px;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-align: center;
        }
        
        .delete-btn {
            color: #e53935;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            transition: opacity 0.3s;
        }
        
        .delete-btn:hover {
            opacity: 0.8;
        }
        
        .inquiry-form {
            padding: 30px;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #e53935;
            box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
        }
        
        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }
        
        .required::after {
            content: " *";
            color: #e53935;
        }
        
        .submit-btn {
            background-color: #e53935;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .submit-btn:hover {
            background-color: #c62828;
        }
        
        .form-note {
            margin-top: 20px;
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .product-selection {
                overflow-x: auto;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .product-table {
                min-width: 600px;
            }
        }
        
        @media (max-width: 576px) {
            .inquiry-header {
                padding: 15px 20px;
            }
            
            .inquiry-header h2 {
                font-size: 1.5rem;
            }
            
            .product-selection,
            .inquiry-form {
                padding: 15px;
            }
            
            .product-table th,
            .product-table td {
                padding: 10px;
            }
            
            .product-image {
                width: 60px;
                height: 60px;
            }
        }