﻿/*全局设定 b*/

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;
}

.box-parent {
	display: flex;
	justify-content: center; /* 水平居中 */
	align-items: center;     /* 垂直居中 */
	height: 100%;
}

.box-main {
	width: 1080px;
}



.box-main .top {
	display: flex;
	width: 1080px;
	justify-content: space-between; /* 关键：两端对齐，中间留空 */
	align-items: center;            /* 垂直居中 */
	position: fixed; /* 关键：相对于浏览器窗口定位 */
	z-index: 666;    /* 关键：确保层级高于其他内容 */
	background-color: #FFFFFF;
	height: 80px;
}
.box-main .top .logo {
	width: 100px;
}
.box-main .top .logo img {
	width: 80px;
	height: 80px;
}
.box-main .top .text {
	flex: 1;
	font-size: 14px;
	text-align: left;
	vertical-align: top;
	color:#333;
}
.box-main .top .info {
	width: 160px;
	font-size: 14px;
	text-align: center;
}
.box-main .top .info .api {
	background-color: #FECF13;
	color:#000000;
}
.box-main .top .info .id_platform
 {
	background-color: #FECF13;
	color:#000000;
}

.box-main .top .info img {
	width: 40px;
	border-radius: 10px;
	border: 2px solid #FECF13;       /* 宽度 样式 颜色 */
}



.box-main .nav {
	display: flex;
	margin: 80px 0 0 0;
	padding: 0px;
	width: 1080px;
	align-items: center;            /* 垂直居中 */
	position: fixed; /* 关键：相对于浏览器窗口定位 */
	z-index: 666;    /* 关键：确保层级高于其他内容 */
	background-color: #022169;
	color:#ffffff;
	gap: 10px;
}
.box-main .nav div {
	/* 默认情况下，flex 子项的宽度会根据内容自适应 */
	/* 不需要设置 width，或者设置为 fit-content */
	width: fit-content;  /* 确保宽度严格贴合内容，防止拉伸 */
	padding: 15px;
}
.box-main .nav div:hover {
	background-color: #FECF13;
}
.box-main .nav div:hover a {
	color:#000000;
}
.box-main .nav div a {
	color:#ffffff;
}



.box-main .bottom {
	display: flex;
	width: 1060px;
	padding: 10px;
	height: 40px;
	justify-content: space-between; /* 关键：两端对齐，中间留空 */
	align-items: center;            /* 垂直居中 */
	position: fixed; /* 关键：相对于浏览器窗口定位 */
	z-index: 666;    /* 关键：确保层级高于其他内容 */
	bottom: 0;
	background-color: #022169;
}
.box-main .bottom .item {
	font-size: 12px;
	color:#ffffff;
	align-items: center;            /* 垂直居中 */
}
.box-main .bottom .item a {
	color:#ffffff;
}

/*主体部分 e*/