/* 页面整体容器样式 */
.page-container {
	width: 80%;
	margin: 0 auto;
	font-family: Arial, sans-serif;
	background-color: #fafafa;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 20px;
}

/* 头部样式 */
.header {
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #e0e0e0;
}

.avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin-bottom: 10px;
}

/* 主体内容区域各板块通用样式 */
.section {
	margin-bottom: 30px;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section h2 {
	margin-top: 0;
}

/* 底部样式 */
.footer {
	text-align: center;
	margin-top: 30px;
	padding-top: 10px;
	border-top: 1px solid #e0e0e0;
	color: #777;
}