* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Microsoft YaHei', sans-serif;
}

body {
	background-color: #f5f5f5;
	color: #333;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

header {
	background: rgba(0, 0, 0, 0.4);
	color: white;
	padding: 40px 0;
	text-align: center;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
}

.about-section {
	background: rgba(255, 255, 255, 0.6);
	padding: 30px;
	margin: 30px 0;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-section {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.team-member {
	background: rgba(255, 255, 255, 0.6);
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.team-member img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	.team-section {
		grid-template-columns: 1fr;
	}
}