.yx_logo {
	float: left;
	left: 8%;
	position: relative;
}


/*导航*/
/*响应式导航*/
/*====================导航*********/
.header {
	width: 100%;
	height: 66px;
	line-height: 66px;
	background-color: #ffffff;
	position: fixed;
	z-index: 999;
	-webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, .05);
	box-shadow: 0px 10px 20px rgba(0, 0, 0, .05);
}

/*右侧*/
.header .nav {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height: 80px;
	float: right;

}

.header .navbar_nav li {
	float: left;
	position: relative;
	display: table-cell;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: 20px;
	margin-right: 20px;
}

/* .header .navbar_nav li+li {
	
} */

.header .navbar_nav li:after {
	content: "";
	width: 0;
	height: 2px;
	background-color: #1890ff;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease 0s;
}

.header .navbar_nav li:hover:after {
	width: 100%;
}

.header .navbar_nav li a {
	text-decoration: none;
	height: 100%;
	line-height: 66px;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #000000;
	font-size: 18px;
}

.header .navbar_nav li:hover a {
	color: #1890ff;
}

.header .navbar_nav li.dropdown {
	display: inherit;
	position: relative;

}

.header .navbar_nav li.dropdown .jt {
	width: 20px;
	height: 20px;
	background: url(i/top.png) no-repeat;
	background-size: 100% 100%;
	display: block;
}

.header .navbar_nav li.dropdown .dropdown_menu {
	display: none;
	border-radius: 8px 8px;
	position: absolute;
	top: 66px;
	width: 100%;
	background: #fff;
	box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
	width: 120%;
	left: -10%;
	overflow: hidden;
}

.header .navbar_nav li.dropdown .dropdown_menu a {
	font-size: 16px;
	color: #666;
	padding: 0 10px;
	line-height: 50px;
	text-align: center;
	background: #fff;
	margin-bottom: 2px;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu {
	display: block;
	background: #f3f3f3;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a {
	color: #666;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
	color: #fff;
	background-color: #1890ff;
}

/*白色背景的头部*/
.header.on {
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .05);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .05);
	transition: background-color 0.3s, color 0.3s;
}

.header.on .navbar_nav li a {
	color: #000000;
}

.header.on .navbar_nav li:hover a {
	color: #1890ff;
}

#navToggle {
	display: none;
}

.header.navFix {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}

.m_nav {
	position: fixed;
	top: 66px;
	box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
	width: 100%;
	height: 100%;
	background: #fff;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	z-index: 1000;
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	overflow-y: auto;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transform: translateX(100%);
}

.m_nav.open {
	transform: translateX(0);
}

.m_nav .top {
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}

.m_nav .top .closed {
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float: right;
	cursor: pointer;
}

.m_nav .logo {
	width: 100%;
	margin: 0 auto;
}

.m_nav .logo img {
	height: 50px;
	display: block;
	margin: 30px auto;
}

.m_nav .ul {
	margin-top: 10px;
}

.m_nav .ul li {
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	opacity: 0;
}

.m_nav.open .ul li {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.m_nav .ul li:nth-child(1) {
	-webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
	-webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
	-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
	-webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(7) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(8) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(9) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(10) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 2.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(11) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 2.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(12) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 2.4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(13) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 2.6s cubic-bezier(.77, 0, .175, 1) 0ms;
}


.m_nav .ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
}

.m_nav .ul li .dropdown_menu {
	display: none;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
	display: block;
}

.m_nav .ul li .dropdown_menu a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}

.m_nav .ul li .dropdown_menu a:last-child {
	border: none;
}

@media screen and (min-width: 1401px) and (max-width: 1545px) {
	.header .navbar_nav li{
		margin-left: 10px;
		margin-right: 10px;
	}
	
}

@media screen and (max-width: 1400px) {
	.header {
		padding: 0px;
		height: 66px;
	}

	.header #navToggle {
		height: 100%;
		padding: 12px 15px;
		margin-right: 10px;
		display: inline-block;
		float: right;
	}

	.header #navToggle span {
		position: relative;
		width: 25px;
		height: 2px;
		margin-top: 19px;
	}

	.header #navToggle span:before,
	.header #navToggle span:after {
		content: '';
		position: relative;
		width: 100%;
		height: 2px;
		left: 0;
	}

	.header #navToggle span,
	.header #navToggle span:before,
	.header #navToggle span:after {
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		display: block;
		background: #1890ff;
	}

	.header #navToggle span:before {
		top: 8px;
	}

	.header #navToggle span:after {
		bottom: 10px;
	}

	.header #navToggle.open span:before {
		top: 10px;
		-webkit-transform: translateY(-11px) rotate(-45deg);
		-moz-transform: translateY(-11px) rotate(-45deg);
		-ms-transform: translateY(-11px) rotate(-45deg);
		-o-transform: translateY(-11px) rotate(-45deg);
		transform: translateY(-11px) rotate(-45deg);
	}

	.header #navToggle.open span:after {
		bottom: 12px;
		-webkit-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-o-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}

	.header #navToggle.open span {
		background: none;
	}

	.header #navToggle.open span:before,
	.header #navToggle.open span:after {
		background: #ffffff;
	}

	.header .nav {
		display: none;
	}

	.zt_banner img {
		width: 100%;
		position: inherit;
		margin-bottom: 0px;
	}
}



