@charset "utf-8";

/* 公司简介区域
---------------------------------------------------------------------------*/
.company_profile {
	padding: 80px 0 80px;
	background: #fff;
}

/* 渐现动效 */
.fade-in-section {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
	opacity: 1;
	transform: translateY(0);
}

.company_profile section {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
}

/* 左右布局容器 */
.profile_layout {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

/* 左侧标题区 */
.profile_left {
	width: 260px;
	min-width: 260px;
	padding-top: 20px;
}

.profile_left h2 {
	font-size: 2.8em;
	font-weight: 900;
	color: #374151;
	margin: 0;
	line-height: 1.4;
}

.profile_left h2 span {
	display: block;
	font-size: 0.5em;
	color: #36CFCE;
	margin-top: 8px;
	
}

/* 右侧信息列表 */
.profile_list {
	flex: 1;

	border-radius: 4px;
	overflow: hidden;
}

/* 公司简介列表
---------------------------------------------------------------------------*/

.profile_row {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e8e8e8;
	padding: 20px 30px;
	font-size: 1.1em;
}

.profile_row:last-child {
	border-bottom: none;
}

.profile_label {
	width: 120px;
	min-width: 120px;
	font-weight: bold;
	color: #444;

}

.profile_value {
	flex: 1;
	color: #333;
}

.profile_value p {
	margin-bottom: 6px;
	line-height: 1.7;
	margin-top: 0;
}

.profile_value p:last-child {
	margin-bottom: 0;
}

.profile_sub {
	color: #999;
	font-size: 0.85em;
}

.profile_qr img {
	width: 130px;
	height: 130px;
	margin-bottom: 8px;
}

/* 手机端适配
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	.company_profile {
		padding: 40px 0 60px;
	}

	.company_profile section {
		padding: 0 20px;
	}

	.profile_layout {
		flex-direction: column;
		gap: 30px;
		align-items: center;
	}

	.profile_left {
		width: auto;
		min-width: auto;
		padding-top: 0;
		text-align: center;
	}

	.profile_row {
		flex-direction: column;
		padding: 16px 20px;
		align-items: center;
		text-align: center;
	}

	.profile_label {
		width: auto;
		min-width: auto;
		margin-bottom: 8px;
		font-size: 0.9em;
	}
}
