@charset "utf-8";

/* CSS Document */
body {
	background-color: white;
}

.headerBG {
	background-image: url("../images/headBG2.png");
	background-color: #1395da;
	background-repeat: repeat-x;
	background-position: center -10px;
	background-attachment: fixed;
}

.header {
	background-image: url("../images/taitou.png");
	background-position: center top;
	background-repeat: no-repeat;
	height: 141px;
	width: 1300px;
	margin: auto;
}

.menu {
	list-style: none;
	margin: 0px auto;
	padding: 0;
	position: relative;
	display: flex;
	width: 1170px;
	/* border-radius: 0px 0px 5px 5px; */
	border-top: none;
}

.menu>li {
	flex: 1;
	text-align: center;
	line-height: 50px;
	font-size: 22px;
	position: relative;
	transition: all 0.3s;
}

.menu>li:hover {
	background-color: rgba(0, 166, 255, 0.8);
}

.menu>li::before {
	content: "";
	height: 1.2em;
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	right: 0px;
	position: absolute;
	top: 15px;
	z-index: 1;
}

.menu>li:last-child::before {
	display: none;
}

.menu>li>a {
	text-decoration: none;
	z-index: 3;
	position: relative;
	transition: all 0.3s;
	color: white;
	font-weight: lighter;
	font-family: "Microsoft YaHei";
}

.menu>li:hover>a {
	color: white;
}

.menu>li>a:hover {
	color: white;
}

.mask1 {
	background-image: url("../images/bg.jpg");
	/* background-repeat: no-repeat; */
	background-attachment: fixed;
	background-position: center -60px;
	padding: 0;
}

.footer {
	/* min-height: 150px; */
	/* background-color: rgba(0, 0, 0, .5); */
	position: relative;
	overflow: hidden;
	color: white;
	line-height: 25px;
	padding: 30px 0px 30px 0px;
}

.footer:before {
	content: "";
	display: block;
	position: absolute;
	top: -50px;
	width: 100%;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0px 20px 20px rgba(0, 0, 0, .5);
}

.logobox {
	margin: 30px auto;
}

@media (min-width:768px) {
	body {
		min-width: 1200px;
	}

	.container {
		width: 1170px;
	}
}


@media screen and (max-width:767px) {
	.headerBG {
		height: 143px;
	}

	.header {
		background-image: url("../images/headBG.png");
		background-position: -20px top;
		background-repeat: no-repeat;
		background-size: cover;
		height: 100px;
		width: auto;
		margin: 0px -15px 38px -15px;
	}

	.menu {
		background-color: #1395da;
		display: block;
		width: 100%;
		top: -60px;
	}

	.menu>li {
		display: inline-block;
		text-align: center;
		line-height: 30px;
		font-size: 16px;
		width: 32%;
	}

	.menu>li::before {
		display: none;
	}

	.menu>li::after {
		display: none;
	}

	.menu>li:hover>a {
		color: unset;
	}

	.menu>li>a:hover {
		color: unset;
	}

}