* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}

html,
body {
	width: 100%;
	height: 100%;
}


#news{
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
}

/* 页头 */
#header {
	width: 100%;
	height: 60px;
	background-color: #8fd7fd;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	height: 80%;
	margin-left: 10px;
}

.logo>img {
	width: 100%;
	height: 100%;
}

.nav {
	width: 70%;
	height: 100%;
}

.nav ul {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav ul li {
	width: 25%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav ul li:hover {
	background-color: #00aaff;
}

.nav ul li a {
	color: white;
	font-size: 1vw;
	font-weight: 500;
}

.side {
	width: 60px;
	height: 60px;
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}

.side>img {
	width: 50px;
	height: 50px;
}

.side>img:hover {
	border: 1px solid #FFFFFF;
}

#menus {
	width: 90%;
	background-color: rgb(255, 255, 255, 0.5);
	position: absolute;
	right: 0;
	padding: 20px;
	z-index: 99;
	display: none;
}

#menus>ul {
	width: 100%;
}

#menus>ul>li {
	width: 100%;
}

#menus a {
	width: 100%;
	color: black;
	font-weight: 500;
	text-align: center;
	display: none;
}

/* 响应式 */
@media all and (max-width:480px) {
	.side{
		display: block;
	}
	.nav {
		display: none;
	}
	#menus>ul>li>a {
		display: block;
	}
}

#banner {
	width: 100%;
	position: relative;
}

.aaa{
	width: 100%;
}

.title{
	width: 100%;
	padding: 30px;
	font-size: 40px;
	font-weight: 900;
	text-align: center;
	text-shadow: 2px 1px 1px #55aaff;
}
/* 响应式 */
@media all and (max-width:480px) {
	.title{
		font-size: 25px;
		padding: 20px;
	}
}
.nbox{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	padding-bottom: 60px;
}
#footer{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: #2380b4;
	padding: 20px;
}
.fl{
	width: 400px;
	display: flex;
	justify-content: space-around;
}
.erweima{
	width: 30%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	margin: 20px;
}
.erweima img{
	width: 100%;
}
.erweima p{
	color: white;
}
.fc{
	text-align: center;
	font-size: 15px;
	padding: 20px;
}
.fr{
	width: 300px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.fr img{
	height: 60px;
}