.yx_ban {
	width: 100%;
	position: relative;
	z-index: 0;
}

.yx_ban img {
	width: 100%;
	position: inherit;
}

.yx_bms {
	position: absolute;
	top: 30%;
	left: 8%;
}

.yx_bms span {
	font-size: 60px;
	color: #000000;
	font-weight: 600;
	clear: both;
	display: block;
}

.yx_bms p {
	clear: both;
	display: block;
	width: 80%;
	color: #000000;
	margin-top: 10px;
	font-size: 28px;
	line-height: 40px;
}

.dkj {
	padding-left: 9%;
	padding-right: 9%;
	margin: 0px auto;
}

.yx_fuwu h2 {
	font-size: 60px;
	font-weight: 600;
	text-align: center;
	line-height: 120px;
	margin-top: 50px;
	display: block;
	clear: both;
}

.yx_fuwu p {
	font-size: 26px;
	line-height: 40px;
	clear: both;
	color: rgba(0, 0, 0, 0.6);
}

.yx_baxiang {
	clear: both;
}

.yx_baxiang ul {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.yx_baxiang ul li {
	width: 25%;
	flex: 0 0 auto;
	text-align: center;
	margin-top: 50px;
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

.yx_baxiang ul li:hover {
	cursor: pointer;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
}



.yx_baxiang ul li strong {
	display: block;
	text-align: center;
	line-height: 80px;
	font-size: 20px;
}

.pxmk {
	width: 48%;
	float: left;
	height: 400px;
}

.pxtp {
	float: left;
	position: relative;
	width: 36%;
	height: 400px;
}

.pxtp img {
	width: 100%;
	position: inherit;
}

.tpnr {
	position: absolute;
	color: #ffffff;
	top: 8%;
	width: 80%;
	padding-left: 10%;
}

.tpnr h4 {
	font-size: 24px;
	clear: both;
	margin-bottom: 20px;
}

.tpnr p {
	font-size: 18px;
	line-height: 25px;
}

.pxmx {
	float: left;
	padding-left: 20px;
	width: 60%;
}

.pxmx h3 {
	font-size: 24px;
	line-height: 30px;
	clear: both;
	margin-top: 7%;
	margin-bottom: 20px;
	font-weight: 600;
}

.pxmx ul li {
	clear: both;
	font-size: 20px;
	line-height:30px;
	margin-bottom: 15px;
}

.yykf {
	font-size: 22px;
	text-align: center;
}

.yy_fl {
	clear: both;
	margin: 30px auto;
}

.yy_fl ul {
	position: relative;
	display: flex;
}

.yy_fl ul li {
	display: block;
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, .02);
	box-sizing: border-box;
	-ms-flex: 1;
	flex: 1;
	width: 1px;
	max-width: none;
	height: 280px;
	padding: 18px;
	position: relative;
	pointer-events: auto;
	text-align: center;
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

.clearfix::after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}

.clearfix {}

/* 必要布局样式css */
.Service-box {
	background-color: #fff;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.Service-content {
	margin: 0 auto;
	padding: 0;
}

.Service-item {
	display: block;
	width: 24.6%;
	padding: 20px 10px;
	text-align: center;
	float: left;
	height: 260px;
	border: 1px solid rgba(0, 0, 0, .03);
	box-sizing: border-box;
	overflow: hidden;
}

.Service-content .Service-item {
	-webkit-transition: all 160ms;
	transition: all 160ms;
}

.item-image {
	display: inline-block;
	height: 80px;
	width: 80px;
	line-height: 100px;
	text-align: center;
	border: 3px solid transparent;
	margin: 0;
	border-radius: 100%;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 160ms;
	transition: all 160ms;
}

.item-image img {
	/*    width: 100%; */
	height: 100%;
	display: block;
	border: none;
}

.item-title {
	line-height: 50px;
	font-size: 20px;
	color: #000000;
	font-weight: 600;
}

.item-link {
	color: #000000;
	display: none;
	padding: 6px 10px;
	margin: 0px auto;
	font-size: 16px;
	line-height: 25px;
	border-radius: 5px;
	-webkit-transition: all 160ms;
	transition: all 160ms;
	font-weight: normal;
	text-align: left;
}

.Service-item:hover {
	border-color: #DEDDDD;
	padding-top: 26px;
	position: relative;
	z-index: 99;
	text-decoration: none;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	webkit-transform: translate3d(0, -3px, 0);
	transform: translate3d(0, -3px, 0);
}

.Service-item:hover .item-image {
	height: 60px;
	width: 60px;
	line-height: 60px;
	margin: 0 auto;
}

.Service-item:hover .item-link {
	display: block;
}

.Service-item:hover .item-title {
	padding: 10px 0 7px;
}

/* .Service-item + .Service-item {
    margin-left: 50px;
    position: relative;
}
 */

.yw_item ul {
	position: relative;
	display: flex;
	/* flex-flow: wrap; */
}

.yw_item ul li {
	display: block;
	margin-right: 20px;
	background-image: linear-gradient(0deg, #fff, #f3f5f8);
	border: 2px solid #fff;
	box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
	border-radius: 4px;
	box-sizing: border-box;

	width: 18.7%;
	max-width: none;
	height: auto;
	margin-bottom: 20px;
	padding: 18px;
	position: relative;
	pointer-events: auto;
	text-align: center;
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

.yw_item ul li:hover {
	cursor: pointer;
	background-color: aliceblue;
	-webkit-transform: translate3d(0, -8px, 0);
	transform: translate3d(0, -8px, 0);
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

.yw_item ul li img {
	margin-top: 20px;
	width: 67px;
    height: 67px;
}

.yw_item ul li span {
	display: block;
	clear: both;
	height: 30px;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.8);
	padding-bottom: 20px;
}

.rq_bt {
	clear: both;
	height: 80px;
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
	display: flex;
	/* 	flex-wrap: wrap; */
	justify-content: space-between;
	align-items: center;
}

.rq_bt h3 {
	margin-right: 20px;
	display: block;
	height: 80px;
	line-height: 80px;
	width: 20%;
	text-align: center;
	font-size: 22px;
	cursor: pointer;
	color: #000000;
	transition: all .2s linear;
	border-radius: 10px 10px;
	background-image: linear-gradient(0deg, #fff, #f3f5f8);
	box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
	position: relative;
}
.rq_bt .lion  a{color: #ffffff;}

.rq_bt .lion {
	width: 20%;
	color: #ffffff;
	background-image: linear-gradient(0deg, #1890ff, #1890ff);
	background-color: #1890ff;
	box-shadow: 0 0px 20px rgba(0, 0, 0, .05);
	border-radius: 10px 10px;
	transition: all .2s linear;

}

.xwmk ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.xwmk ul li {
	width: 50%;
	background-color: #ffffff;
	border-radius: 10px 10px;
	height: 220px;
	margin: 10px 0px;
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

.xwmk ul li:hover {
	cursor: pointer;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
}


.xwtp {
	float: left;
	width: 38%;
	border-radius: 10px 10px;
	overflow: hidden;
}
.xwtp img{
	width:100%;
	height:220px;
}



.xwnr {
	float: left;
	padding-left: 20px;
	width: 56%;
	background-color: #ffffff;
	box-shadow: 0 0px 20px rgba(0, 0, 0, .1);
	border-radius: 0px 10px 10px 0px;
	height: 220px;
	position: relative;
}

.xwnr h4 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	padding-top: 15px;
	display: block;
	padding-right: 20px;
	height: 80px;
}

.xwbq {
	font-size: 16px;
	color: rgba(0, 0, 0, 0.6);
	clear: both;
	margin-top: 40px;
}

.xwbq strong {
	display: block;
	padding: 5px 10px;
	background-color: rgba(0, 0, 0, .03);
	float: left;
	margin-right: 20px;
	font-weight: normal;
	border-radius: 4px 4px;
}

.xwbz {
	width: 90%;
	position: absolute;
	bottom: 10px;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.5);
}

.xwbz span {
	float: left;
}

.xwbz p {
	float: right;
}

.foot {
	background-color: #333333;
	width: 100%;
	height: 480px;
	clear: both;
}

.mbx {
	padding-left: 9%;
	padding-right: 9%;
	height: 80px;
	line-height: 80px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.3);
	font-size: 18px;
}

.mbxx {
	padding-left: 9%;
	padding-right: 9%;
	height: 80px;
	line-height: 80px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 20px;
	color: rgba(255, 255, 255);
	font-size: 18px;
}

.mbx a {
	color: rgba(255, 255, 255, 0.3);
}

.mbx a:hover {
	color: #ffffff;
}

.db_left {
	float: left;
	width: 70%;
}

.db_left ul {
	float: left;
	margin-right: 10%;
}

.db_bt {
	clear: both;
	font-size: 20px;
	color: #ffffff;
	line-height: 60px;
	font-weight: 600;
}

.db_left ul li {
	clear: both;
	font-size: 16px;
	line-height: 40px;
	color: rgba(255, 255, 255, 0.8);
}

.db_left ul li a {
	color: rgba(255, 255, 255, 0.8);
}

.db_left ul li a:hover {
	color: #ffffff;
}

.db_right {
	width: 30%;
	float: right;
}

.dblogo {
	margin: 20px auto;
}

.db_right span {
	font-size: 22px;
	line-height: 35px;
	color: rgba(255, 255, 255, 0.8);
	clear: both;
	display: block;
}

.db_ewm {
	clear: both;
	margin-top: 20px;
}

.ewm_left {
	float: left;
	padding: 0px 15px;
	text-align: center;
}

.ewm_left img {
	width: 100px;
}

.ewm_left p {
	line-height: 30px;
	color: rgba(255, 255, 255, 0.8);
}

.db_yqlj {
	clear: both;
	/* 	margin-top: 20px; */
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.db_yqlj a {
	font-size: 16px;
	line-height: 60px;
	color: rgba(255, 255, 255, 0.8);
	margin-right: 20px;
}

.dbbq {
	background-color: #000000;
	text-align: center;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.8);
	padding: 10px 0px;
                font-size:14px;
}

.dbbq a {
	color:  rgba(255, 255, 255, 0.8);
               font-size:14px;
}




.yx_xban {
	width: 100%;
	position: relative;
	z-index: 0;
}

.yx_xban img {
	width: 100%;
	position: inherit;
}

.lb_lmnr {
	clear: both;
	margin: 30px auto;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.lb_lmnr h1 {
	font-size: 50px;
	font-weight: 600;
	display: block;
	clear: both;
	line-height: 80px;
}

.lb_lmnr p {
	clear: both;
	font-size: 18px;
	line-height: 35px;
	color: rgba(0, 0, 0, 0.7);
}

.lb_list {
	clear: both;
}

.list_left {
	width: 75%;
	float: left;
}

.list_left li {
	width: 98%;
	padding: 10px 10px;
	height: 260px;
	clear: both;
	margin-bottom: 30px;
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
	position: relative;
	overflow: hidden;

}

.list_left li:hover {
	background-color: #ffffff;
	-webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, .05);
	box-shadow: 0px 10px 20px rgba(0, 0, 0, .05);
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
}


.list_left li h2 {
	font-size: 24px;
	font-weight: 600;
	display: block;
	clear: both;
	line-height: 40px;
	margin-bottom: 20px;
}

.list_ms {
	width: 66%;
	float: left;
}

.list_ms p {
	font-size: 16px;
	color: rgba(0, 0, 0, 0.5);
	line-height: 35px;
	margin-bottom: 20px;
}

.list_ms span {
	font-size: 14px;
	color: rgba(0, 0, 0, .7);
	line-height: 30px;
}


.list_img {
	width: 29%;
	float: right;
}

.list_img img {
	width: 280px;
	height: 170px;
	border-radius: 10px 10px;
}

.list_right {
	width: 23%;
	float: right;
}

.rc_mk {
	clear: both;
}

.rc_mk h3 {
	font-size: 28px;
	color: #000000;
	font-weight: 600;
	display: block;
	height: 60px;
	line-height: 60px;
	padding-left: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rc_mk ul li {
	clear: both;
	padding-left: 20px;
	height: 50px;
	line-height:50px;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rc_mk ul li h4 {
	font-weight: 600;
}

.dqhs {
	color: #ff0000;
}

.rcdj {
	clear: both;
}

.rcdj h3 {
	font-size: 26px;
	color: #000000;
	font-weight: 600;
	display: block;
	height: 60px;
	line-height: 60px;
	padding-left: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rcdj ul li {
	clear: both;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	padding-left:15px;
}
.rcdj ul li a{
	height: 40px;
	line-height: 40px;
	font-size: 18px;
}
.rcdj ul li img{
	margin-right: 10px;
}

.xq_dk {
	clear: both;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.xq_dk h1 {
	font-size: 46px;
	font-weight: 600;
	display: block;
	width: 100%;
	line-height: 60px;
	clear: both;
	margin: 40px auto;
}

.xq_bzxx {
	clear: both;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	color: rgba(0, 0, 0, 0.5);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.xq_bzxx span {
	display: block;
	float: left;
	margin-right: 20px;
}

.fxdn {
	width: 15%;
	float: right;
}

.xq_dk p {
	font-size: 18px;
	line-height: 35px;
	margin-bottom: 20px;
	text-align: justify;
}

.xq_bqxx {
	clear: both;
	font-size: 16px;
	color: rgba(0, 0, 0, 0.6);
	font-weight: normal;
}

.xq_bqxx strong {
	margin-left: 20px;
	margin-right: 20px;
	font-weight: normal;
}

.xq_sxlp {
	clear: both;
	font-size: 16px;
	font-weight: 600;
	line-height: 30px;
	height: 50px;
}

.lpleft {
	float: left;
}

.lpright {
	float: right;
}

.xgwz {
	font-size: 26px;
	font-weight: 600;
	line-height: 50px;
}

.ym_mk {
	clear: both;
	margin: 100px auto;
}

.ym_tp {
	float: left;
	width: 50%;
	text-align: center;
}

.ym_mx {
	width: 40%;
	float: right;
	padding-left: 10%;
}

.ym_mx h2 {
	font-size: 60px;
	font-weight: 600;
	margin: 20px 0px;
}

.mx_lb {
	clear: both;
	height: 50px;
	line-height: 50px;
}

.mx_lb span {
	font-size: 18px;
	color: rgba(0, 0, 0, 0.6);
	float: left;
}

.mx_lb p {
	float: left;
	font-size: 20px;
	font-weight: 600;
}

.mx_lbts {
	clear: both;
	height: 50px;
	line-height: 50px;
}

.mx_lbts span {
	font-size: 18px;
	color: rgba(0, 0, 0, 0.6);
	float: left;
}

.mx_lbts p {
	float: left;
	font-size: 22px;
	font-weight: 600;
	
	margin-bottom: 30px;
}

.mx_lbts img {
	/* margin-left: 30px; */
	width: 30px;
}

.ym_lx {
	clear: both;
	display: block;
	border-radius: 6px 6px;
	background-color: #f17c2f;
	width: 40%;
	padding: 0px 4%;
	height: 50px;
	line-height: 50px;
	color: #ffffff;
	text-align: center;
	font-weight: 600;
	font-size: 22px;
	letter-spacing: 0px;
}

.ym_lx img {
	width: 14px;
	vertical-align: inherit;
                position: relative;
                top: 2px;
}

.jgmk {
	float: left;
}

.jg {
	float: left;
	color: #f17c2f;
	font-size: 14px;
	font-weight: 600;
	padding-top: 4px;
}

.wbts {
	display: inline-block;
	position: relative;
	color: #b0b0b0;
	padding: 0px 15px;
	cursor: pointer;
	/* margin-top: 14px; */
}

.wb-text {
	width: 120px;
	height: 120px;
	display: none;
	position: absolute;
	left: 90%;
	top: 5%;
	transform: translateX(5%);
	z-index: 999;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .3);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .3);
	border-radius: 10px 10px;
	border: 1px solid #eeeeee;
}

.wb-text::after {
	position: absolute;
	display: inline-block;
	left: -6px;
	top: calc(20% - 6px);
	width: 0px;
	height: 0px;
	content: '';
	border-style: solid;
	border-width: 6px;
	border-color: #fff #fff transparent transparent;
	transform: rotate(-130deg);
}

.wb-text img {
	width: 100px;
	height: 100px;
	margin: 10px 10px;
}


.wbtsb {
	display: inline-block;
	position: relative;
	color: #b0b0b0;
	padding: 0px 15px;
	cursor: pointer;
	/* margin-top: 14px; */
}

.wb-textb {
	width: 120px;
	height: 120px;
	display: none;
	position: absolute;
	left: 90%;
	top: 5%;
	transform: translateX(5%);
	z-index: 999;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .3);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .3);
	border-radius: 10px 10px;
	border: 1px solid #eeeeee;
}

.wb-textb::after {
	position: absolute;
	display: inline-block;
	left: -6px;
	top: calc(20% - 6px);
	width: 0px;
	height: 0px;
	content: '';
	border-style: solid;
	border-width: 6px;
	border-color: #fff #fff transparent transparent;
	transform: rotate(-130deg);
}

.wb-textb img {
	width: 100px;
	height: 100px;
	margin: 10px 10px;
}



.wbtsc {
	display: inline-block;
	position: relative;
	color: #b0b0b0;
	padding: 0px 15px;
	cursor: pointer;
	/* margin-top: 14px; */
}

.wb-textc {
	width: 120px;
	height: 120px;
	display: none;
	position: absolute;
	left: 90%;
	top: 5%;
	transform: translateX(5%);
	z-index: 999;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .3);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .3);
	border-radius: 10px 10px;
	border: 1px solid #eeeeee;
}

.wb-textc::after {
	position: absolute;
	display: inline-block;
	left: -6px;
	top: calc(20% - 6px);
	width: 0px;
	height: 0px;
	content: '';
	border-style: solid;
	border-width: 6px;
	border-color: #fff #fff transparent transparent;
	transform: rotate(-130deg);
}

.wb-textc img {
	width: 100px;
	height: 100px;
	margin: 10px 10px;
}



.wbtsd {
	display: inline-block;
	position: relative;
	color: #b0b0b0;
	padding: 0px 15px;
	cursor: pointer;
	/* margin-top: 14px;*/
}

.wb-textd {
	width: 120px;
	height: 120px;
	display: none;
	position: absolute;
	left: 90%;
	top: 5%;
	transform: translateX(5%);
	z-index: 999;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .3);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .3);
	border-radius: 10px 10px;
	border: 1px solid #eeeeee;
}

.wb-textd::after {
	position: absolute;
	display: inline-block;
	left: -6px;
	top: calc(20% - 6px);
	width: 0px;
	height: 0px;
	content: '';
	border-style: solid;
	border-width: 6px;
	border-color: #fff #fff transparent transparent;
	transform: rotate(-130deg);
}

.wb-textd img {
	width: 100px;
	height: 100px;
	margin: 10px 10px;
}




/**新闻列表页**/
.newslist ul li{ border-bottom: 1px solid #e5e5e5; padding:10px 30px;transition: all .36s ease; cursor: pointer;}
.newslist ul li:hover{transition: all .36s ease;box-shadow:0 0 60px -10px rgba(0,0,0,.1)}
.newslist ul li h2{ font-size:20px;line-height:40px; height:40px;}
.newslist ul li h2 a{color:#333333; font-size:18px; font-weight: 600;}
.newslist ul li h2 a:hover{ text-decoration:none; color:#e51211;}
.newslist ul li p{font-size:14px;color:#888888; line-height:28px; height:56px; overflow:hidden; }
.newslist ul li p a{font-size:14px;color:#888888;}
.newslist ul li span{ font-size:12px; margin-top:15px; color:#999; display:block;}
.newslist ul li span.pl{ float:right; background:url(plnum.png) no-repeat left center; width:30px; padding-left:18px; font-size:13px;}
.newslist ul li span.dj{ float:right; width:100px; padding-left:18px; font-size:13px; text-align: right; }
.newslist ul li a span{ display:inline-block;}

/*文章分页样式*/
#fenye{clear:both; margin:10px 20px 20px 0;}
#fenye a{ width:28px; text-align:center; float:left; border:1px solid #bfbfc7;background:#fff; height:28px; font-size:12px;color:#666; line-height:28px; margin-left:5px;border-radius:3px; display:inline-block;}
#fenye .prev,#fenye .next{width:60px;}
#fenye a.curr{background:#bfbfc7;border:1px solid #bfbfc7;color:#fff;}
#fenye a:hover{background:#bfbfc7;border:1px solid #bfbfc7;color:#fff; text-decoration:none}
#pageNext{ margin:10px;}
#pageNext .prev,#pageNext .next{text-align:center;width: 60px;}
#pageNext a.curr{background: #bfbfc7;border: 1px solid #bfbfc7;color: #fff;}
#pageNext a.curr span{ color:#fff !important;}
#pageNext a{width: 28px;text-align: center;float: left;border: 1px solid #bfbfc7;background: #fff;height: 28px;font-size: 12px;color: #666;line-height: 28px;margin-left: 5px;border-radius: 3px;}
#realname{height: 30px;border: 1px solid #ddd;}
#b1{padding: 5px 10px;background: #ff7d02;color: #fff;border: 1px solid #ff7d02;border-radius: 3px;}

.fenyetips{ display:none}
#pagelist{ line-height:22px;color:#666; padding:15px;}
#pagelist a{ width:28px; text-align:center; float:left; border:1px solid #bfbfc7;background:#fff; height:28px; font-size:12px;color:#666; line-height:28px; margin-left:5px;border-radius:3px;}
#pagelist a.next,#pagelist a.prev{width:60px;}
#pagelist a.curr{ background:#bfbfc7;border:1px solid #bfbfc7;color:#fff;}
#pagelist a:hover{background:#bfbfc7;border:1px solid #bfbfc7;color:#fff; text-decoration:none}
#pagelist a img{ display:block;margin:0 auto;margin-top:12px;}
#pagelist span{line-height:28px; font-size:13px; height:28px; margin-left:10px;}
#pagelist span#totalpage{ margin:0;}
.fenye a img{ display:block;margin:0 auto;margin-top:12px;}


.swiper {
      width: 100%;
    /* height: 630px;  */  
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


.sidebar{position: fixed;top: 85%;right: 30px;z-index: 97;width: 48px;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);}
	.sidebar a{display: block;width: 48px;height: 48px;box-sizing: border-box;border-radius: 50%;background-image: linear-gradient(0deg, #ffffff 0%, #f3f5f8 100%); border: 2px solid #fff; box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1);transition: all .2s linear;-webkit-transition: all .2s linear;}

.sidebar a:hover{box-shadow: 8px 8px 20px 0 rgba(55,99,170,.3);transition: all .2s linear;-webkit-transition: all .2s linear;}


	.sidebar .xinqiu-btn{background-image: url('../image/icon4.png') ;background-size: 100% 100%;}
	.sidebar .xinqiu-btn:hover{background: #16b998 url('../image/icon4-on.png');background-size: 100% 100%;border-color: #16b998;}
	.sidebar .phone-btn{background-image: url('../image/icon1.png') ;background-size: 100% 100%;}
	.sidebar .phone-btn:hover{background: #0066FF url('../image/icon1-on.png');background-size: 100% 100%;border-color: #0066FF;}
	.sidebar .wechat-btn{background-image: url('../image/icon2.png');background-size: 100% 100%;}
	.sidebar .wechat-btn:hover{background: #0066FF url('../image/icon2-on.png');background-size: 100% 100%;border-color: #0066FF;}
	.sidebar .backtop{background-image: url('../image/icon3.png');background-size: 100% 100%;margin-top: 20px;transform: translateX(200%);transition: 0.4s;}
	.sidebar .backtop:hover{background: #0066FF url('../image/icon3-on.png');background-size: 100% 100%;border-color: #0066FF;}
	.sidebar .backtop.backtop-show{transform: translateX(0);transition: 0.4s;}
	.sidebar .side-inner{border: 1px solid #D7D7D7;background: #fff;border-radius: 4px;box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);position: relative;border-radius: 10px 10px;padding: 4px 4px;}
	.sidebar .side-inner::before{display: block;content: "";width: 4px;height: 4px;border: 1px solid #fff;border-color: #d7d7d7 #d7d7d7 #fff #fff;background: #fff;position: absolute;top: 50%;right: -4px;margin-top: -4px;transform: rotate(45deg);}
	
	
	.sidebar .side-xqiu{position: relative;}
	.sidebar .side-xqiu .xinqiu{position: absolute;top: 50%;right: 100%;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);padding-right: 10px;display: none;}
	.sidebar .side-xqiu:hover .xinqiu{display: block;}
	
	
	
	.sidebar .side-phone{position: relative;margin-top: 20px;}
	.sidebar .side-phone .phone-num{position: absolute;top: 50%;right: 100%;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);padding-right: 10px;display: none;}
	.sidebar .side-phone .phone-num span{display: block;line-height: 56px;padding: 0 15px;white-space: nowrap;font-size: 16px;color: #666;}
	.sidebar .side-phone:hover .phone-num{display: block;}
	
	.sidebar .side-erweima{position: relative;margin-top: 20px;}
	.sidebar .side-erweima .erweima{position: absolute;top: 50%;right: 100%;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);padding-right: 10px;display: none;}
	.sidebar .side-erweima:hover .erweima{display: block;}




/*手机端样式*/
@media (max-width: 480px) {
	.header {
		height: 4rem;
		line-height: 4rem;
	}

	.dkj {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.yx_logo img {
		width: 60%;
	}

	.yx_bms span {
		font-size: 1rem;
	}

	.yx_bms p {
		font-size: 0.625rem;
		margin-top: 0.5rem;
		line-height: 1rem;
	}

	.yx_fuwu h2 {
		font-size: 2rem;
		line-height: 5rem;
		margin-top: 0rem;
	}

	.yx_fuwu p {
		font-size: 1rem;
		line-height: 2rem;
	}

	.yx_baxiang ul li {
		width: 50%;
		height: 5rem;
		margin-top: 2rem;
		margin-bottom: 1rem;
	}

	.yx_baxiang ul li img {
		width: 30%;
		margin-bottom: 0.5rem;
	}

	.yx_baxiang ul li strong {
		padding: 0rem 2.5rem;
		line-height: 1.6rem;
		font-size: 1rem;
	}

	.pxmk {
		width: 100%;
		float: none;
		clear: both;
		height: auto;
	}

	.pxtp {
		float: none;
		clear: both;
		width: 100%;
		height: auto;
	}


	.tpnr {
		position: absolute;
		color: #ffffff;
		top: 8%;
		width: 80%;
		padding-left: 10%;
	}

	.pxmx {
		float: none;
		clear: both;
		padding-left: 0rem;
		width: 100%;
		position: relative;
	}

	.pxmx h3 {
		font-size: 1.5rem;
		line-height: 0%;
		margin-top: 2rem;
		margin-bottom: 2rem;
	}

	.pxmx ul li {
		font-size: 1rem;
		line-height: 1.2rem;
		margin-bottom: 1rem;
	}

	.yykf {
		font-size: 1rem;
		line-height: 2rem;
	}

	.Service-item {
		width: 50%;
		padding: 20px 10px;
		margin-bottom: 1rem;
		text-align: center;
		float: left;
	}

	.yw_item ul {
		display: block;
	}

	.yw_item ul li {
		margin-left: 3%;
		margin-right: 3%;
		width: 44%;
		float: left;
	}

	.rq_bt {
		height: 4rem;
		margin-top: 20px;
		margin-bottom: 2rem;
		display: block;
	}

	.rq_bt h3 {
		height: 4rem;
		line-height: 4rem;
		margin-left: 2%;
		margin-right: 3%;
		width: 44%;
		font-size: 1rem;
		margin-bottom: 1.5rem;
		float: left;
	}

	.rq_bt .lion {
		width: 44%;

	}

	.xwmk {
		clear: both;
	}

	.xwmk ul li {
		width: 100%;
		clear: both;
		height: auto;
		margin: 10px auto;
		border-radius: 0%;
		border-bottom: 1px solid rgba(0, 0, 0, .02);
		padding-bottom: 1rem;
	}

	.xwtp {
		width: 100%;
		clear: both;
		display: none;
	}

	.xwtp img {
		width: 100%;
	}

	.xwnr {
		width: 100%;
		padding-left: 0%;
		clear: both;
		float: none;
		height: auto;
		position: relative;
		box-shadow: none;
		margin-top: -30px;
	}

	.xwnr h4 {
		font-size: 1rem;
		line-height: 1.2rem;
		padding-right: 0rem;
		height: auto;
		margin: 1rem 0rem;
	}

	.xwbq {
		font-size: 0.6rem;
		color: rgba(0, 0, 0, 0.6);
		clear: both;
		margin-top: 0px;
	}

	.xwbq strong {
		display: block;
		padding: 5px 10px;
		margin-right: 0.3rem;
		font-weight: normal;
		margin-bottom: 1rem;
	}

	.xwbz {
		width: 100%;
		clear: both;
		position: relative;
		font-size: 0.8rem;
		margin-top: 1rem;
		bottom: 0%;
	}

	.dbbqsy {
		display: none;
	}

	.foot {
		height: 5rem;
		font-size: 0.625rem;
	}

	#geo {
		position: absolute;
		margin-top: -18%;
	}

	#peixun {
		position: absolute;
		margin-top: -18%;
	}

	#yykf {
		position: absolute;
		margin-top: -18%;
	}

	.yx_xban img {
		height: 5rem;
	}

	.lb_lmnr h1 {
		font-size: 2.5rem;
		line-height: 60px;
	}

	.lb_lmnr p {
		font-size: 1rem;
		line-height: 1.6rem;
		text-align: justify;
	}

	.list_left {
		width: 100%;
		float: none;
		clear: both;
	}

	.list_left li {
		width: 100%;
		padding: 0px 0px;
		margin-bottom: 2rem;
		height: auto;
		padding-bottom: 1rem;
		border-bottom: 1px solid rgba(0, 0, 0, .05);
	}


	.list_left li h2 {
		font-size: 1.1rem;
		line-height: 1.6rem;
		margin-bottom: 20px;
	}

	.list_ms {
		width: 100%;
		float: none;
		color: #000;
	}

	.list_ms p {
		font-size: 1rem;
		line-height: 1.5rem;
		margin-bottom: 20px;
	}

	.list_ms span {
		font-size: 0.8rem;
		line-height: 1rem;
	}


	.list_img {
		width: 29%;
		float: right;
		display: none;
	}


	.list_right {
		display: none;
	}
	.xq_dk{
		margin-bottom: 1rem;
	}
	.xq_dk h1 {
		font-size: 1.4rem;
		line-height: 2rem;
		margin: 2rem auto;
	}

	.xq_bzxx {
		font-size: 0.8rem;
		line-height: 1rem;
	}

	.xq_bzxx span {
		display: block;
		float: left;
		margin-right:1rem;
	}

	.fxdn {
		width: 100%;
		float: none;
		clear: both;
	}

	.xq_dk p {
		font-size: 1rem;
		line-height: 1.8rem;
		margin-bottom: 1rem;
	}


.item-link {
	font-size:0.8rem;
	line-height:1rem;
                padding:0rem  0rem;
}





	.xq_bqxx {
		font-size: 1rem;
	}

	.xq_bqxx strong {
		margin-left:0.5rem;
		margin-right:0.5rem;
	}

	.xq_sxlp {
		font-size: 1rem;
		line-height: 1.8rem;
		height: auto;
	}

	.lpleft {
		float: none;
		clear: both;
		margin-bottom: 0.5rem;
	}

	.lpright {
		float: none;
		clear: both;
	}
	.xgwz {
		font-size: 1.5rem;
		margin-top: 1rem;
	}
	

	
	.ym_mk {
		margin: 3rem auto;
	}
	
	.ym_tp{
		width: 40%;
		display: none;
	}

	.ym_mx {
		width: 100%;
		float: none;
		padding-left: 0%;
	}
	
	.ym_mx h2 {
		font-size: 1.5rem;
		margin: 1rem auto;
	}
	
	.mx_lb {
		height: auto;
		line-height: 1.5rem;
		margin-bottom: 1rem;
	}
	
	.mx_lb span {
		font-size: 1rem;
		float: none;
		clear: both;
	}
	
	.mx_lb p {
		float: none;
		clear: both;
		font-size: 1rem;
	}
	
	.mx_lbts {
		clear: both;
		height: 50px;
		line-height: 50px;
	}
	
	.mx_lbts span {
		font-size: 1rem;
	}
	
	.mx_lbts p {
		font-size: 1.5rem;
	}
	
	.mx_lbts img {
		margin-left: 30px;
		width: 30px;
	}
	
	.ym_lx {
		width: 60%;
		font-size: 1.2rem;
		margin-left: 3rem !important;
	}
.swiper {
      height:8.5rem;
    }
.sidebar{right: 10px;}
	.xq_dk img{ width:100% !important;
}
}

