html, body {
    height: 100%; /* 确保 html 和 body 标签高度为 100% */
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* 隐藏body的水平滚动条 */
    overflow-y: auto; /* 启用垂直滚动 */
    font-size: 16px; /* header 字体大小 */
	font-family: "Microsoft YaHei", sans-serif; /* 将字体更改为微软雅黑 */
	display: flex;
   	flex-direction: column;
   }
  
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} 
   .content {
	/* border:1px solid #A3CEF6;*/
	padding: 10px;
    display: flex;
    width: 1200px;
    justify-content: space-between;
}

   
   
/*top*/
.top {
	background-color: #FFFFFF;
	align-self: flex-start; /* 将 .top 内容放置在 header 的顶部 */
	width: 100%;
	height: auto;
	display: flex; /* 将 .top 设置为 flex 容器 */
	justify-content: center;
    align-items: center;
    padding-top:15px;
    padding-bottom:15px;
}

.top_left {
    display: flex;
    align-items: center;
}
   .top_left_separator {
    width: 2px;
    height: 60px; /* 将高度设置为 38px */
	background-color: #C4C4C4; /* 灰色 */
	margin: 0 10px; /* 根据需要调整边距 */
	display: inline-block; /* 确保竖线表现为内联元素 */
	vertical-align: middle; /* 垂直居中竖线 */
}
   
.top_left_title{
	font-size : 22px; /* header 字体大小 */
	color : #333333;
}

.top_right {
    margin-left: auto; /* 将整个 .right 区域靠右 */
    display: flex;
    align-items: center;
}

.top_right a {
    text-decoration: none;
    color: inherit; /* 保持文本颜色与父元素一致 */
    display: flex;
    color:#60A8FA;
    align-items: center;
}

.top_right img {
    margin-right: 5px;
}