﻿@charset "utf-8";
/* CSS Document */

html,
body {
	height: auto;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-family: "arial", "微软雅黑", "Helvetica", "Helvetica Neue";
	color: #4b4b4b;
	line-height: 1.5;
	text-align: center;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

abbr,
acronym,
fieldset,
img {
	border: 0
}

input,
textarea {
	font-family: "arial", "微软雅黑", "Helvetica", "Helvetica Neue";
	color: #1b1c20;
	outline: none;
}

input:focus,
textarea:focus {
	outline: none;
}

ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dd,
dt {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #4b4b4b;
}

/** 鼠标移动伪类*/
a:hover {
	color: #004ea2;
	text-decoration: none;
}

a img {
	border: 0;
}

.content {
	width: 78.1%;
	margin: 0 auto;
	overflow: hidden;
}

/** 各项浏览器内核处理  */
input::-webkit-input-placeholder {
	color: #999;
}

input::-moz-placeholder {
	color: #999;
}

input:-ms-input-placeholder {
	color: #999;
}

textarea::-webkit-input-placeholder {
	color: #bbb;
}

textarea::-moz-placeholder {
	color: #bbb;
}

textarea:-ms-input-placeholder {
	color: #bbb;
}




.font72 {
	font-size: 72px;
}

.font52 {
	font-size: 52px;
}

.font48 {
	font-size: 48px;
}

.font38 {
	font-size: 38px;
}

.font36 {
	font-size: 36px;
}

.font30 {
	font-size: 30px;
}

.font26 {
	font-size: 26px;
}

.font24 {
	font-size: 24px;
}

.font22 {
	font-size: 22px;
}

.font20 {
	font-size: 20px;
}

.font18 {
	font-size: 18px;
}

.font16 {
	font-size: 16px;
}

.font14 {
	font-size: 14px;
}

.font12 {
	font-size: 12px;
}

/** 电脑尺寸下的效果 */
@media only screen and (max-width:1920px) {

	html,
	body {
		font-size: 0.833vw;
	}

	.font72 {
		font-size: 3.75vw;
	}

	.font52 {
		font-size: 2.7vw;
	}

	.font48 {
		font-size: 2.5vw;
	}

	.font38 {
		font-size: 2vw;
	}

	.font36 {
		font-size: 1.87vw;
	}

	.font30 {
		font-size: 1.56vw;
	}

	.font26 {
		font-size: 1.3vw;
	}

	.font24 {
		font-size: 1.25vw;
	}

	.font22 {
		font-size: 1.14vw;
	}

	.font20 {
		font-size: 1.04vw;
	}

	.font18 {
		font-size: 0.93vw;
	}

	.font16 {
		font-size: 0.833vw;
	}

	.font14 {
		font-size: 0.73vw;
	}
}

/** pc下部分尺寸固定字体大小  */
@media only screen and (max-width:1643px) {
	.font14 {
		font-size: 12px;
	}
}

@media only screen and (max-width:1440px) {
	.font16 {
		font-size: 12px;
	}
}

@media only screen and (max-width:1290px) {
	.font18 {
		font-size: 12px
	}
}

@media only screen and (max-width:1153px) {
	.font20 {
		font-size: 12px
	}
}

@media only screen and (max-width:960px) {
	.font24 {
		font-size: 12px
	}
}

@media only screen and (max-width:1500px) {
	.content {
		width: 78.1%;
	}
}

/** 平板尺寸 */
@media only screen and (max-width:828px) {

	html,
	body {
		font-size: 16px;
	}

}

/** 手机尺寸 */
@media only screen and (max-width:420px) {

	html,
	body {
		font-size: 14px;
	}
}

@media only screen and (max-width:370px) {

	html,
	body {
		font-size: 12px;
	}
}

@media only screen and (max-width:828px) {
	.font48 {
		font-size: 30px;
	}

	.font38 {
		font-size: 26px;
	}

	.font36 {
		font-size: 24px;
	}

	.font30 {
		font-size: 20px;
	}

	.font26 {
		font-size: 18px;
	}

	.font24 {
		font-size: 18px;
	}

	.font22 {
		font-size: 18px;
	}

	.font20 {
		font-size: 16px;
	}

	.font18 {
		font-size: 14px;
	}

	.font16 {
		font-size: 14px;
	}

	.font14 {
		font-size: 12px;
	}

}


/**
公共样式
1.顶部导航栏，直接复制dom结构使用即可

*/
/** 顶部导航栏100占满 */

.headerW {
	position: fixed;
	z-index: 500;
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	background-color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-box-shadow: 0 0.25em 0.4em rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0 0.25em 0.4em rgba(0, 0, 0, .1);
	box-shadow: 0 0.25em 0.4em rgba(0, 0, 0, .1);
}

.header {
	margin: 0 auto;
	height: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.header .content .logo{
	display: flex;
    align-items: center;
}

.header .content {
	height: 100%;
	overflow: visible;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}


@media only screen and (max-width:1200px) {
	.headerW {
		height: 80px;
	}

}




/* 导航栏右侧操作图标  */

.header .navbar_option_Shell {
	font-size: 1em;
	display: inline-block;
	width: 2.5em;
	height: 4.2em;
	display: none;
	justify-content: center;
	align-items: center;
}

.header .navbar_option_icon {
	display: inline-block;
	color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	width: 16px;
	height: 16px;
	cursor: pointer;
	position: relative;
	z-index: 0;
}

.header .navbar_option_icon i {
	position: relative;
	display: block;
	height: 3px;
	background: #333;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

/** 
SecondaryMenu 顶部导航栏的二级菜单样式， jq控制 
navbar_option_icon 小屏情况下的操作icon
*/
.SecondaryMenu .header .navbar_option_icon i,
.headerC .header .navbar_option_icon i {
	background-color: #0b173f;
}

.header .navbar_option_icon i:nth-child(1) {
	top: 0;
}

.header .navbar_option_icon i:nth-child(3) {
	bottom: 0;
}

.header .navbar_option_icon i:nth-child(2) {
	margin: 3px 0;
}

.header .navbar_option_icon.show i:nth-child(2) {
	opacity: 0;
}

.header .navbar_option_icon.show i:nth-child(1) {
	top: 6px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.header .navbar_option_icon.show i:nth-child(3) {
	bottom: 6px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


/* navbar_option_icon Show */
@media only screen and (max-width:828px) {
	.header .navbar_option_Shell {
		display: flex;
	}

	.header .navbar_option_icon .show::after {
		left: -30%;
		top: -30%;
		width: 160%;
		height: 160%;
	}
}

/* 平板 */
@media only screen and (max-width:828px) {
	.headerW {
		height: auto;
		transition: all 0s;
		height: 4.2em;
	}

	.header {
		width: 100%;
		height: 100%;
		justify-content: space-between;
	}

	.header .content {
		width: 95%;
		padding: 0 1.25rem;
	}

	.header .logo img {
		display: block;
		width: auto;
		height: 3em;
	}


}

/*头部导航*/
.right_navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar {
	height: 100%;
}

.navbar>ul {
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.navbar>ul>li {
	height: 100%;
	position: relative;
	z-index: 100;
	cursor: pointer;
	padding: 0 1.4vw;
}

@media only screen and (max-width:980px) {
	.navbar>ul>li {
		padding: 0 1em;
	}
}

@media only screen and (max-width:828px) {
	.navbar>ul>li {
		padding: 0 2vw;
	}
}

.navbar>ul>li:last-child {
	padding-right: 0;
}

.navbar>ul>li>a,
.navbar>ul>li>span {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: #222;
}

.navbar>ul>li>a .arrow {
	width: 1em;
	height: 1em;
	background: url(../images/arrow_4.png) center center no-repeat;
	background-size: contain;
	margin-left: 0.4em;
}

.navbar>ul>li>a:hover {
	color: #033870;
}

.navbar>ul>li.cur>a {
	color: #033870;
}

/*
整个选择器.navbar>ul:hover>li.cur a的含义是：
当鼠标悬停在.navbar的直接子ul元素上时，
选择该ul的直接子元素中带有cur类的li元素中的所有a元素，并为其应用样式规则
*/
.navbar>ul:hover>li.cur a {
	color: #004ea2;
}

.navbar>ul:hover>li .cur>a {
	color: #004ea2;
}

.navbar .next_navbar {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5em;
	width: 10em;
	text-align: center;
	background: rgba(255, 255, 255);
	font-size: 0.9em;
	-moz-box-shadow: 0 10px 10px rgba(0, 0, 0, .08);
	-webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .08);
	box-shadow: 0 10px 10px rgba(0, 0, 0, .08);
	background-color: #fff;
}

.navbar .next_navbar li {
	line-height: 3em;
	height: 3em;
	overflow: hidden;
	border-top: 1px solid #eee;
}

.navbar .next_navbar li a {
	color: #7d7d7d;
	padding: 0 0.5em;
	display: block;
	position: relative;
	z-index: 0;
}

.navbar .next_navbar li a:hover {
	color: #004ea2;
}

.phoneNavBar {
	display: none;
	position: fixed;
	z-index: 400;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

@media only screen and (min-width:828px) {
	.phoneNavBar {
		display: none !important;
	}
}

.phoneNavbarContent {
	overflow: hidden;
	position: relative;
	z-index: 0;
	height: 100vh;
	width: 100%;
	margin: 0 auto 0 0;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
}

.phoneNavbarContent .navM {
	flex: 1;
	display: block;
}

.navM {
	top: 0;
	margin-top: 109px;
	margin-bottom: 2em;
	overflow-y: auto;
	line-height: 1.5;
	text-align: left;
	overflow-y: auto;
	position: relative;
	z-index: 0;
	background-color: #242424
}

.navM .content {
	position: relative;
	z-index: 0;
	width: auto;
}

.navM .content>ul {
	font-size: 1em;
	width: 100%;
	margin: 0 auto;
	position: relative;
	margin-top: 1em;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.navM .content>ul>li {
	padding: 0 1em;
	flex: 1;
}

.navM .content>ul>li:first-child {
	flex: 2;
}

.navM .title {
	font-weight: bold;
	font-size: 1.33em;
}

.navM .title a {
	color: #fff;
}

.navM .title a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.navM a {
	color: #eaeaea;
}

.navM .content>ul>li li {
	line-height: 2;
}

.navM a:hover {
	color: #fff;
}

.navM li .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 1em;
}

.navM li .sub_nav_z {
	margin-top: 0.2em;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.navM li .sub_nav_z .sub_nav_s {
	width: 49%;
	margin-right: 1%;
}

.navM li .sub_nav_z .sub_nav_s .title {
	font-size: 1em;
}


@media only screen and (max-width:828px) {
	.right_navbar .navbar {
		display: none !important;
	}

	.navM {
		margin-top: 3.6em;
		padding: 0 0.6em 0;
		overflow-y: auto;
		font-size: 14px;
		line-height: 3.2;
		text-align: left;
		overflow-y: auto;
	}

	.navM .content>ul {
		display: block;
		width: 100%;
		font-size: 16px;
	}

	.navM .content>ul>li {
		padding: 0;
	}

	.navM li {
		text-transform: uppercase;
		border-top: 1px solid rgba(255, 255, 255, 0.5);
		position: relative;
		z-index: 0;
	}

	.navM li:first-child {
		border-top: 0;
	}

	.navM .title {
		font-size: 1em;
	}

	.navM ul ul {
		position: static;
		height: 0;
		overflow: hidden;
		transition: height 2s;
		font-size: 0.9em;
		line-height: 3.4em;
	}

	.navM ul ul li {
		border-top: 0;
	}

	.navM ul ul li a {
		text-indent: 1em;
		border-top: 0;
	}

	.navM a {
		display: block;
	}

	.navM li .title {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0;
	}

	.navM li .arrow {
		display: block;
		height: 1em;
		width: 1em;
		margin-right: 1em;
		background: url(../images/arr.svg) center center no-repeat;
		background-size: 1em auto;
	}

	.navM li dd {
		padding-left: 1.5em;
	}

	.navM li.show .arrow {
		transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
	}

	.navM ul .sub_nav_s .next_navbar {
		height: auto;
	}

	.navM li.show>.next_navbar {
		padding: 0.9em 0;
		height: auto;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
	}

	.navM li.show ul .sub_nav_p {
		padding-left: 2em;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
		text-align: center;
		line-height: 1.2;
		padding-bottom: 1.2em;
	}

	.navM li.show ul .sub_nav_p a {
		text-indent: 0;
	}

	.navM li.show ul .sub_nav_p li {
		padding-top: 1em;
		width: 32%;
		margin-right: 2%;
	}

	.navM li.show ul .sub_nav_p li:nth-child(2n) {
		margin-right: 0;
	}

	.navM li.show ul .sub_nav_p .pic {
		display: block;
		position: relative;
		z-index: 0;
		padding-top: 70%;
		width: 70%;
		margin: 0 auto 0.5em;
	}

	.navM li.show ul .sub_nav_p .pic img {
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		object-fit: contain;
	}
}



/*内页banner*/
#ins_banner {
	position: relative;
	z-index: 0;
}

#ins_banner .swiper-slide {
	position: relative;
	z-index: 0;
}

#ins_banner .pic {
	position: relative;
	z-index: 0;
	padding-top: 512px;
}

@media only screen and (max-width:1920px) {
	#ins_banner .pic {
		padding-top: 23%;
	}
}

#ins_banner.ins_banner_s .pic {
	padding-top: 30.5%;
}

#ins_banner .pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#ins_banner .txtb {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 2.4vw;
	color: #fff;
	bottom: 2.4vw;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

#ins_banner .txtb .txt {
	text-align: left;
}

#ins_banner .txtb .txt .name {
	font-weight: bold;
	-moz-text-shadow: 0 0.04em 0.04em rgba(0, 0, 0, .4);
	-webkit-text-shadow: 0 0.04em 0.04em rgba(0, 0, 0, .4);
	text-shadow: 0 0.04em 0.04em rgba(0, 0, 0, .4);
}

