* {
	margin: 0;
	padding: 0;
}
/* 禁止选中整个页面内容 */
body {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;
}
@font-face {
	font-family: 'CustomFontSYHT';
	src: url('../font/syht.woff2') format('woff2'),
		url('../font/syht.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

ul {
	list-style: none;
}

body {
	width: 100%;
	cursor: default;
	font: 14px 'CustomFontSYHT', "Source Han Sans SC", "Noto Sans CJK SC",
		"PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

html,
body {
	width: 100%;
	height: 100%;
	background-color: #d1d0cf;
}

html,
body,
#fullP {
	position: relative;
	/* 保留滚动能力 */
	scrollbar-width: none;
	/* Firefox 隐藏滚动条 */
	-ms-overflow-style: none;
	/* IE/Edge 隐藏 */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
#fullP::-webkit-scrollbar {
	display: none;
	/* Chrome/Safari 隐藏滚动条 */
}

.navbar {
	min-height: 80px;
}

.navbar-inverse {
	background-color: #0d0d0d;
	border-color: #0d0d0d;
}

/* 移除鼠标点击时的焦点框，但保留键盘导航的可见性 */
a:focus:not(:focus-visible) {
	outline: none;
}

.navbar-brand {
	padding-top: 17px;
}

.mylogo>img {
	height: 46px;
	width: 50px;
	width: auto;
}

.nav>li>a {
	font-size: 18px;
	margin-left: 19px;
	margin-right: 19px;
	padding-top: 30px;
	padding-left: 1px;
	padding-right: 1px;
	line-height: 24px;
}

.nav>li>a:focus {
	border: 0px;
}

.navbar-inverse .navbar-nav>li>a {
	color: #fff;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
	border-bottom: 2px solid #fff;
	/* 粗细、样式、颜色 */
	padding-bottom: 4px;
	/* 控制下划线与文字的距离 */
	display: inline-block;
	/* 让边框紧贴文字 */
}

#fullP {
	position: relative;
	width: 100%;
}

#toplogo {
	width: 200px;
	height: 200px;
}

@media (max-width:700px) {
	#toplogo {
		width: 140px;
		height: 140px;
	}
}

.fp {
	position: relative;
	width: 100%;
	min-height: 100vh;
	left: auto;
	top: auto;
}

.toHiden {
	top: 100%;
}

@keyframes toUpOver {

	/* from表示动画开始位置 也可以使⽤0%*/
	from {
		top: 0%;
	}

	/* to动画的结束位置 也可以使⽤100%*/
	to {
		top: -100%;
	}
}

.toUpOver {
	animation: toUpOver 500ms ease;
	animation-fill-mode: forwards;
	/* 保持最后一帧状态 */
}

@keyframes toUpShow {

	/* from表示动画开始位置 也可以使⽤0%*/
	from {
		top: 100%;
	}

	/* to动画的结束位置 也可以使⽤100%*/
	to {
		top: 0%;
	}
}

.toUpShow {
	animation: toUpShow 500ms ease;
	animation-fill-mode: forwards;
	/* 保持最后一帧状态 */
}

@keyframes toDownOver {

	from {
		top: 0%;
	}

	to {
		top: 100%;
	}
}

.toDownOver {
	animation: toDownOver 500ms ease;
	animation-fill-mode: forwards;
	/* 保持最后一帧状态 */
}

@keyframes toDownShow {

	/* from表示动画开始位置 也可以使⽤0%*/
	from {
		top: -100%;
	}

	/* to动画的结束位置 也可以使⽤100%*/
	to {
		top: 0%;
	}
}

.toDownShow {
	animation: toDownShow 500ms ease;
	animation-fill-mode: forwards;
	/* 保持最后一帧状态 */
}

#fp0 {
	background-image: url("../Image/Page01.png");
	background-size: cover;
	background-position: right center;
	display: flex;
	justify-content: center;
	/* 水平居中 */
	align-items: center;
	/* 垂直居中 */
}

#fp0 img {
	max-width: 100%;
	max-height: 100%;
}

#fp1 {
	background-image: url("../Image/Page02.png");
	background-size: cover;
	background-position: right center;
	display: flex;
	/* 水平居中 */
	justify-content: center;
	/* 垂直居中 */
	align-items: center;
}

.slogan01 {
	font-size: 28px;
	color: #333;
}

.slogan02 {
	font-size: 20px;
	color: #666;
	padding-top: 20px;
}

.slogan02-box {
	display: flex;
	justify-content: space-between;
}

.fp1-fg {
	width: 30px;
}

