        
        /* 添加产品定制区域样式 */
        .product-section {
        	padding: 80px 0;
        	background-color: var(--color-bg-default);
        }

        .product-grid {
        	display: grid;
        	grid-template-columns: 1fr 1fr;
        	gap: 60px;
        	align-items: center;
        }

        .product-content h2 {
        	font-size: 36px;
        	font-weight: 600;
        	margin-bottom: 20px;
        	color: var(--color-text-dark);
        }

        .product-content p {
        	font-size: 18px;
        	line-height: 1.7;
        	margin-bottom: 30px;
        	color: var(--gray-500);
        }

        .product-features {
        	margin: 30px 0;
        }

        .product-feature {
        	display: flex;
        	align-items: flex-start;
        	margin-bottom: 15px;
        }

        .product-feature-icon {
        	width: 24px;
        	height: 24px;
        	margin-right: 15px;
        	flex-shrink: 0;
        	color: var(--primary-blue);
        }

        .product-feature-text {
        	font-size: 16px;
        	line-height: 1.6;
        }

        .product-image {
        	position: relative;
        	border-radius: 8px;
        	overflow: hidden;
        	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .product-image img {
        	width: 100%;
        	height: auto;
        	transition: transform 0.5s ease;
        }

        .product-image:hover img {
        	transform: scale(1.05);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
        	.product-grid {
        		gap: 40px;
        	}

        	.product-content h2 {
        		font-size: 32px;
        	}
        }

        @media (max-width: 768px) {
        	.product-section {
        		padding: 60px 0;
        	}

        	.product-grid {
        		grid-template-columns: 1fr;
        		gap: 40px;
        	}

        	.product-content h2 {
        		font-size: 28px;
        	}

        	.product-content p {
        		font-size: 16px;
        	}

        	.product-image {
        		order: -1;
        	}
        }

        @media (max-width: 576px) {
        	.product-section {
        		padding: 40px 0;
        	}

        	.product-content h2 {
        		font-size: 24px;
        	}

        }

        /* 水平分割线样式 */
        .section-divider {
        	border: 0;
        	height: 1px;
        	background-color: var(--color-border);
        	margin: 40px auto;
        	width: 100%;
        }

        /* 确保移动端图片顺序一致 */
        @media (max-width: 768px) {
        	.section-divider {
        		margin: 30px auto;
        	}
        }


/* 留言区域样式 */
.inquiry-section {
    padding: 80px 0;
    background-color: var(--color-bg-default);
    position: relative;
}

.inquiry-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

/* 左侧内容区域 */
.inquiry-content {
    flex: 1;
    min-width: 300px;
}

.inquiry-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.inquiry-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.6;
}

.section-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

/* 定制流程样式 */
.process-section {
    margin-bottom: 40px;
}

.process-list {
    list-style: none;
    padding: 0;
}

.process-item {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 16px;
    margin-top: 4px;
}

.process-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.process-details p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* 服务承诺样式 */
.service-list {
    list-style: none;
    padding: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--color-text-dark);
}

.service-dot {
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
}

/* 右侧表单区域 - 使用详情页样式 */
.inquiry-form-container {
    flex: 1;
    min-width: 300px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 使用详情页的表头样式 */
.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.contact-form-description {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* 表单网格布局 */
.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: var(--color-bg-default);
    color: var(--color-text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
    opacity: 0.7;
}

/* 文件上传区域 */
.file-upload-group {
    margin-top: 10px;
}

.file-upload-area {
    border: 2px dashed var(--color-border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    background-color: var(--color-bg-default);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--color-primary);
    background-color: rgba(26, 95, 180, 0.05);
}

.upload-icon {
    margin: 0 auto 15px;
}

.upload-text {
    font-size: 16px;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.browse-link {
    color: var(--color-primary);
    text-decoration: underline;
    cursor: pointer;
}

.upload-hint {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 5px;
}

/* 文件列表样式 */
.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: var(--color-bg-default);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.file-item:hover {
    background-color: rgba(26, 95, 180, 0.05);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.file-name {
    font-size: 14px;
    color: var(--color-text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.file-size {
    font-size: 12px;
    color: var(--gray-500);
}

.remove-file {
    background: none;
    border: 1px solid var(--color-border);
    color: var(--gray-500);
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.remove-file:hover {
    background-color: #fee;
    border-color: #e74c3c;
    color: #e74c3c;
}

/* 安全通知样式 - 调整为右侧表单风格 */
.security-notice {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 12px;
    background-color: rgba(26, 95, 180, 0.05);
    border-radius: 4px;
    font-size: 14px;
    color: var(--gray-700);
}

.security-icon {
    margin-right: 12px;
    color: var(--color-primary);
}

/* 提交按钮区域 */
.form-submit {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 180, 0.3);
}

/* 响应式设计 */
@media (max-width: 992px) {
.inquiry-wrapper {
        gap: 40px;
    }
    
    .inquiry-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .inquiry-section {
        padding: 60px 0;
    }
    
    .inquiry-wrapper {
        flex-direction: column;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .file-upload-area {
        padding: 20px 15px;
    }
    
    .upload-text {
        font-size: 14px;
    }
    
    .upload-hint {
        font-size: 12px;
    }
    
    .file-name {
        max-width: 180px;
    }
    
    .file-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .remove-file {
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
.inquiry-section {
        padding: 40px 0;
    }
    
    .inquiry-form-container {
        padding: 20px;
    }
    
    .contact-form-title {
        font-size: 22px;
    }
    
    .submit-btn {
        padding: 15px 20px;
    }
    
    .file-name {
        max-width: 120px;
    }
    
    .process-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .benefit-item,
    .service-item {
        font-size: 15px;
    }
}
        /* 样品展示区域样式 */
        .samples-showcase {
            padding: 80px 0;
            background-color: var(--color-bg-default);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--color-text-dark);
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--gray-500);
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* 产品网格 */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .product-item {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .product-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }
        
        .product-image {
            width: 100%;
            height: 0;
            padding-bottom: 100%; /* 创建正方形比例 */
            position: relative;
            overflow: hidden;
            background-color: var(--gray-100);
        }
        
        .product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        
        .product-item:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-name {
            padding: 20px;
            text-align: center;
            font-weight: 500;
            font-size: 18px;
            color: var(--color-text-dark);
        }
        
        /* 模态框样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 3000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            width: auto;
            height: auto;
        }
        
        .modal-image {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
            border-radius: 4px;
        }
        
        .modal-caption {
            text-align: center;
            color: var(--white);
            font-size: 20px;
            margin-top: 20px;
            font-weight: 500;
        }
        
        /* 导航箭头 */
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-nav:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .modal-nav.prev {
            left: 20px;
        }
        
        .modal-nav.next {
            right: 20px;
        }
        
        .modal-nav svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .modal-close svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .samples-showcase {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .samples-showcase {
                padding: 40px 0;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .section-title p {
                font-size: 16px;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .product-name {
                padding: 15px;
                font-size: 16px;
            }
            
            .modal-nav {
                width: 40px;
                height: 40px;
            }
            
            .modal-nav.prev {
                left: 10px;
            }
            
            .modal-nav.next {
                right: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .section-title {
                margin-bottom: 40px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
        }