/*这里是通用css作用于全部*/
/*@font-face {*/
/*	font-family: 'DFLongMenGB';*/
/*	src: url(../fonts/DFLongMenGB.ttc);*/
/*}*/

* {
	margin: 0px;
	padding: 0px;
	font-family: "Microsoft YaHei", "微软雅黑", "Helvetica Neue", "Helvetica", "PingFang SC", "Hiragino Sans GB", "Arial", "sans-serif";
}

p {
	margin-bottom: 0px;
}

/*bootstrap中取消a标签点击出现下划线的效果*/
/*最后加的调整按钮点击的时候取消按钮周边的颜色*/
input:focus {
	outline: none;
}

button:focus {
	outline: none;
}

a {
	text-decoration: none;
	/*去除下换线*/
}

a:focus {
	text-decoration: none;
}

/*bootstrap中取消a标签点击出现下划线的效果*/
/*最后加的调整按钮点击的时候取消按钮周边的颜色*/
a:link {
	text-decoration: none;
	/* 指正常的未被访问过的链接*/
}

a:visited {
	text-decoration: none;
	/*指已经访问过的链接*/
}

a:hover {
	text-decoration: none;
	/*指鼠标在链接*/
}

a:active {
	text-decoration: none;
	/* 指正在点的链接*/
}

li {
	list-style: none;
	/*去除原点*/
}

ul {
	margin-bottom: 0px;
}

.clear {
	zoom: 1;
}

/*为了兼容性，因为ie6/7不能使用伪类，所以加上此行代码。*/

.clear:after {
	clear: both;
	content: '';
	display: block;
	width: 0;
	height: 0;
	visibility: hidden;
	overflow: hidden;
}

/* 全部的平均分配样式 */
.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex .flexitem {
	flex: 1;
	text-align: center;
}

.flex-start {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	box-sizing: border-box;
}

.flex-start .flex-startitem {
	flex: 0 0 25%;
}

.ellipsis {
	/* 文本设置 */
	display: box;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-inline-flexbox;
	display: -o-box;

	/*设置为弹性盒子*/
	-webkit-line-clamp: 1;
	/*最多显示5行*/
	overflow: hidden;
	/*超出隐藏*/
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	-moz-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	/*超出显示为省略号*/
	-webkit-box-orient: vertical;
	word-break: break-all;
	/*强制英文单词自动换行*/
}

.ellipsis2 {
	/* 文本设置 */
	display: box;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-inline-flexbox;
	display: -o-box;
	/*设置为弹性盒子*/
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-moz-line-clamp: 2;
	-o-line-clamp: 2;
	/*最多显示5行*/
	overflow: hidden;
	/*超出隐藏*/
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	-moz-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	/*超出显示为省略号*/
	-webkit-box-orient: vertical;
	word-break: break-all;
	/*强制英文单词自动换行*/
}

/* 悬浮弹图片放大 */
.hoverbig12 {
	transition: all 0.5s;
	cursor: pointer;
}

.hoverbig12:hover {
	transform: scale(1.2);
}

/* 悬浮弹出上去 */
.hovertop10 {
	transition: transform 0.3s;
	cursor: pointer;
}

.hovertop10:hover {
	transform: translateY(-10px);
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
}

.big {
	width: 1200px;
	margin: 0px auto;
	box-sizing: border-box;
}

/* 统一标题 写法 */
/* 导航  start */
.Navbg {
	display: block;
	width: 100%;
	background-color: #1A6840;
}

.Navbg .Nav {}

.Navbg .Nav ul {
	height: 92px;
	box-sizing: border-box;
}

.Navbg .Nav ul li {
	height: 100%;
	box-sizing: border-box;
	position: relative;
}

.Navbg .Nav ul li a {
	color: #FFFFFF;
	display: block;
	height: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 2;

}

.Navbg .Nav ul li:before {
	content: "";
	position: absolute;
	height: 0;
	width: 100%;
	left: 0;
	bottom: 0;
	transition-duration: 220ms;
	background: #FFFFFF;
	z-index: 1;
}

.Navbg .Nav ul li:nth-child(1):before {
	background: none !important;
}

.Navbg .Nav ul li:nth-child(1) {
	flex: 2;
}

.Navbg .Nav ul li a img {
	display: block;
	width: 145px;
	height: 49px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
}

.Navbg .Nav ul li a em {
	font-style: normal;
	font-family: "microsoft yahei";
	font-size: 12px;
	display: block;
	line-height: 24px;
}

.Navbg .Nav ul li a span {
	font-size: 24px;
	display: block;
	line-height: 36px;
	font-family: "microsoft yahei";
	padding-top: 16px;
	font-weight: 600;
}

.Navbg .Nav ul li.active {
	background-color: #FFFFFF;
}