@media (max-width:600px) {
	.slogan01 {
		font-size: 24px;
		color: #333;
	}

	.fp1-fg {
		width: 20px;
	}

	.slogan02 {
		font-size: 17px;
	}
}

#fp2 {
	background-image: url("../Image/Page03.png");
	background-size: cover;
	background-position: center center;
	display: flex;
	/* 水平居中 */
	justify-content: center;
	/* 垂直居中 */
	align-items: center;
	position: relative;
	padding-bottom: 160px;
}

.fp-page {
	width: calc(100% - 40px);
	max-width: 1200px;
	display: flex;
	padding-top: 100px;
	justify-content: space-between;
}

.fp2-Box {
	height: 200px;
	display: flex;
	/* 垂直排列 */
	flex-direction: column;
	/* 水平居中 */
	align-items: center;
	z-index: 1;
}

@media (max-width:1200px) {
	.fp-page {
		/* 垂直排列 */
		max-width: 900px;
	}
}

@media (max-width:666px) {
	.fp-page {
		/* 垂直排列 */
		flex-direction: column;
	}
}

.box-title {
	width: 188px;
	height: 68px;
	text-align: center;
	line-height: 62px;
	font-size: 30px;
	color: #111;
}

.box-content {
	margin-top: 20px;
	height: 30px;
	display: flex;
	/* 水平居中 */
	justify-content: center;
	/* 垂直居中 */
	align-items: center;
}

.box-text {
	padding-left: 12px;
	font-size: 24px;
	color: #111;
}



.bottom_box {
	position: absolute;
	z-index: 100;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 120px;
	background-color: #0e0e0e;
}

.bottom_link_box {
	display: flex;
	position: relative;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding-top: 20px;
}

.bottom_link_fgx {
	height: 16px;
	width: 1px;
	background-color: #999;
}

.bottom_link_box>a {
	height: 28px;
	line-height: 28px;
	font-size: 16px;
	padding-left: 20px;
	padding-right: 20px;
	color: #999;
	text-decoration: none;
	cursor: pointer;
}

.bottom_link_box>a:hover {
	color: #fff;
}

.bottom_copyright {
	display: flex;
	position: relative;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding-top: 15px;
}

.copyright {
	color: #999;
}

.bottom_copyright>div {
	display: flex;
	font-size: 12px;
	color: #666;
	height: 18px;
	line-height: 18px;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
	padding-right: 10px;
}

@media (max-width:500px) {
	.bottom_copyright {
		flex-direction: column;
		padding-top: 5px;
	}

	.bottom_link_box {
		padding-top: 15px;

	}

	.bottom_copyright>div {
		height: 20px;
		line-height: 20px;
	}

	.bottom_link_box>a {
		line-height: 22px;
		height: 22px;
	}
}

.bottom_copyright>div>img {
	width: 13px;
	height: 13px;
	margin-left: 2px;
}

.bottom_ba {
	display: flex;
	font-size: 12px;
	color: #999;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
	padding-right: 10px;
}

.bottom_ba>a {
	font-size: 12px !important;
	color: #666;
	height: 18px;
	line-height: 18px;
	text-decoration: none;
	cursor: pointer;
	padding-top: 5px;
}

.bottom_ba>a:hover {
	color: #fff;
}

/* 对于 Chrome、Safari、Edge（基于 Chromium） */
.element::-webkit-scrollbar {
	width: 0;
	/* 隐藏垂直滚动条 */
	height: 0;
	/* 隐藏水平滚动条 */
}

/* 对于 Firefox */
.element {
	scrollbar-width: none;
	/* 隐藏滚动条（但保留滚动功能） */
}

/* 对于 IE / 旧版 Edge */
.element {
	-ms-overflow-style: none;
	/* 隐藏滚动条 */
}

.navbar-toggle {
	margin-top: 25px;
}

.container-fluid {
	padding-left: 360px;
	padding-right: 360px;
}

@media (max-width:1400px) {
	.container-fluid {
		padding-left: 160px;
		padding-right: 160px;
	}
}

@media (max-width:1200px) {
	.container-fluid {
		padding-left: 100px;
		padding-right: 100px;
	}
}

@media (max-width:900px) {
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
}

#pc_bottom_box {
	display: block;
}

#moblie_bottom_box {
	display: none;
}

@media (max-width: 666px) {
	#pc_bottom_box {
		display: none;
	}

	#moblie_bottom_box {
		display: block;
		position: relative !important;
	}

	#fp2 {
		padding-bottom: 20px;
	}
}