#ins_banner .txtb .txt .intro {
	max-width: 28em;
	margin: 0.3em auto 0;
}

#ins_banner .txtb .txt {
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	opacity: 1.0;
	transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}

#ins_banner .btnNext,
#ins_banner .btnPrev {
	cursor: pointer;
	display: inline-block;
	position: absolute;
	right: 5.2%;
	top: 50%;
	z-index: 10;
	width: 2.8em;
	height: 2.8em;
	margin-top: -1.4em;
	border: 1px solid #fff;
	background: #fff url(../images/arr_gray.png) center center no-repeat;
	background-size: 26.6% auto;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

#ins_banner .btnPrev {
	left: 5.2%;
	right: auto;
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

#ins_banner .btnNext:hover,
#ins_banner .btnPrev:hover {
	border: 1px solid #fff;
}

#ins_banner .btnPrev::before,
#ins_banner .btnNext::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/arr_gray.png) center center no-repeat;
	background-size: 26.6% auto;
}

#ins_banner .btnPrev:hover::before,
#ins_banner .btnNext:hover::before {
	background-image: url(../images/arr_white.png);
}

#ins_banner .btnNext::after,
#ins_banner .btnPrev::after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#068d39+0,058d7d+100 */
	background: linear-gradient(to right, rgba(6, 141, 57, 1) 0%, rgba(5, 141, 125, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

#ins_banner .btnNext:hover::after,
#ins_banner .btnPrev:hover::after {
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	opacity: 1.0;
}

#ins_banner .swiper-button-disabled,
#ins_banner .swiper-button-disabled:hover {
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

#ins_banner .swiper-button-disabled:hover::before,
#ins_banner .swiper-button-disabled:hover::before {
	background-image: url(../images/arr_gray.png);
}

