html,
body {
	background-color: #f5f5f5;
}

html,
body,
p {
	margin: 0;
	padding: 0;
}

a {
	color: #000000;
	text-decoration: none;
}

img {
	display: block;
}

li {
	list-style: none;
}

input,
textarea {
	outline: none;
}

.width-1200 {
	width: 1200px;
	margin: 0 auto;
}

.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header {
	background-color: #ffffff;
	border-bottom: 1px solid #f5f5f5;
	min-width: 1200px;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 120px;
}

.header .logo a {
	display: flex;
	align-items: center;
}

.header .logo img {
	width: 80px;
	margin-right: 10px;
}

.header .logo .zh {
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 4px;
	color: #1d58b2;
	font-family: '楷体';
}

.header .logo .en {
	font-size: 12px;
	color: #1d58b2;
}

.nav-box .nav-top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.nav-box .nav-top .search {
	display: flex;
	align-items: center;
	background: linear-gradient(to right, #1d58b2, #62a0d3);
	border-radius: 50px;
}

.nav-box .nav-top .search input {
	border: 0;
	background-color: rgba(0, 0, 0, 0);
	color: #ffffff;
	height: 35px;
	line-height: 35px;
	padding: 0 10px;
	cursor: pointer;
}

.nav-box .nav-top .search input::placeholder {
	color: #f5f5f5;
}

.nav-box .nav-top .search img {
	width: 25px;
	margin-right: 10px;
	cursor: pointer;
}

.nav-box .nav-top .login-box {
	display: flex;
	align-items: center;
	background: linear-gradient(to right, #1d58b2, #62a0d3);
	line-height: 35px;
	border-radius: 50px;
	margin-left: 30px;
}

.nav-box .nav-top .login-box .l {
	background-color: #ff9600;
	border-radius: 50px;
	padding: 0 20px;
}

.nav-box .nav-top .login-box .l a,
.nav-box .nav-top .login-box .r a {
	color: #ffffff;
}

.nav-box .nav-top .login-box .r {
	padding: 0 20px 0 15px;
}

.nav-list {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.nav-list .li {
	margin-left: 30px;
	position: relative;
	line-height: 36px;
}

.nav-list .li.active>a {
	color: #1d58b2;
	border-bottom: 2px solid #1d58b2;
}

.nav-list .li .ul {
	display: none;
	position: absolute;
	z-index: 999999;
	background-color: #ffffff;
	box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.2);
	min-width: 70px;
}

.nav-list .li:hover .ul {
	display: block;
	padding: 10px;
}

.nav-list .li:hover>a {
	color: #1d58b2;
	border-bottom: 2px solid #1d58b2;
}

.nav-list .li .ul .li-two {
	line-height: 36px;
	width: 145px;
}

.nav-list .li .ul .li-two:hover a {
	color: #1d58b2;
	border-bottom: 2px solid #1d58b2;
}

.footer {
	background-image: url('../img/footer.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 30px;
	background-color: rgba(29, 88, 178, 0.8);
	color: #ffffff;
	padding: 30px 0;
	line-height: 2;
	min-width: 1200px;
}

.footer .width-1200 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer .info .h {
	font-weight: bold;
	font-size: 18px;
	border-left: 3px solid #fff;
	line-height: 1;
	padding-left: 10px;
	margin-bottom: 8px;
}

.footer .copyright {
	text-align: right;
}

.postion {
	display: flex;
	margin-top: 20px;
}

.postion .line {
	margin: 0 6px;
	font-weight: bold;
}

.postion a {
	font-weight: bold;
}

.postion a:hover {
	color: #1d58b2;
}

.page {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.page div {
	margin: 0 8px;
}

.page .pagenumber.active a {
	color: #1d58b2;
}

.page .pagenumber:hover a {
	color: #1d58b2;
}

.page .prev,
.page .next {
	cursor: pointer;
}

.page .prev:hover,
.page .next:hover {
	color: #1d58b2;
}

.menu,
.wap-nav {
	display: none;
}

@media screen and (max-width:980px) {
	header {
		min-width: 100%;
	}

	.header {
		height: 60px;
		padding: 0 10px;
		box-sizing: border-box;
	}

	.header .logo img {
		width: 45px;
		margin-right: 4px;
	}

	.header .logo .zh {
		font-size: 18px;
	}

	.header .logo .en {
		font-size: 8px;
	}

	.nav-box {
		display: none;
	}

	.width-1200 {
		width: 100%;
	}

	.menu {
		display: block;
	}

	.menu img {
		width: 30px;
	}

	.menu .close {
		font-size: 26px;
		color: #1d58b2;
		font-weight: bold;
		display: none;
	}

	.wap-nav {
		display: none;
		position: fixed;
		background-color: rgba(0, 0, 0, 0.4);
		width: 100%;
		height: calc(100% - 60px);
		left: 0;
		top: 60px;
		z-index: 999;
	}

	.wap-box {
		width: 100%;
		background-color: #fff;
		height: calc(100% - 59px);
		padding: 15px;
		padding-top: 5px;
		box-sizing: border-box;
		position: absolute;
		right: 0;
		top: 0;
		overflow: auto;
	}

	.wap-box .li {
		padding: 10px 0;
		position: relative;
	}

	.wap-box .li img {
		position: absolute;
		height: 20px;
		right: 0;
		top: 10px;
		transition: all .3s;
	}

	.wap-box .li .ul {
		display: none;
	}

	.wap-box .li .ul .li-two {
		padding-left: 1em;
		margin-top: 10px;
	}

	.user-info {
		position: absolute;
		background-color: #ffffff;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 60px;
		display: flex;
		align-items: center;
	}

	.user-info .login-box {
		display: flex;
		align-items: center;
		background: linear-gradient(to right, #1d58b2, #62a0d3);
		line-height: 40px;
		border-radius: 50px;
		margin-left: 10px;
		width: max-content;
	}

	.user-info .login-box .l {
		background-color: #ff9600;
		border-radius: 50px;
		padding: 0 20px;
	}

	.user-info .login-box .l a,
	.user-info .login-box .r a {
		color: #ffffff;
		display: block;
		width: 70px;
		text-align: center;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		text-overflow: ellipsis;
	}

	.user-info .login-box .r {
		padding: 0 20px 0 7px;
	}

	.footer {
		min-width: 100%;
	}

	.footer .width-1200 {
		flex-direction: column;
	}

	.footer .copyright {
		margin-top: 10px;
		padding-top: 10px;
		border-top: 1px solid #ffffff;
		width: 100%;
		text-align: center;
	}
}
