/* 关于我们页面特有样式 */
.about-banner {
	position: relative;
	height: 400px;
	background-image: url('../../Lib/img/neibu_ban.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

.about-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.about-banner-content {
	position: relative;
	z-index: 1;
}

.about-banner h1 {
	font-size: 42px;
	margin-bottom: 16px;
}

.about-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
}

.about-breadcrumb a {
	color: rgba(255, 255, 255, 0.8);
}

.about-breadcrumb a:hover {
	color: white;
}

/* 公司简介样式 */
.company-intro {
	align-items: flex-start;
	gap: 48px;
	width: 100%;
	display: flex;
}

.intro-image {
	flex: 0 0 46%;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1.2 / 1;
	width: 50%;
	height: 300px;
}

.intro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
}

.intro-image:hover img {
	transform: scale(1.05);
}

.intro-content {
	flex: 1;
	padding-left: 15px;
}

.intro-content h3 {
	color: var(--primary-color);
	margin-bottom: 20px;
	font-size: 24px;
}

.intro-content p {
	color: #666;
	margin-bottom: 16px;
	line-height: 1.8;
}

/* 发展历程样式 */
.timeline {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background-color: var(--primary-color);
}

.timeline-item {
	position: relative;
	margin-bottom: -100px;
	padding: 0 30px;
}

.timeline-item:nth-child(odd) {
	text-align: right;
	margin-left: 0;
	margin-right: 50%;
}

.timeline-item:nth-child(even) {
	margin-left: 50%;
	margin-right: 0;
}

.timeline-dot {
	position: absolute;
	top: 0;
	width: 20px;
	height: 20px;
	background-color: var(--primary-color);
	border-radius: 50%;
	border: 4px solid white;
	box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-dot {
	right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
	left: -10px;
}

.timeline-content {
	background-color: white;
	padding: 24px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.timeline-year {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.timeline-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

.timeline-description {
	color: #666;
	line-height: 1.6;
	text-align: left;
	text-indent: 2em;
}

br+span::before {
	content: '\A';
	/* 换行符 */
	white-space: pre;
	/* 保留空白符 */
	margin-left: 2em;
	/* 设置换行后的缩进 */
}

.team-section {
	padding-top: 150px;
}

/* 团队介绍样式 */
.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.team-member {
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-photo {
	height: 350px;
	overflow: hidden;
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.team-member:hover .team-photo img {
	transform: scale(1.05);
}

.team-info {
	padding: 24px;
	text-align: center;
}

.team-name {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

.team-position {
	font-size: 14px;
	color: var(--primary-color);
	margin-bottom: 16px;
}

.team-bio {
	color: #666;
	line-height: 1.6;
	margin-bottom: 16px;
}

.team-social {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.team-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: #f5f5f5;
	border-radius: 50%;
	color: #666;
	transition: all 0.3s ease;
}

.team-social a:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-3px);
}

/* 企业文化样式 */
.culture-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.culture-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 24px;
	background-color: white;
	padding: 32px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.culture-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.culture-icon {
	flex: 0 0 80px;
	height: 80px;
	background-color: rgba(30, 136, 229, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.culture-item:hover .culture-icon {
	background-color: var(--primary-color);
	color: white;
	transform: scale(1.1);
}

.culture-content h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
}

.culture-content p {
	color: #666;
	line-height: 1.6;
}

/* 荣誉资质样式 */
.certificate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.certificate-item {
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	text-align: center;
	padding: 24px;
}

.certificate-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.certificate-icon {
	font-size: 64px;
	color: var(--primary-color);
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.certificate-item:hover .certificate-icon {
	transform: scale(1.1) rotate(5deg);
}

.certificate-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
}

.certificate-description {
	color: #666;
	line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 1024px) {
	.company-intro {
		flex-direction: column;
		gap: 32px;
	}

	.intro-image {
		flex: 0 0 auto;
		width: 100%;
	}

	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.certificate-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.about-banner {
		height: 300px;
	}

	.about-banner h1 {
		font-size: 32px;
	}

	.team-section {
		padding-top: 10px;
	}

	.timeline::before {
		left: 30px;
		width: 0px;
	}

	.timeline-item {
		margin-left: 0px !important;
		margin-right: 0 !important;
		text-align: left !important;
		margin-bottom: 30px !important;
		padding: 0 5px !important;
	}

	.timeline-item:nth-child(odd) .timeline-dot,
	.timeline-item:nth-child(even) .timeline-dot {
		left: 0px;
		width: 0px;
		height: 0px;
		box-shadow: 0 0 0 0px;
	}

	.team-grid,
	.culture-grid,
	.certificate-grid {
		grid-template-columns: 1fr;
	}

	.culture-item {
		flex-direction: column;
		text-align: center;
	}

	.culture-icon {
		margin: 0 auto;
	}
}