#ins_banner .swiper-button-disabled:hover::after,
#ins_banner .swiper-button-disabled:hover::after {
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}


/*手机二级导航*/
.cateNav {
	display: none;
	position: relative;
	z-index: 3;
	background-color: #fff;
	line-height: 4.2em;
	padding: 1em;
	-moz-box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, .05);
	-webkit-box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, .05);
	box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, .05);
	color: #444;
}

.cateNav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: left;
	width: 100%;
}

.cateNav li {
	width: 21%;
	text-align: left;
	float: left;
}

.cateNav li:first-child {
	margin-left: 0;
}

.cateNav li.cur {
	position: relative;
	z-index: 0;
	font-weight: bold
}

.cateNav li.cur {
	font-weight: bold;
	color: #004ea2;
}

.cateNav li.cur a {
	display: block;
	cursor: pointer;
	color: #004ea2;
}

.cateNav li.cur::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 20%;
	height: 2px;
	content: "";
	display: block;
	background-color: #004ea2;
}

.cateNav li a {
	color: #444;
}

.cateNav li a:hover {
	color: #004ea2;
}

@media only screen and (max-width:828px) {

	.cateNav {
		display: block;
		line-height: 2.4em;
	}

	.cateNav li {
		margin: 0 0.8em;
	}
}





