/* 弹窗遮罩层 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

/* 弹窗容器 */
.modal-container {
	background: white;
	width: 90%;
	max-width: 500px;
	border-radius: 15px;
	padding: 30px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 关闭按钮 */
.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 24px;
	color: #666;
	cursor: pointer;
	transition: color 0.3s ease;
}

.modal-close:hover {
	color: #e74c3c;
}

/* 表单标题 */
.modal-title {
	font-size: 24px;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 25px;
	font-weight: bold;
}

/* 表单样式 */
.quote-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.form-group input {
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: #e74c3c;
	box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* 提交按钮 */
.submit-btn {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	border: none;
	padding: 15px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* 表单验证提示 */
.error-tip {
	color: #e74c3c;
	font-size: 12px;
	display: none;
}

/* 成功提示 */
.success-message {
	text-align: center;
	padding: 20px;
	color: #27ae60;
	font-size: 16px;
	display: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.modal-container {
		padding: 20px;
	}

	.modal-title {
		font-size: 20px;
	}
}




/* 页面标题区 */
.page-header {
	background: linear-gradient(135deg, #2c3e50, #34495e);
	color: white;
	padding: 60px 0;
	text-align: center;
}

.page-header h1 {
	font-size: 42px;
	margin-bottom: 15px;
}

.page-header p {
	font-size: 18px;
	opacity: 0.9;
}

/* 公司介绍 */
.company-intro {
	padding: 80px 0;
	background: white;
}

.intro-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.intro-text h2 {
	font-size: 36px;
	color: #2c3e50;
	margin-bottom: 20px;
}

.intro-text p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 20px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
}

.stat-number {
	display: block;
	font-size: 36px;
	font-weight: bold;
	color: #e74c3c;
	margin-bottom: 5px;
}

.stat-label {
	color: #666;
	font-size: 14px;
}

.intro-image {
	position: relative;
}

.intro-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 资质荣誉 */
.qualifications {
	padding: 80px 0;
	background: #f8f9fa;
}

.section-title {
	text-align: center;
	font-size: 36px;
	color: #2c3e50;
	margin-bottom: 50px;
}

.certs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.cert-item {
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.cert-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cert-icon {
	font-size: 48px;
	color: #e74c3c;
	margin-bottom: 15px;
}

.cert-name {
	font-size: 18px;
	color: #2c3e50;
	margin-bottom: 10px;
}

.cert-desc {
	color: #666;
	font-size: 14px;
}

.awards-slider {
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.awards-list {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	padding: 20px 0;
}

.award-card {
	min-width: 300px;
	background: #f8f9fa;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
}

.award-year {
	font-size: 24px;
	color: #e74c3c;
	font-weight: bold;
	margin-bottom: 15px;
}

.award-title {
	font-size: 18px;
	color: #2c3e50;
	margin-bottom: 10px;
}

.award-org {
	color: #666;
	font-size: 14px;
}

/* 发展历程 */
.history {
	padding: 80px 0;
	background: white;
}

.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #e74c3c;
	transform: translateX(-50%);
}

.timeline-item {
	position: relative;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
}

.timeline-item:nth-child(odd) {
	flex-direction: row-reverse;
}

.timeline-content {
	flex: 1;
	padding: 30px;
	background: #f8f9fa;
	border-radius: 10px;
	margin: 0 30px;
	position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
	text-align: right;
}

.timeline-year {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #e74c3c;
	color: white;
	padding: 10px 20px;
	border-radius: 20px;
	font-weight: bold;
	z-index: 1;
}

.timeline-title {
	font-size: 20px;
	color: #2c3e50;
	margin-bottom: 10px;
}

.timeline-desc {
	color: #666;
	line-height: 1.6;
}

/* 团队介绍 */
.team {
	padding: 80px 0;
	background: #f8f9fa;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.team-member {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
}

.team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-photo {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.member-info {
	padding: 30px;
}

.member-name {
	font-size: 24px;
	color: #2c3e50;
	margin-bottom: 5px;
}

.member-title {
	color: #e74c3c;
	font-size: 16px;
	margin-bottom: 15px;
}

.member-desc {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
	text-align: left;
}

.member-achievements {
	list-style: none;
	text-align: left;
}

.member-achievements li {
	padding: 3px 0;
	color: #666;
	font-size: 13px;
	position: relative;
	padding-left: 15px;
}

.member-achievements li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #e74c3c;
}

/* 企业文化 */
.culture {
	padding: 80px 0;
	background: white;
}

.culture-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.culture-item {
	text-align: center;
	padding: 40px 30px;
	background: #f8f9fa;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.culture-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.culture-icon {
	font-size: 48px;
	color: #e74c3c;
	margin-bottom: 20px;
}

.culture-title {
	font-size: 20px;
	color: #2c3e50;
	margin-bottom: 15px;
}

.culture-desc {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* 合作伙伴 */
.partners {
	padding: 80px 0;
	background: #f8f9fa;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 50px;
	align-items: center;
}

.partner-item {
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	transition: all 0.3s ease;
	filter: grayscale(100%);
	opacity: 0.7;
}

.partner-item:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo {
	width: 100%;
	height: 80px;
	object-fit: contain;
	margin-bottom: 15px;
}

.partner-name {
	font-size: 16px;
	color: #2c3e50;
}

/* 社会责任 */
.social-responsibility {
	padding: 80px 0;
	background: white;
}

.responsibility-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.responsibility-text h2 {
	font-size: 36px;
	color: #2c3e50;
	margin-bottom: 20px;
}

.responsibility-text p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}

.responsibility-list {
	list-style: none;
}

.responsibility-list li {
	padding: 15px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 15px;
}

.responsibility-list li:last-child {
	border-bottom: none;
}

.responsibility-icon {
	font-size: 24px;
	color: #e74c3c;
}

.responsibility-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA区域 */
.cta-section {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	padding: 60px 0;
	text-align: center;
}

.cta-title {
	font-size: 36px;
	margin-bottom: 20px;
}

.cta-subtitle {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
	padding: 15px 35px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s ease;
	display: inline-block;
}

.cta-btn-primary {
	background: white;
	color: #e74c3c;
}

.cta-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.cta-btn-secondary:hover {
	background: white;
	color: #e74c3c;
}



/* 响应式设计 */
@media (max-width: 768px) {
	.page-header h1 {
		font-size: 32px;
	}

	.intro-content,
	.responsibility-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.timeline::before {
		left: 20px;
	}

	.timeline-item {
		flex-direction: column !important;
		padding-left: 60px;
	}

	.timeline-item .timeline-content {
		margin: 0;
		text-align: left !important;
	}

	.timeline-year {
		left: 20px;
		transform: none;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.culture-grid,
	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 动画效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.8s ease;
}

/* 数字滚动动画 */
@keyframes countUp {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.count-animation {
	animation: countUp 0.5s ease;
}