/* 主容器 */
.about-content-container {
	width: 100%;
	/* max-width: 1200px; */
	/* margin: 5% 0; */
	display: flex;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

/* 左侧图片区域 */
.about-content-left {
	width: 40%;
	background: linear-gradient(135deg, #0a4da2, #4285f4);
	position: relative;
	padding: 50px 0 0 5%; 
	color: #fff;
}

.about-content-building {
	position: absolute;
	/* bottom: 0;
	left: 0; */
	width: 100%;
	/* height: 80%; */
	object-fit: cover;
	opacity: 0.85;
}

.about-content-placeholder {
	position: relative;
	z-index: 2;
}

/* 右侧内容区域 */
.about-content-right {
	width: 50%;
	padding: 120px 0 60px 120px;
	background-color: #fff;
}

.about-content-title {
	font-size: 2.2rem;
	color: #333;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-content-title span {
	color: #666;
	font-size: 2.2rem;
	font-weight: normal;
}

.about-content-subtitle {
	width: 100%;
	font-size: 1.5rem;
	color: #111;
	margin-bottom: 20px;
	font-weight: 600;
}

.about-content-desc {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 10s00px;
}

.about-content-tag-group {
	display: flex;
	gap: 15px;
}

.about-content-tag {
	padding: 8px 20px;
	background-color: #f5f7fa;
	border-radius: 20px;
	font-size: 1.1rem;
	color: #333;
}