/*导航栏*/
.header {
	width: 100%;
	height: 64px;
	background-color: rgba(0, 128, 204, 1);
	position: fixed;
	top: 0px;
	left: 0;
	right: 0;
	z-index: 99999;
}
.nav-bar {
	width: 1200px;
	height: 64px;
	margin: auto;
}

.logo>img {
	margin-top: 14px;
}

.logo {
	float: left;
	width: 228px;
}

.menu {
	float: left;
	width: 700px;
	margin-left: 50px;
}

.menu>ul {
	list-style: none;
	/*display: flex;*/
	text-align: center;
	width: 700px;
}

.menu>ul>li {
	line-height: 64px;
/*	flex: 1;*/
	/*overflow: hidden;*/
	width:100px;
	float: left;
}

.menu>ul>li>a {
	width:100%;
	height: 100%;
	color: white;
	display: inline-block;
}
.menu>ul>li>a:hover {
	color: white;
	background: #013F98;
}

.menu>ul>li:hover {
	cursor: pointer;
}
.on{
	color: white;
	background:rgba(1,63,152,0.5);
}

/*搜索框*/

.search {
	float: left;
	width: 222px;
	height: 64px;
}

.search-int {
	float: left;
	line-height: 79px;
	width:172px;
	height: 60px;
}
.search-int-left{
	float: left;
	position: relative;
	width:140px;
	height: 32px;
}
.search-int-right{
	float: right;
}
.search-int>.search-int-left>input {
	width: 0px;
	height: 32px;
	border: 0px;
	border-radius: 3px;
	padding-left: 15px;
	font-size: 11px;
	visibility: hidden;
	position: absolute;
	margin-left:140px;
	margin-top: 14px;
}
.search-int>.search-int-right>img {
	margin-top: 23px;
	width: 15px;
	
}
.search-int>.search-int-right>img:hover {
	cursor: pointer;
}

.search-en {
	float: left;
	color: white;
	line-height: 64px;
	margin-left: 30px;
}

.content-right{
	cursor:pointer;
}
