﻿html {
	overflow-y: scroll;
}
body {
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	font-size: 16px;
	color:#000000;
	font-family: Verdana,"微软雅黑","宋体";
	word-wrap: break-word;
	word-break: break-all;
	white-space: normal;
}
img {
	border: 0;
}
hr {
	width: 100%;
}
a , a:hover {
	color:#022169;
	text-decoration: none;
}



.globalframe {
	display: flex;
	justify-content: center; /* 水平居中 */
	align-items: center; /* 垂直居中 */
	height: 100%;
}



.displayarea {
	width: 1080px;
}



header .frameheader {
	display: flex;
	width: 1080px;
	justify-content: space-between; /* 关键：两端对齐，中间留空 */
	align-items: center;            /* 垂直居中 */
	position: fixed; /* 关键：相对于浏览器窗口定位 */
	z-index: 9;    /* 关键：确保层级高于其他内容 */
	background-color: #FFFFFF;
	height: 80px;
}
header .frameheader .logo {
	width:100px;
}
header .frameheader .logo img {
	width: 80px;
	height: 80px;
}
header .frameheader .text {
	flex: 1;
	font-size: 14px;
	text-align: left; 
	color:#333;
}
header .frameheader .login {
	width: 160px;
	font-size: 14px;
	text-align: center; 
}
header .frameheader .login .btn {
	background-color: #FECF13;
	color:#022169;
}
header .frameheader .login .id_platform {
	background-color: #FECF13;
	color:#000000;
}
header .frameheader .login img {
	width: 40px;
	border-radius: 10px;
	border: 2px solid #FECF13;       /* 宽度 样式 颜色 */
}



.displayarea .framenav {
	display: flex;
	margin: 80px 0 0 0;
	padding: 0px;
	width: 1080px;
	align-items: center; /* 垂直居中 */
	position: fixed; /* 关键：相对于浏览器窗口定位 */
	z-index: 9; /* 关键：确保层级高于其他内容 */
	background-color: #022169;
	gap: 10px;
}
.displayarea .framenav a {
	color:#ffffff;
}
.displayarea .framenav a:hover  {
	color:#022169;
}
.displayarea .framenav div {
	/* 默认情况下，flex 子项的宽度会根据内容自适应 */
	/* 不需要设置 width，或者设置为 fit-content */
	width: fit-content;  /* 确保宽度严格贴合内容，防止拉伸 */
	padding: 16px 32px;
}
.displayarea .framenav div:hover {
	background-color: #FECF13;
}



.displayarea .framemain {
	width: 1078px;
	border-left: 1px solid #022169;
	border-right: 1px solid #022169;
	min-height: 100vh;
}




footer {
	width: 1060px;
	padding: 10px;
	height: 40px;
	justify-content: space-between; /* 关键：两端对齐，中间留空 */
	align-items: center; /* 垂直居中 */
	position: fixed; /* 关键：相对于浏览器窗口定位 */
	z-index: 9; /* 关键：确保层级高于其他内容 */
	bottom: 0;
	color:#ffffff;
	background-color: #022169;
	font-size: 12px;
	align-items: center; /* 垂直居中 */
}
footer a {
	color:#ffffff;
}
footer a:hover{
	color:#ffffff;
}