.Navbg .Nav ul li.active a em {
	color: #1A6840;
}

.Navbg .Nav ul li.active a span {
	color: #1A6840;
}

/* 悬浮*/
.Navbg .Nav ul li:hover a {
	/* background-color: #FFFFFF; */
}

.Navbg .Nav ul li:hover:before {
	height: 100%;
}

.Navbg .Nav ul li:hover a em {
	color: #1A6840;
}

.Navbg .Nav ul li:hover a span {
	color: #1A6840;
}

.Navbg .Nav ul li:last-child:before {
	background: none !important;
}

/* 最后一个  */
.Navbg .Nav ul li {
	flex: 1.5;
}

.Navbg .Nav ul li p {
	display: inline-block;
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	font-weight: 540;
	padding: 5px 8px;
}

.Navbg .Nav ul li p em {
	font-style: italic;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.Navbg .Nav ul li p span {
	padding-bottom: 5px;
	font-style: italic;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 导航  end */

/* 统一标题 start */
.alltitle {
	margin: 0 auto;
	text-align: center;
	padding: 40px 0 30px;
}

.alltitle h2 {
	font-size: 42px;
	display: inline-block;
	background: url(../images/alltitle.png) no-repeat center;
	background-size: 100% 100%;
	padding: 8px 15px;
	font-weight: 600;
}

.alltitle h4 {
	font-size: 14px;
	font-weight: normal;
	margin: 5px auto 15px;
	letter-spacing: 2px;
}

.alltitle h5 {
	margin: 0 auto;
}

.alltitle h5 img {
	display: inline-block;
	width: 16px;
}

/* 统一标题 end */
/* 首页统一 联系方式 开始 */
.alltel {
	display: inline-block;
	font-style: italic;
	line-height: 30px;
	vertical-align: middle;
}

.alltel p:nth-child(1) {
	font-size: 22px;
	background-color: #1A6840;
	padding: 2px 5px;
	border-radius: 21px;
	z-index: 2;
	position: relative;
	left: 40px;
	display: inline-block;
}

.alltel p:nth-child(1) img {
	width: 28px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -2px;

}

.alltel p:nth-child(2) {
	font-size: 22px;
	display: inline-block;
	color: #1A6840;
	background-color: #fff;
	padding: 2px 10px 2px 40px;
	border-radius: 21px;
	z-index: 1;
	border: 1px solid #1A6840;
	line-height: 28px;
}

/* 首页统一 联系方式 结束 */


/* foot start */
.footer {
	display: block;
	background-color: #3F3F3F;
	padding: 30px 0;
}

.footer .foot {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.footer .foot .footitem {
	flex: 1;
	text-align: left;
	box-sizing: border-box;
}

.footer .foot .footitem:nth-child(5) {
	display: block;
	flex: 2;
}

.footer .foot .footitem h3 {}

.footer .foot .footitem h3 a {
	color: #1A6840;
	font-size: 22px;
	font-family: "microsoft yahei";
	border-bottom: 1px solid #1A6840;
	padding-bottom: 5px;
	margin-bottom: 5px;
	display: inline-block;
}

.footer .foot .footitem p {}

.footer .foot .footitem p a {
	font-size: 16px;
	color: #bebebe;
	font-family: "microsoft yahei";
	padding-bottom: 5px;
	display: inline-block;
	letter-spacing: 3px;
}

.footer .foot .footitem:nth-child(5) p {
	color: #bebebe;
	font-size: 14px;
	padding-bottom: 5px;
	display: block;
	letter-spacing: 2px;
	font-family: "microsoft yahei";
}

.footer .foot .footitem:nth-child(5) p:nth-child(1) {
	margin-top: 42px;
}

.footer .foot .footitem:nth-child(5) p:nth-child(2) {
	font-size: 20px;
	font-style: italic;
	font-weight: 600;
}

.footer .foot .footitem:nth-child(5) p:nth-child(3) {}

.footer .foot .footitem:nth-child(5) p:nth-child(4) {}

.footer .foot .footitem:nth-child(6) {
	text-align: center;
}

.footer .foot .footitem:nth-child(6) img {
	display: inline-block;
	width: 100px;
}

.footer .foot .footitem:nth-child(6) p {
	color: #FFFFFF;
	font-size: 16px;
	margin-top: 10px;
	font-family: "microsoft yahei";
}

.footer2 {
	display: block;
	background-color: #3F3F3F;
	padding: 10px 0;
	border-top: 1px solid #CECECE;
	
}

.footer2 .foot2 {
	
}

.footer2 .foot2 p:nth-child(1) {
	font-size: 24px;
	color: #B4B4B4;
}

.footer2 .foot2 p {
	font-family: "microsoft yahei";
}
.footer2 .foot2 a {
	font-family: "microsoft yahei";
}
/* foot end */