@media only screen and (max-width:828px) {
	#ins_banner .content {
		width: 100%;
		margin: 0;
	}

	#ins_banner .pic {
		position: relative;
		z-index: 0;
		padding-top: 40%;
	}

	#ins_banner.ins_banner_s .pic {
		padding-top: 45%;
	}

	#ins_banner .txtb {
		left: 2em;
		right: 2em;
	}

	#ins_banner .txtb .txt {
		width: 100%;
	}
}



.posiBox {
	background-color: #f8f8f8;
}

.posiBox .content {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}

.posiBox .subNav {
	line-height: 4.4em;
}

.posiBox .subNav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.posiBox .subNav li {
	margin: 0 4.5em 0 0;
}

.posiBox .subNav a {
	display: block;
	color: #333;
}

.posiBox .subNav a:hover {
	color: #0099cc;
	text-decoration: none;
}

.posiBox .subNav li.cur {
	position: relative;
	z-index: 0;
}

.posiBox .subNav li.cur a {
	font-weight: bold;
}

.posiBox .subNav li.cur::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background-color: #0099cc;
}

@media only screen and (max-width:1920px) {
	.posiBox .subNav li {
		margin: 0 4.1vw 0 0;
	}
}

.position {
	background-color: #f8f8f8;
	text-transform: uppercase;
	text-align: left;
	color: #666;
	padding: 1em 0 1em;
	line-height: 2em;
}

.position .content {
	position: relative;
	z-index: 0;
}

.position .icon {
	margin-right: 0.5em;
	width: 1.14em;
	height: 1.14em;
	background: url(../images/home_blue.png) center center no-repeat;
	background-size: contain;
}

.position a {
	display: inline-block;
	color: #555;
}

.position a:hover {
	color: #007437;
}

.position span {
	display: inline-block;
}

.position .arrow {
	display: inline-block;
	margin: 0 0.5em;
	font-family: "宋体";
}

@media only screen and (max-width:828px) {
	.posiBox .content {
		display: block;
	}

	.posiBox .subNav {
		border-top: 1px solid #ccc;
		margin-top: 0;
	}

	.posiBox .subNav li {
		margin: 0 1.5em 0 0;
	}
}

.iTit .name {
	color: #0b173f;
	font-weight: bold;
}

.iTit .intro {
	margin-top: 0.1em;
	color: #a5a7b0;
}

