@charset "utf-8";
/* CSS Document */

/*css初始化*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
button,
input,
textarea,
p,
table,
th,
td,
em {
	margin: 0;
	padding: 0;
}

body {
	font-size: 14px;
	font-family: "Microsoft YaHei", "微软雅黑", "Heiti SC", "黑体-简";
	color: #333;
}

img,
input,
button {
	border: 0;
	vertical-align: middle;
}

ul,
ol,
li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

a:hover {
	color: #0f74c4;
}

/*p {*/
/*	text-align: center;*/
/*}*/

em {
	font-style: normal;
}

/* .clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	*zoom: 1;
} */

.w1200 {
	max-width: 1200px;
	margin: 0 auto;
}

.header-w1200 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.banner img {
	max-width: 100%;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

/*头部开始*/
.top-bar {
	width: 100%;
	/* height: 30px; */
	background-color: #d6d6d6;
}

.top-bar p {
	line-height: 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top-bar p span {
	float: right;
}

.header {
	width: 100%;
	height: 100px;
	background: rgba(255, 255, 255, 0.7);
}

.header button {
	display: none;
}

.header .logo {
	/* width: 200px; */
	/* height: 70px; */
	margin-top: 15px;
	/* background: url(/skin/baichy/img/logo.png) center no-repeat; */
	/* background-size: 100%; */
	width: 20%;
}

.header .logo a {
	/* width: 200px; */
	/* height: 70px; */
	display: block;
	/* text-indent: -999px; */
}

.header .nav {
	width: 80%;
	height: 100px;
	display: flex;
	justify-content: space-between;
}

.header .nav li {
	float: left;
	width: calc(100% / 7);
	height: 100px;
	line-height: 100px;
	text-align: center;
}

.header .nav li a {
	width: 100%;
	height: 100px;
	display: block;
	font-size: 16px;
	color: #333;
}

.header .nav li.on {
	background-color: #0f74c4;
}

.header .nav li.on a {
	color: #fff;
}

/*底部版权*/

.footer {
	margin-top: 30px;
	padding-top: 20px;
	background-color: #0f74c4;
}

.footer p {
	color: #fff;
	text-align: center;
	line-height: 2.5;
}

.footer p a {
	color: #fff;
}

.nav-mobile {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.2rem;
}

.nav-mobile ul li {
	margin-top: 2rem;
}


@media screen and (max-width:1080px) {
	.header-w1200 {
		padding: 0 15px;
	}

	.header .nav {
		display: none;
	}

	.header button {
		display: block;
	}
}