@charset "utf-8";

/* CSS Document */

/*css初始化*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
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 {

	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: #e60717;

}

p {

	text-align: justify;

}

em {

	font-style: normal;

}

.clearfix:after {

	content: ".";

	display: block;

	height: 0;

	clear: both;

	visibility: hidden;

	*zoom: 1;

}

.w1200 {

	max-width: 1200px;

	width: 100%;

	margin: 0 auto;

}

.fl {

	float: left;

}

.fr {

	float: right;

}

/*头部开始*/

.header .header-links {

	background-color: #eee;

}

.header .header-links .w1200 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.header .header-links .w1200 .fr {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header .header-links .w1200 .fr a {
	margin: 0 20px;
}

.header .header-links p {

	font-size: 14px;

	color: #666;

	line-height: 30px;

}

.header .header-links p a {

	margin-left: 50px;

	color: #666;

}

.header .logo {
	display: flex;
	justify-content: space-between;

}

.header .logo img {
	max-width: 100%;
}

.header .logo .tel {

	/* width: 205px; */

	/* height: 50px; */

	margin-top: 30px;

	padding-left: 75px;

	font-size: 16px;

	background: url(../img/icon.png) 0 2px no-repeat;

}

.header .logo .tel span {

	font-size: 26px;

	font-weight: 700;

	color: #e60717;

	display: block;

}

.header .nav {

	height: 50px;

	background-color: #232323;

	border-bottom: 4px solid #e60717;



}

.header .nav::-webkit-scrollbar {
	display: none;
}

.header .nav .item {

	width: calc(100%/8);

	float: left;

	text-align: center;

	line-height: 50px;

	position: relative;

}

.header .nav .item h3 {
	font-size: 1rem;
	line-height: inherit;
}

.header .nav .item h3 a {

	width: 100%;

	height: 50px;

	display: block;

	color: #fff;

	font-weight: normal;

}

.header .nav .on h3 a {

	color: #e60717;

	/* background-color: #121212; */

}

.header .nav .subnav {

	width: 150px;

	position: absolute;

	top: 46px;

	display: none;

	background-color: rgba(0, 0, 0, 0.7);

	border-top: 4px solid #e60717;

	z-index: 1;

}

.header .nav .subnav li {

	width: 120px;

	height: 40px;

	margin: 0 auto;

	line-height: 40px;

	border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.header .nav .subnav li:last-child {

	border: 0;

}

.header .nav .subnav li a {

	color: #fff;

}

.header .nav .subnav li a:hover {

	color: #e60717;

}

/*版权开始*/

.copyright {


	padding-top: 10px;

	margin-top: 50px;

	background-color: #232323;

}

.copyright p {

	text-align: center;

	color: #aaa;

	line-height: 2;

}

.copyright p a {

	color: #aaa;

	margin-left: 10px;

}

.copyright p a:hover {

	color: #e60717;

}

/*页面标题*/

.subtitle {

	margin: 30px auto;

	height: 30px;

	line-height: 30px;

}

.subtitle h2 {

	font-size: 24px;

	color: #222;

	font-weight: normal;

	padding-left: 6px;

	border-left: 4px solid #e60717;

}

.subtitle h2 span {

	float: right;

	font-size: 14px;

}

.subtitle h2 span em {

	color: #666;

}


@media screen and (max-width:820px) {
	.header .header-links .w1200 {
		justify-content: center;
	}

	.header .header-links .w1200 .fl,
	.header .header-links .w1200 .fr {
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width:768px) {
	.header .nav {
		overflow: scroll;
		white-space: nowrap;
	}

	.header .nav .item {
		float: none;
		display: inline-block;
		width: auto;
		padding: 0 0.5rem;
	}
}

@media screen and (max-width:700px) {
	.header .logo {
		flex-wrap: wrap;
		justify-content: center;
	}

	.header .logo .fl,
	.header .logo .tel {
		width: 100%;
		text-align: center;
	}

	.header .logo .tel {
		max-width: 285px;
	}
}