﻿.team_top {
	display: flex;
	gap: 38px;
}

.team_top img {
	width: 300px;
	height: 400px;
	object-fit: cover;
	border-radius: 4px;
}

.team_top_content {
	flex: 1;
}

.team_top_title {
	line-height: 45px;
	height: 45px;
	background: #efefef;
	padding-left: 20px;
	font-size: 22px;
	border-left: 2px solid #ddd;
}

.team_base_info {
	padding: 22px;
}

.team_bottom_title {
	line-height: 45px;
	height: 45px;
	background: #efefef;
	padding-left: 20px;
	font-size: 22px;
	margin-top: 32px;
	border-left: 2px solid #ddd;
	margin-bottom: 20px;
}


@media only screen and (max-width: 768px) {

	.team_top {
		flex-direction: column;
		justify-content: center;
		display: flex;
		/* align-items: center; */
		gap: 32px;
	}

	.team_top img {
		margin: 0 auto;
		margin-top: 15px;
	}

	.team_top_title {
		padding-left: 10px;
	}

	.team_base_info {
		padding: 12px;
	}

	.team_bottom_title {
		padding-left: 10px;
		margin-top: 20px;
	}

}