* {
	margin: 0px;
	padding: 0px;
	list-style: none;
	box-sizing: border-box;
}

body {
	color: #fff;
	background-color: #051ba5;
}

body,
html {
	scroll-behavior: smooth;
}

.float:after {
  content: "";
  display: block;
  height: 0;
  clear:both;
  visibility: hidden;
}
.float {
  *zoom: 1;
}

.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ellipsis_2 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

a {
	display: block;
	color: #333;
	text-decoration: none;
}

input {
	outline: none;
}

input::-webkit-input-placeholder {
	color: #CBCBCB;
}

input:-moz-placeholder {
	color: #CBCBCB;
}

input::-moz-placeholder {
	color: #CBCBCB;
}

input:-ms-input-placeholder {
	color: #CBCBCB;
}

img {
	-moz-user-select: none;
	/*火狐*/
	-webkit-user-select: none;
	/*webkit浏览器*/
	-ms-user-select: none;
	/*IE10*/
	-khtml-user-select: none;
	/*早期浏览器*/
	user-select: none;
	vertical-align: middle;
}

/*正常的未被访问过的链接*/
a:link {
	text-decoration: none;
}

/*已经访问过的链接*/
a:visited {
	text-decoration: none;
}

/*鼠标划过(停留)的链接*/
a:hover {
	text-decoration: none;
}

/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
	text-decoration: none;
}

/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
	text-decoration: none;
}

/* 导航公共样式 */
@media screen and (min-width: 768px) {
	.navigation {
		width: 100%;
		background-color: #2936E7;
		z-index: 20;
	}

	.navigation .nav {
		width: 1200px;
		margin: 0 auto;
		height: 60px;
		display: flex;
		align-items: center;
	}

	.navigation .nav li:hover {
		cursor: pointer;
		background-color: #0a24a2;
	}

	.navigation .nav li:hover a {
		color: #00FFF0;
	}

	.navigation .nav>li {
		display: flex;
		align-items: center;
		height: 60px;
		position: relative;
		z-index: 2;
		list-style: none;
	}

	.navigation .nav>li>a {
		font-size: 16px;
		color: #fff;
		background-repeat: no-repeat;
		background-position: right center;
		padding: 0 28px;
		font-weight: bold;
		display: block;
		position: relative;
	}

	.nav_btn {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.navigation {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		background-color: rgba(0, 0, 0, 0.8);
		z-index: 200;
		display: none;
	}

	.navigation .nav {
		width: auto;
		padding-top: 40px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		align-items: center;
		height: auto;
	}

	.navigation .nav li {
		width: 80%;
		float: left;
		height: 40px;
		display: inline;
		border: 0;
		margin-bottom: 10px;
	}

	.navigation .nav li a {
		display: block;
		width: 80%;
		height: 30px;
		margin: 0 auto;
		margin-bottom: 20px;
		text-align: center;
		line-height: 30px;
		font-size: 13px;
		color: #fff;
		border: 1px solid #2936E7;
		-webkit-border-radius: 10px;
		border-radius: 10px;
		text-decoration: none;
	}

	.nav_btn {
		display: block;
		position: fixed;
		width: 40px;
		height: 40px;
		top: 20px;
		right: 20px;
		background-color: rgba(0, 0, 0, 0.4);
		border-radius: 50%;
		z-index: 15;
	}

	.nav_btn::after,
	.nav_btn::before {
		content: "";
		position: absolute;
		top: 19px;
		left: 20%;
		width: 60%;
		height: 2px;
		background: #fff;
	}

	.nav_btn::after {
		top: 13px;
		background: transparent;
		border-top: 2px solid #fff;
		padding: 4px 0px;
		border-bottom: 2px solid #fff;
	}
}
