@charset "utf-8";

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*全局样式*/
body {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
	font-size: 14px;
	color: #333;
}

div,
img,
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
p {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: #333;
}

i,
em {
	font-style: normal;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.pc {
	display: block;
}

.wap {
	display: none;
}
.ar_article  table{border: 1px solid #eee;min-width: 640px;margin-left:0!important;width: 100%;background: #fff}
.ar_article table tr th,.arc-con table tr td{border: 1px solid #eee!important;padding: 15px;text-align: center;}
.ar_article table tr:nth-child(2n){background: #EEEEEE}
/*去掉 input 默认边框*/
input {
	padding: 0;
	border: 0;
	font-family: 'Microsoft YaHei';
	font-size: 14px;
	color: #333;
	outline: none;
}

input[type="submit"] {
	background-color: transparent;
	cursor: pointer;
}

/*去掉 textarea 默认边框*/
textarea {
	padding: 0;
	border: 0;
	font-family: 'Microsoft YaHei';
	font-size: 14px;
	color: #333;
}

/*去掉 button 默认边框*/
button {
	border: 0;
	padding: 0;
	background-color: transparent;
	font-family: 'Microsoft YaHei';
	font-size: 14px;
	color: #333;
	cursor: pointer;
	outline: none;
}

/*清除浮动*/
.clearfix:after {
	content: '';
	display: table;
	clear: both;
}

.clearfix {
	*zoom: 1;
	/*IE6识别*/
}

/*解决chrome浏览器 input,textarea 获得焦点时会有一个边框的问题*/
input,
textarea {
	outline: none;
}

/*清除ios端 input,textarea 默认内阴影 默认圆角*/
input[type="text"],
input[type="password"],
input[type="submit"],
input[type="search"],
textarea {
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}

/*自定义 input,textarea 的placeholder文字样式*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #999;
}

/*滚动条*/
body *::-webkit-scrollbar {
	width: 2px;
	height: 2px;
	background: #eee;
	border-radius: 2px;
}

body *::-webkit-scrollbar-thumb {
	background: #00a0e9;
	border-radius: 2px;
}

/*常用过渡*/
.tran300 {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}

.tran400 {
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	transition: 0.4s;
}

.tran500 {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

/*常用缩放*/
.scale105:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.scale110:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.scaleimg:hover em {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.rotateY:hover {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.translateX:hover {
	-webkit-transform: translateX(-6px);
	-moz-transform: translateX(6px);
	-ms-transform: translateX(-6px);
	transform: translateX(-6px);
}

/*文字截断*/
.TXTovehid {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.TXTovehid-two {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.TXTovehid-three {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

em {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

/*常用浮动*/
.fl {
	float: left;
}

.fr {
	float: right;
}

/*常用定位*/
.top50 {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.left50 {
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.topleft50 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

/*网页限定宽度*/
.w1366 {
	max-width: 1366px;
	width: 96%;
	margin: 0 auto;
}

.w1420 {
	max-width: 1420px;
	width: 100%;
	margin: 0 auto;
}

/*header*/
.header {
	background-image: url(../images/header-bg.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	height: 110px;
}

.header .w1420 {
	height: 100%;
	overflow: hidden;
}

.header .left {
	position: relative;
	width: 82%;
}

.header .left .logo {
	position: relative;
	padding-left: 10px;
margin-top: 30px;
}

.header .left .yx {
	font-family: 'STXingkai';
	font-size: 30px;
	color: #052d56;
	left: 50%;
	margin-top: 37px;
}

.header .right {
	position: relative;
	width: 17%;
}

.header .right .enter {
	text-align: right;
}

.header .right .enter a {
	font-size: 16px;
	color: #686868;
	transform: 0.3s;
	-webkit-transform: 0.3s;
}

.header .right .enter a.en {
	position: relative;
	margin-left: 10px;
	padding-left: 18px;
}

.header .right .enter a.en::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 2px;
	height: 14px;
	background: #dedede;
}

.header .right .enter a:hover {
	color: #052d56;
}

.header .right .searchBox {
	position: relative;
	width: 179px;
	height: 41px;
	background: #eeeeee;
	border-radius: 40px;
	margin-top: 16px;
}

.header .right .searchBox .text {
	line-height: 40px;
	background: none;
	height: 100%;
	padding: 3px 20px;
	width: calc(100% - 28px);
	box-sizing: border-box;
}

.header .right .searchBox .btn {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background: url('./images/ss.png');
	border-radius: 40px;
	width: 28px;
	font-size: 20px;
	color: #fff;
}

/* 导航 */
.nav-box {
	position: relative;
	background-color: #052d56;
	z-index: 13;
	padding-left: 16px;
}

.nav-box .nav>li {
	position: relative;
	float: left;
	line-height: 50px;
	width: 9%;

}

.nav-box .nav>li>a {
	position: relative;
	text-align: center;
	display: block;
	font-size: 16px;
	color: #fff;

}

.nav-box .nav>li>a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	width: 0;
	height: 2px;
	margin-left: 70px;
	background: #fff;
	transition: 0.3s;
	-weblit-transition: 0.3s;
	opacity: 0;
}

.nav-box .nav>li:hover>a {
	width: 100%;
	background: #E1F5FE;
	color: #052d56;
}

.nav-box .nav-2nd {
	display: none;
	z-index: 2;
	position: absolute;
	top: 50px;
	width: 100%;
	min-width: 100px;
	background-color: #E1F5FE;
	/* transform: translateX(-30%); */
}

.nav-box .nav-2nd>li {}

.nav-box .nav-2nd>li>a {
	position: relative;
	display: block;
	padding: 10px;
	line-height: 14px;
	text-align: center;
	font-size: 14px;
	transition: 0.3s;
	-weblit-transition: 0.3s;
	color: #2e2e2e;
}

.nav-box .nav-2nd>li>a:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 3px;
	height: 0;
	background-color: #fff;
	transition: 0.3s;
	-weblit-transition: 0.3s;
}

.nav-box .nav>li:hover>a::before {
	width: 30px;
	opacity: 1;
}

.nav-box .nav>li.on>a::before {
	width: 30px;
	opacity: 1;
}

.nav-box .nav-2nd>li>a:hover {
	background: #052d56;
	color: #fff;
}

.nav-box .nav-2nd>li>a:hover:before {
	top: 0;
	height: 100%;
}

.menuBtn {
	width: 30px;
	height: 30px;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: 9;
	padding-top: 4px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	display: none;
}

.menuBtn b {
	display: block;
	height: 3px;
	background-color: #fff;
	margin-bottom: 5px;
	border-radius: 2px;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}

.menuBtn.open b {
	display: none;
	margin: 0;
	position: absolute;
	left: 0;
	top: 50%;
	width: 30px
}

.menuBtn.open b:first-child {
	display: block;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg)
}

.menuBtn.open b:last-child {
	display: block;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg)
}


/*footer*/
.footer {
	background-color: #095b9a;
	background-image: url(../images/footer.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
}


.footer .contain-box {
	width: 100%;
	padding: 8px 0;
	margin: 0 auto;
	border-bottom: solid 1px #395b8d;
}

.footer-contactUs{
	float: left;
}
.footer-link,
.footer-wx,
.footer-yx {
	float: left;
	margin-left: 2%;
}

.footer-contactUs {
	width: 23%;
}

.footer-contactUs h3,
.footer-link h3,
.footer-wx h3,
.footer-yx h3 {
	margin-bottom: 9px;
	padding-bottom: 6px;
	color: #fff;
	font-size: 15px;
	border-bottom: solid 1px #6680a7;
}

.footer-contactUs h3 img,
.footer-link h3 img,
.footer-wx h3 img,
.footer-yx h3 img {
	vertical-align: -2px;
	margin-right: 10px;
}

.footer-contactUs p {
	line-height: 25px;
	color: #cdd2f0;
	font-size: 14px;
}

.footer-link {
	width: 30%;
}

.footer-link-list {
	float: left;
	/* margin-left: 60px; */
}

.footer-link-list li {
	color: #cdd2f0;
}

.footer-link-list li a {
	display: block;
	width: 100%;
	height: 25px;
	line-height: 25px;
	color: #cdd2f0;
	font-size: 14px;
	overflow: hidden;
}

.footer-link-list li a:hover {
	color: #fff;
}

.footer-link-list li a i {
	width: 6px;
	height: 6px;
	display: inline-block;
	background-color: #cdd2f0;
	border-radius: 6px;
	margin-right: 8px;
	vertical-align: 2px;
}

.footer-wx {
	width: 9%;
}

.footer-wx .wx img {
	width: 96px;
	margin: 0 auto;
}

.footer-yx {
	width: 20%;
}

.footer-yx .yx-link-list {
	width: 100%;
	margin: 0 auto;
}

.footer-yx .yx-link-list li {
	float: left;
	padding: 0 18px;
}

.footer-yx .yx-link-list li a img {
	width: 80px;
}

.footer-yx .yx-link-list li a p {
	font-size: 16px;
	text-align: center;
	color: #fff;
}

.footer-yx .yx-link-list li a:hover p {
	color: #d81e06;

}
.footer-link .footer-link-list1 {
	margin-left: 0;
	width: 50%;
}

.copy {
	text-align: center;
	padding: 5px 0;
	border-top: 1px solid #577cbe;

}

.copy p {
	font-size: 16px;
	line-height: 28px;
	color: #dae7fb;
	opacity: 0.5;
}

/*返回顶部*/
.backtop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	cursor: pointer;
	display: none;
	width: 51px;
	height: 50px;
	-webkit-animation: more 2s infinite;
	animation: more 2s infinite;
}

@media screen and (max-width: 1200px) {
	.nav-box {
		display: none;
	}

	.header .right .searchBox {
		display: none;
	}

	.menu-btn {
		display: block;
	}

	.header {
		height: 110px;
	}

	.header .logo img {
		height: 64px;
	}

	.header .right .searchBox {
		margin-top: 6px;
	}
	.footer .contain-box {
		padding: 35px 0;
	}
	
	.footer-contactUs {
		width: 26%;
	}
	
	.footer-link {
		width: 31%;
		margin-left: 3%;
	}
	
	.footer-link-list {
		margin-left: 9px;
	}
	
	.footer-wx {
		width: 15%;
	}
	

}

@media screen and (max-width: 1040px) {
	.pc {
		display: none;
	}

	.wap {
		display: block;
	}

	.menuBtn {
		display: block;
	}

	.m-top {
		position: fixed;
		height: 80px;
		top: 0;
		left: 0;
		right: 0;
		background-color: #052d56;
		z-index: 9999;
	}

	.m-logo>a {
		display: block;
		padding-left: 15px;
		padding-top: 0px;
	}

	.m-logo img {
		display: block;
		transform: scale(0.8);
		transform-origin: left center;
	}

	.m-nav {
		position: fixed;
		left: 100%;
		right: 0;
		bottom: 0;
		top: 80px;
		background: #052d56;
		overflow-y: scroll;
	}

	.m-tab {
		font-size: 0;
		text-align: center;
	}

	.m-tab>a {
		display: inline-block;
		font-size: 12px;
		color: #fff;
		line-height: 12px;
		margin-left: 15px;
		border-left: 1px solid #fff;
		padding-left: 15px;
	}

	.m-tab>a:first-child {
		margin-left: 0;
		padding-left: 0;
		border: none;
	}

	.search {
		position: relative;
		width: 50%;
		height: 70px;
		margin: 20px auto;
	}

	.search input[type='text'] {
		width: 100%;
		font-size: 14px;
		line-height: 35px;
		color: #333333;
		border-radius: 12px;
		padding-left: 15px;
		padding-right: 20px;
	}

	.search input[type='image'] {
		position: absolute;
		top: 0;
		right: -20px;
		padding: 10px 0px;
	}

	.m-list>li {
		position: relative;
		line-height: 36px;
	}

	.m-list>li>a {
		display: block;
		font-size: 14px;
		color: #fff;
		padding: 0 20px;

	}

	.m-list>li>span,
	.m-list ul>li>span {
		position: absolute;
		right: 0;
		top: 0;
		width: 36px;
		height: 36px;
		background: url("../images/icon2.png");
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 15px auto;
	}

	.m-list>li>ul {
		overflow: hidden;
		display: none;
		padding: 0 20px;
	}

	.m-list ul>li {
		position: relative;
	}

	.m-list ul>li>a {
		font-size: 12px;
		color: #fff;
		line-height: 30px;
	}

	.m-list ul>li .m-lv3 {
		display: none;
		padding: 0 10px;
	}

	.m-lv3>li {
		font-size: 12px;
		line-height: 30px;
		color: #fff;
	}

	.footer .contain-box {
		padding: 5px 0;
	}

	.footer-contactUs {
		width: 40%;
		margin-left: 2%;
	}

	.footer-link {
		width: 32%;
		margin-left: 2%;
	}
	.footer-link .footer-link-list1 {
		width: 40%;
	}

	.footer-wx {
		width: 17%;
		margin-left: 2%;
	}


}

@media screen and (max-width: 768px) {
	.header {
		position: relative;
		height: 70px;
	}

	.header .logo img {
		height: 36px;
	}

	.menu-btn {
		top: 40%;
	}

	.header .right {
		position: absolute;
		right: 2%;
		top: 80%;
	}

	.header .right .enter a {
		font-size: 13px;
	}

	.header .right .enter a.en {
		margin-left: 0;
		padding-left: 8px;
	}

	.m-list ul>li {
		float: none;
		width: auto;
		text-align: left;
	}

	.m-list ul>li>a {
		display: block;
		padding-left: 15px;
	}


	.footer .contain-box {
		padding: 5px 0;
	}

	.footer-wx {
		width: 100%;
		margin-top: 5px;
		box-shadow: none;
		min-height: auto;
padding-left: 0;
	}
	.footer-yx {
		width: 100%;
		margin-top: 5px;
		box-shadow: none;
		min-height: auto;
padding-left: 0;
	}


	.footer-contactUs {
		width: 100%;
		margin-top: 5px;
		padding-left: 0;
	}

	.footer-link {
		width: 100%;
		margin-top: 5px;
		padding-left: 0;
	}

}

@media screen and (max-width: 590px) {
	.m-top {
		height: 60px;
	}

	.m-logo img {
		transform: scale(0.6);
		transform-origin: left top;
	}

	.m-logo>a {
		height: 60px;
		overflow: hidden;
		padding-top: 10px;
	}

	.m-nav {
		top: 60px;
		padding-top: 20px;
	}

	.m-tab>a {
		margin-left: 5px;
		padding-left: 5px;
		border: none;
		line-height: 1.3;
	}

	.search {
		margin-top: 10px;
	}


	.copy p {
		font-size: 12px;
		line-height: 22px;
	}
}