.contactBox {
	background: #f2f2f2;
	color: #666870;
	padding: 4.4em 0 3.7em;
	text-align: left;
}

.contactBox .content {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.contactBox .conL {
	width: 67.8%;
	margin: 0 auto 0 0;
	border-right: 1px solid #d4d5d9;
}

.contactBox .conR {
	flex: 1;
	margin-left: 6%;
}

.contactBox .conL .tit {
	color: #0b173f;
	font-weight: bold;
}

.contactBox .form {
	margin-right: 8.3%;
	color: #bebebe;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.contactBox .form form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.contactBox .form dl {
	margin-top: 2em;
	width: 30%;
	border-bottom: 1px solid #d4d5d9;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.contactBox .form dl dt {
	font-weight: normal;
}

.contactBox .form dl dd {
	flex: 1;
}

.contactBox .form dl.dl2 {
	width: 100%;
}

.contactBox .form dl.dl3 {
	width: 100%;
	display: block;
}

.contactBox .form dl .iW {
	padding: 0 1em;
}

.contactBox .form dl .input {
	width: 100%;
	border: 0;
	outline-width: 0;
	line-height: 2.5em;
	height: 2.5em;
	font-size: 1em;
	background-color: transparent;
}

.contactBox .form dl .tW {
	padding: 0.8em 0;
}

.contactBox .form dl .textarea {
	display: block;
	width: 100%;
	border: 0;
	outline-width: 0;
	line-height: 1.2em;
	height: 3.6em;
	font-size: 1em;
	background-color: transparent;
}

.contactBox textarea::-webkit-input-placeholder,
.contactBox input::-webkit-input-placeholder {
	color: #999;
}

.contactBox textarea::-moz-placeholder,
.contactBox input::-moz-placeholder {
	color: #999;
}

.contactBox textarea:-ms-input-placeholder,
.contactBox input:-ms-input-placeholder {
	color: #999;
}

.contactBox .checkBoxZ {
	margin-top: 1.3em;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	color: #666880;
}

.contactBox .checkBoxZ .item {
	cursor: pointer;
	margin-top: 1em;
	width: 18%;
	margin-right: 2%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.contactBox .checkBoxZ .item label {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.contactBox .checkBoxZ .item::before {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	border: 1px solid #d6d6da;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.contactBox .checkBoxZ .item.checked:before {
	background-color: #a2c449;
}

.contactBox .checkBoxZ .item .checkbox {
	position: absolute;
	left: -100px;
	display: flex;
	width: 1em;
	height: 1em;
}

.contactBox .checkBoxZ .item span {
	margin-left: 0.2em;
	display: block;
}

.contactBox .btnW {
	margin-top: 2em;
}

.contactBox .btn {
	padding: 0 2.3em 0 6em;
}

.contactBox .btn::after {
	margin-left: 4em;
}

.contactBox .conR .tit {
	margin-top: 0.8em;
	font-weight: bold;
	color: #0b173f;
}

.contactBox .conR .list {
	margin-top: 1em;
	color: #666870;
	line-height: 2.8;
}

.contactBox .conR .list li {
	height: 2.8em;
	position: relative;
	z-index: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	padding-left: 1em;
}

.contactBox .conR .list li::before {
	position: absolute;
	left: 0;
	top: 50%;
	content: "";
	display: block;
	width: 0.4em;
	height: 0.4em;
	margin-top: -0.2em;
	background-color: #666870;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.contactBox .conR .list a {
	color: #666870;
}

.contactBox .conR .list a:hover {
	color: #abcf4d;
}

@media only screen and (max-width:828px) {
	.contactBox .content {
		display: block;
	}

	.contactBox .conL {
		width: 100%;
	}

	.contactBox .form dl {
		margin-top: 2em;
		width: 100%;
	}

	.contactBox .conR {
		margin-top: 3em;
		flex: 1;
		margin-left: auto;
	}

	.contactBox .checkBoxZ .item {
		width: 38%;
		margin-right: 0;
	}

	.contactBox .checkBoxZ .item:nth-child(2n+1) {
		width: 58%;
		margin-right: 2%;
	}
}

/*底部*/
.footer {
	position: relative;
	z-index: 0;
	color: #fff;
	text-align: left;
	width: 100%;
	background: #5a5a5a;
}

.footerTop {
	padding-bottom: 2.7em;
}

.footerTop .content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer .fInfo {
	margin-top: 4.2em;
	padding-left: 20%;
}

.footer .fInfo .shareBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

.footer .fInfo .shareBox a {
	display: inline-block;
	margin-right: 1.3em;
}

.footer .fInfo .shareBox a img {
	display: block;
	width: 1.8em;
	height: 1.8em;
	object-fit: contain;
}

/* .footer .fInfo .t1 {
	font-weight: bold;
} */

.footer .fInfo .t3 {
	color: #004ea2;
	font-size: 24px;
	line-height: 36px;
	margin-top: 0.1em;
}

.footer .fInfo .t2 {
	margin-top: 0.6em;
}

.footer .fInfo .t2 span {
	margin-left: 10px;
}

.footer .fInfo .t4 dl {
	float: left;
	margin-top: 1.2em;
}

.footer .fInfo .t4 .ewmzi {
	margin-top: 1.8em;
	margin-left: 10px;
}

.footer .fInfo .t4 .ewmzi3 img {
	width: 86px;
	height: 86px;
}

.footer .fnav {
	width: 70%;
	margin-top: 3.4em;
	line-height: 2.4;
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer .fInfo{
	width: 30%;
	margin-top: 3.4em;
	line-height: 2.4;
}
.footer .fnav dl {
	margin-right: 5%;
	flex: 1;
}

.footer .fnav dl:last-child {
	margin-right: 0;
}

.footer .fnav dl dt {
	font-size: 18px;
	color: #fff;
	border-bottom: 1px solid #bcbcbc;

}
.footer .fnav dl dt>a {
	color: #fff;
}
.footer .fInfo .t1 {
	width: 100px;
	font-size: 18px;
	color: #bcbcbc;
	border-bottom: 1px solid #bcbcbc;
	margin-bottom: 25px;

}
.footer .fInfo .t4{
	width: 100px;
}


.footer .fnav dl dd {
	margin-top: 0.3em;
	font-size: 0.93em;
}

.footer a {
	color: #bcbcbc;
}

.footer a:hover {
	color: #fff;
}

/* .footer .footerBot { border-top:1px solid rgba(255,255,255,0.2);
	padding: 1.1em 0 1.1em; text-align: center;} */
.footer .footerBot .content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer .footerBot .copyRight {
	text-align: Left;
	width: 48%;
	color: #bcbcbc;
}

.footer .fLogo {
	width: 25%;
	text-align: left;
}

.footer .fLogo img {
	height: 44px;
}

.footer .flink {
	width: 31%;
	text-align: right;
	color: rgba(255, 255, 255);
}

.footer .flink a {
	display: inline-block;
	margin-left: 1.8em;
	color: rgba(255, 255, 255);
}

.footer .flink a:hover {
	text-decoration: underline;
}

@media only screen and (max-width:828px) {
	.footer .fInfo {
		margin-top: 3.2em;
	}

	.footerTop .content {
		display: block;
		text-align: center;
	}

	.footerTop {
		padding-bottom: 2em;
	}

	.footer .fInfo {
		width: 100%;
	}

	.footer .fInfo .t4 dl {
		float: inherit;
		text-align: center;
	}

	.footer .fInfo .t4 .ewmzi {
		margin-top: 0.2em;
	}

	.footer .fInfo .shareBox {
		justify-content: center;
	}

	.footer .footerBot .content {
		display: block;
		text-align: center;
	}

	.footer .fnav {
		display: none;
	}

	.footer .fLogo {
		width: 100%;
		text-align: center;
	}

	.footer .footerBot .copyRight {
		text-align: center;
		width: 100%;
		margin: 1.5em 0 0;
	}

	.footer .flink {
		width: 100%;
		text-align: center;
		margin-top: 2em;
	}
}

.page {
	margin: 1em 0 2em 0;
	text-align: center;
	color: #646b97;
	line-height: 2.77;
}

@media only screen and (max-width:828px) {
	.page {
		font-size: 12px;
	}
}

.page a,
.page .cur,
.page .dot {
	display: inline-block;
	color: #666;
	padding: 0.1em 0 0;
	width: 2.87em;
	margin: 0.4em 0.25em 0;
	background-color: #e6e6e6;
	border-radius: 10px;
}

.page a:hover {
	color: #033870;
}

.page .cur {
	background-color: #033870;
	color: #fff;
	border-radius: 10px
}

.page .prev {
	font-weight: bold;
	color: #cdcdcd;
	display: inline-block;
	font-family: "宋体";
}

.page .next {
	font-weight: bold;
	color: #cdcdcd;
	display: inline-block;
	font-family: "宋体";
}

.btn {
	display: inline-block;
	cursor: pointer;
	color: #fff;
	line-height: 2.75;
	padding: 0 1.5em;
	text-transform: uppercase;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	border: 1px solid #033870;
	background-color: #033870;
	-moz-border-radius: 1.5em;
	-webkit-border-radius: 1.5em;
	border-radius: 1.5em;
}

.btn:hover {
	background-color: #fff;
	color: #033870;
}

.btnGray {
	display: inline-block;
	cursor: pointer;
	color: #fff;
	line-height: 1.2;
	padding: 1.3em 2em;
	margin-right: 0.7em;
	font-weight: bold;
	text-align: center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	background-color: rgba(255, 255, 255, 0.2);
	-moz-border-radius: 3em;
	-webkit-border-radius: 3em;
	border-radius: 3em;
}

.btnGray:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.btnGray2 {
	display: inline-block;
	cursor: pointer;
	color: #033870;
	line-height: 1.2;
	padding: 0.9em 2.7em;
	border: 1px solid #d2d2d2;
	background-color: #fff;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	background-color: rgba(255, 255, 255, 0.2);
	-moz-border-radius: 3em;
	-webkit-border-radius: 3em;
	border-radius: 3em;
}

.btnGray2:hover {
	background-color: #033870;
	border: 1px solid #033870;
	color: #fff;
}

.btnGray3 {
	display: inline-block;
	cursor: pointer;
	color: #222;
	line-height: 1.2;
	padding: 0.9em;
	width: 13em;
	border: 1px solid #d2d2d2;
	background-color: #fff;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	background-color: rgba(255, 255, 255, 0.2);
	-moz-border-radius: 3em;
	-webkit-border-radius: 3em;
	border-radius: 3em;
}

.btnGray3:hover {
	background-color: #033870;
	border: 1px solid #033870;
	color: #fff;
}

.btnBlue {
	display: inline-block;
	cursor: pointer;
	color: #fff;
	line-height: 1.2;
	padding: 0.9em;
	width: 13em;
	background-color: #033870;
	border: 1px solid #033870;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-border-radius: 3em;
	-webkit-border-radius: 3em;
	border-radius: 3em;
}

.btnBlue:hover {
	background-color: #033870;
	border: 1px solid #033870;
	color: #fff;
}

.pageTurn {
	margin-top: 2em;
	text-align: left;
	line-height: 2em;
}

.pageTurn ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.pageTurn li {
	width: 48%;
	height: 2em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.pageTurn li:nth-child(2n) {
	text-align: right;
}

@media only screen and (max-width:828px) {
	.pageTurn li {
		width: 100%;
	}

	.pageTurn li:nth-child(2n) {
		text-align: left;
	}
}




.aboutBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fcfcfc+0,eeeeee+100 */
	background: linear-gradient(to bottom, rgba(252, 252, 252, 1) 0%, rgba(238, 238, 238, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.aboutBox .conL {
	width: 50%;
	text-align: left;
}

.aboutBox .conL .txtb {
	width: 69%;
	margin: 2em auto 2em 9.1%;
}

.aboutBox .conL .name {
	text-transform: uppercase;
	color: #333;
	font-weight: bold;
	line-height: 1.2;
}

.aboutBox .conL .list {
	color: #333;
	padding-top: 2em;
	line-height: 2.1;
}

.aboutBox .conL .list dl {
	margin-top: 1.9em;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}


.aboutBox .conL .list dl dt img {
	width: 4.7em;
	height: 4.7em;
	object-fit: contain;
}

.aboutBox .conL .list dl dd {
	flex: 1;
	margin-left: 1.6em;
}

.aboutBox .conL .list dl dd .name {
	margin-top: 0.6em;
	font-weight: normal;
	font-size: 1.7em;
}

.aboutBox .conL .list dl dd .name a {
	color: #333;
	display: inline-block;
	padding-right: 1.3em;
}

.aboutBox .conL .list dl dd .name a:hover {
	color: #333;
	background: url(../images/arrow_3.png) right 0.3em no-repeat;
	background-size: 0.8em auto;
}

.aboutBox .conL .list dl dd .intro {
	margin-top: 0.9em;
	color: #666;
}

.aboutBox .conR {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.aboutBox .conR .pic {
	width: 100%;
	position: relative;
	z-index: 0;
	padding-top: 70.8%;
}

.aboutBox .conR .pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media only screen and (max-width:828px) {
	.aboutBox {
		display: block;
	}

	.aboutBox .conL {
		width: 100%;
	}

	.aboutBox .conR {
		width: 100%;
		margin-top: 2em;
	}

	.aboutBox .conL .txtb {
		width: 80%;
		margin: 2em auto;
	}
}

/*下拉选择框*/
.selBoxW {
	margin-top: 1.9em;
	text-align: left;
	color: #444;
}

.selBox {
	position: relative;
	display: inline-block;
	z-index: 10;
	width: 26.7em;
	height: 3em;
	text-align: left;
	margin-right: 0.75em;
}

.selBox.show {
	z-index: 11;
}

.selBox .selBtn {
	position: relative;
	z-index: 0;
	cursor: pointer;
	color: #444;
	padding: 0 2em 0 0.9em;
	line-height: 3em;
	background-color: #fff;
	border: 1px solid #e5e5e5;
}

.selBox.show .selBtn {
	border: 1px solid #033870;
}

.selBox .selBtn .txt {
	display: inline-block;
	vertical-align: middle;
}

.selBox .selBtn .arr {
	position: absolute;
	right: 1.3em;
	top: 50%;
	margin-top: -3px;
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 6px;
	background: url(../images/arrow_5.png) center center no-repeat;
	background-size: contain;
}

.selBox.show .selBtn .arr {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	/* IE 9 */
	-webkit-transform: rotate(180deg);
	/* Safari and Chrome */
}

.selBox .dropDown {
	display: none;
	position: absolute;
	right: 0;
	left: 0;
	top: 3.7em;
	width: auto;
	border: 1px solid #e5e5e5;
	background-color: #fff;
	line-height: 3em;
	-moz-box-shadow: 0 8px 8px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, .1);
	box-shadow: 0 8px 8px rgba(0, 0, 0, .1);
	max-height: 18.9em;
	overflow-y: auto;
}

.selBox .dropDown li {
	cursor: pointer;
	padding: 1px 1.2em 0;
	color: #444;
	border-bottom: 1px solid #eaeaea;
}

.selBox .dropDown li:last-child {
	border-bottom: 0;
}

.selBox .dropDown li a {
	color: #444;
}

.selBox .dropDown li:hover {
	background-color: #033870;
	color: #fff;
}




.videoBox {
	background-color: #000;
}

.videoBox video {
	display: block;
	width: 100%;
	height: auto;
}

.videoBox img {
	display: block;
	width: 100%;
	height: auto;
}

.videoTxt {
	position: absolute;
	left: 0;
	bottom: -2.1em;
	margin-top: 0.6em;
	line-height: 1.4em;
	height: 1.4em;
	text-align: left;
	overflow: hidden;
}

.videoBox {
	position: relative;
	z-index: 0;
	overflow: hidden;
	-moz-border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	border-radius: 0.5em;
}

.videoBox video {
	width: 100%;
	height: auto;
}

.videoBox .btnPlay {
	cursor: pointer;
	z-index: 100;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -3.5em;
	margin-top: -3.5em;
	width: 7em;
	padding-top: 7em;
	background: url(../images/play.png) center center no-repeat;
	background-size: contain;
}

.videoBox.videoPlay .btnPlay {
	display: none;
	background-image: url(../images/stop.png)
}

.videoBox .picMask {
	z-index: 80;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background: center center no-repeat;
	background-size: cover;
}

.videoBox.videoPlay:hover .btnPlay {
	display: block;
}

.videoBox.videoPlay .picMask {
	display: none;
}

@media only screen and (max-width:828px) {
	.videoBox .btnPlay {
		margin-left: -2em;
		margin-top: -2em;
		width: 4em;
		padding-top: 4em;
	}
}

.floatTel {
	cursor: pointer;
	display: block;
	position: fixed;
	z-index: 1000;
	right: 0;
	bottom: 18vh;
	width: 6.6em;
	height: 6.6em;
	background: #fff url(../images/tel_2.png) center center no-repeat;
	background-size: 52.5% auto;
	-moz-border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	border-radius: 0.5em;
	-moz-box-shadow: 0 0 1em rgba(0, 0, 0, .18);
	-webkit-box-shadow: 0 0 1em rgba(0, 0, 0, .18);
	box-shadow: 0 0 1em rgba(0, 0, 0, .18);
}

#where {
	width: 100%;
	height: 3.75rem;
	background-color: #0089d3;
	color: white;
	position: relative;
}

#where .content {
	width: 78.1%;
	height: 3.75rem;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

#where .content .SubNavList {
	height: 100%;
	display: flex;
	width: max-content;
	align-items: end;
}

#where .content .SubNavList div {
	padding: 0 1.5em;
	height: 3.125rem;
	line-height: 3.125rem;
	cursor: pointer;
	text-align: center;

}

#where .content .SubNavList div:hover {
	background-color: white;
	color: #004ea2;
	border-radius: 0.575rem 0.575rem 0 0;
	-webkit-border-radius: 0.575rem 0.575rem 0 0;
	-moz-border-radius: 0.575rem 0.575rem 0 0;
	-ms-border-radius: 0.575rem 0.575rem 0 0;
	-o-border-radius: 0.575rem 0.575rem 0 0;
}
#where .content .SubNavList div:hover >a {
	color: #004ea2;
}

#where .rightTip {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 16.375rem;
	line-height: 3.75rem;
	background-color: #054b93;
}

#where .rightTip:hover >a{
	color: #fff;
}

#where .content .rightTip .ICON_famliy {
	width: 1.375rem;
	height: 1.375rem;
	display: inline-block;
	background-repeat: no-repeat;
	line-height: 3.75rem;
	position: relative;
	top: .25rem;
	margin-right: 1.45rem;
	background-size: 1.375rem 1.375rem;
	background-image: url(../images/home.png);
}

@media screen and (max-width:820px) {
	#where .rightTip {
		width: 11.375rem;
	}
}

@media screen and (max-width:640px) {
	#where .content {
		width: 78.1%;
		margin: 0 auto;
	}

	#where .rightTip {
		display: none;
	}
}

@media screen and (max-width:550px) {

	#where .content .SubNavList div {
		padding: 0 0.5em;
		height: 3.125rem;
		line-height: 3.125rem;
		cursor: pointer;
		text-align: center;
	}

	#where .content {
		width: 88.1%;
		margin: 0 auto;
	}

}




