/*初始化样式*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	border: 0;
	overflow-x: hidden;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
navs,
section {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	background: #fff;
	color: #333;
	position: relative;
	font: 14px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
	vertical-align: baseline;
	width: 100%;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover,
a:active,
a:focus {
	text-decoration: none;
	outline: none;
	color: #166bae;
}

input {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

img {
	border: none;
	background: none;
	vertical-align: middle;
}

ul,
ol,
li {
	list-style-type: none;
}

select,
input,
img,
select {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table,
th,
td {
	vertical-align: middle;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.clearfix {
	zoom: 1
}

.clearboth {
	height: 0px;
	line-height: 0px;
	overflow: hidden;
	clear: both;
	font-size: 0px;
}

h1,
h2 {
	font-weight: bold;
}

hr {
	border: 0;
	border-top: 1px solid #ccc;
	height: 0;
}

h3,
h4,
h5,
h6 {
	font-weight: normal;
}

p {
	margin: 0;
}

/*----- Common css ------*/
.fl {
	float: left;
}

.fr {
	float: right;
}

/*flex布局*/
.flex_wrap {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*flex布局上下对齐*/
.flex_alise {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

/*flex布局上下居中*/
.flex_alice {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

/*flex布局左右对齐*/
.flex_con {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

/*flex布局左右居中*/
.flex_con_cen {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

/**/
.max1200 {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

.page_con_zhuti {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

@media(max-width:1280px) {
	.max1200 {
		padding: 0 30px;
	}

	.page_con_zhuti {
		padding: 0 30px;
	}
}

@media(max-width:991px) {
	.max1200 {
		padding: 0 20px;
	}

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

@media(max-width:768px) {
	.max1200 {
		padding: 0 15px;
	}

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*头部*/
.pc_header_1 {
	background: #efefef;
	font-size: 16px;
	line-height: 40px;
	color: #666;
}

.pc_header_1_fr a {
	color: #666;
	margin-right: 20px;
}

.pc_header_1_fr a:last-child {
	margin-right: 0;
}

.pc_header_1_fr a:hover {
	text-decoration: underline;
	color: #166bae;
}

.pc_header_con {
	height: 100px;
	line-height: 100px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo {
	width: 66%;
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo_fl{
	width: 40%;
	max-width: 340px;
}

.pc_logo_fr{
	width: 57%;
	margin-left: 3%;
}

.pc_logo_fr h3{
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
	color: #333;
}

.pc_logo_fr h4{
	font-size: 20px;
	line-height:1.5;
	color: #666;
}

.pc_logo img {
	max-width: 100%;
}

.pc_header_2 {}

.pc_nav {
	width: 100%;
	border-top: 1px solid #dfdfdf;
}

.pc_nav>ul {
	width: 100%;
}

.pc_nav>ul {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

.pc_nav>ul>li {
	width: 14.285714%;
	float: left;
	position: relative;
	text-align: center;
	font-size: 0;
}

.pc_nav>ul>li>a {
	font-size: 17px;
	line-height: 60px;
	color: #333;
	display: block;
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

.pc_nav>ul>li.active>a,
.pc_nav>ul>li:hover>a {
	color: #166bae;
}

.pc_nav>ul>li::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 20px;
	background: #dfdfdf;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_nav>ul>li>a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background: #166bae;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	/*display: none;*/
}

.pc_nav>ul>li.active>a::after,
.pc_nav>ul>li:hover>a::after {
	width: 100%;
}

.pc_nav>ul>li:last-child::before {
	display: none;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 100%;
	min-width: 150px;
	left: 50%;
	top: 70px;
	background: #fff;
	border-radius: 5px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%, 20px);
	-moz-transform: translate(-50%, 20px);
	-ms-transform: translate(-50%, 20px);
	-o-transform: translate(-50%, 20px);
	transform: translate(-50%, 20px);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.pc_nav>ul>li:hover .pc_nav_erji_w {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.pc_nav>ul>li:hover>a {
	color: #166bae;
}

.pc_nav_erji_w:after {
	content: '';
	width: 0;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	border-width: 10px;
	cursor: pointer;
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #fff transparent;
	border-top: none;
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -10px;
	z-index: 99;
}

.pc_nav_erji_li a {
	font-size: 15px;
	line-height: 2;
	padding: 5px;
	color: #333;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_erji_li a:hover {
	background: #166bae;
	color: #fff;
}

.pc_nav>ul>li:after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	left: 0;
	height: 10px;
	opacity: 0;
	top: 100%;
}

.pc_sousuo {
	position: relative;
	width: 30px;
	z-index: 999;
}

.pc_sousuo1 {
	width: 30px;
	height: 30px;
	background: url(../images/sh_ico.png) no-repeat center;
	background-size: 25px;
	margin-top: 25px;
	cursor: pointer;
}

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 100%;
	width: 250px;
	z-index: 999;
	background: #166bae;
	display: none;
}

.pc_sousuo2 input {
	outline: none;
	line-height: 45px;
	width: 36px;
	background: none;
	border: 0;
	background: #0662af;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.28);
	float: left;
}

.pc_sousuo2 .pc_sousuo_con_tijiao {
	background: url(../images/nav_sousuo.png) no-repeat center;
	background-size: 20px;
	cursor: pointer;
}

.pc_sousuo2 .pc_sousuo_con_shuru {
	padding-left: 13px;
	line-height: 45px;
	width: calc(100% - 36px);
	background: none;
	border: 0;
	outline: none;
	font-size: 13px;
	color: rgba(255, 255, 255, 1);
	float: left;
}

.pc_sousuo2 .pc_sousuo_con_shuru::-webkit-autofill {
	-webkit-text-fill-color: rgba(255, 255, 255, 1) !important;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	-moz-transition: background-color 5000s ease-in-out 0s;
	-ms-transition: background-color 5000s ease-in-out 0s;
	-o-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

.pc_sousuo2 .pc_sousuo_con_shuru::placeholder {
	color: rgba(255, 255, 255, 1);
}

.pc_nav_dianhua {
	padding-left: 40px;
	background: url(../images/img/index_top_dianhua.png) no-repeat left center;
	background-size: 35px;
	min-height: 45px;
	-webkit-align-items: center; 
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_nav_dianhua h3 {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	display: none;
}

.pc_nav_dianhua h4 {
	font-size: 22px;
	line-height: 1.3;
	color: #166bae;
	font-weight: bold;
}

@media(max-width:1200px){
	.pc_logo_fr h3{
		font-size: 20px;
	}

	.pc_logo_fr h4{
		font-size: 18px;
	}

	.pc_nav_dianhua h4{
		font-size: 20px;
	}
}

/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
}

.index_banner img {
	width: 100%;
}

.index_banner_yuandian {
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 5rem !important;
	z-index: 99;
}

.index_banner_yuandian span {
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0 5px !important;
}

.index_banner_yuandian span.swiper-pagination-bullet-active {
	background: #166bae;
	width: 30px;
	border-radius: 25px;
}

@media(max-width:768px) {
	.index_banner_yuandian {
		bottom: 10px !important;
	}

	.index_banner_yuandian span {
		width: 10px;
		height: 10px;
		margin: 0 3px !important;
	}

	.index_banner_yuandian span.swiper-pagination-bullet-active {
		width: 26px;
	}
}


/*数据*/
.index_shisheng_shuju {
	margin-top: -4rem;
	background: #f6f6f6;
}

.index_shisheng_shuju ul {
	box-shadow: 0 0 10px #ececec;
	background: #fff;
	position: relative;
	z-index: 5;
}

.index_shisheng_shuju ul li {
	width: 25%;
	float: left;
	text-align: center;
	padding: 2% 1%;
	border-right: 1px solid #eaeaea;
}

.index_shisheng_shuju ul li:last-child {
	border-right: 1px solid rgba(0, 0, 0, 0);
}

.index_shisheng_shuju ul li h3 {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
}

.index_shisheng_shuju ul li h3 span {
	font-size: 3rem;
	font-weight: bold;
	font-family: "Arial";
	color: #166bae;
	margin-right: 5px;
}

.index_shisheng_shuju ul li h4 {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
}

@media(max-width:768px) {
	.index_shisheng_shuju {
		margin-top: 0;
		padding-top: 20px;
	}

	.index_shisheng_shuju ul li {
		width: 50%;
		padding: 15px 5px;
	}

	.index_shisheng_shuju ul li:nth-child(n+3) {
		border-top: 1px solid #eaeaea;
	}

	.index_shisheng_shuju ul li:nth-child(2n) {
		border-right: 1px solid rgba(0, 0, 0, 0);
	}

	.index_shisheng_shuju ul li h3 span {
		font-size: 35px;
	}
}

@media(max-width:468px) {
	.index_shisheng_shuju ul li h3 span {
		font-size: 26px;
	}

	.index_shisheng_shuju ul li h3 {
		font-size: 15px;
	}

	.index_shisheng_shuju ul li h4 {
		font-size: 15px;
	}
}

/*热搜*/
.index_shisheng_resou {
	background: #f6f6f6;
}

.index_shisheng_resou_nnn {
	border-bottom: 1px solid #e4e4e4;
	padding: 20px 0;
	overflow: hidden;
}

.index_shisheng_resou_fl {
	width: 100%;
	padding-right: 240px;
	margin-right: -240px;
}

.index_shisheng_resou_fl h3 {
	font-size: 16px;
	color: #666;
	line-height: 40px;
	padding-left: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: url(../images/img/index_remen.png) no-repeat left center;
	background-size: 25px;
}

.index_shisheng_resou_fl h3 a {
	color: #aaa;
	margin-right: 10px;
}

.index_shisheng_resou_fl h3 a:last-child {
	margin-right: 0;
}

.index_shisheng_resou_fl h3 a:hover {
	color: #166bae;
	text-decoration: underline;
}

.index_shisheng_resou_fr {
	width: 220px;
	border-radius: 25px;
	overflow: hidden;
	background: #166bae;
	position: relative;
}

.index_remensousuo_fr_shuru {
	outline: none;
	line-height: 40px;
	width: 36px;
	background: none;
	border: 0;
	background: #0662af;
	font-size: 15px;
	color: #fff;
	float: left;
}

.index_remensousuo_fr_tijiao {
	width: 50px;
	height: 40px;
	background: url(../images/nav_sousuo.png) no-repeat center;
	background-size: 18px;
	border: 0;
	outline: none;
	position: relative;
}

.index_remensousuo_fr_shuru {
	padding-left: 25px;
	line-height: 40px;
	width: calc(100% - 50px);
	background: none;
	border: 0;
	outline: none;
	font-size: 15px;
	color: #fff;
	float: left;
}

.index_remensousuo_fr_shuru:-webkit-autofill {
	-webkit-text-fill-color: #fff !important;
	transition: background-color 5000s ease-in-out 0s;
}

.index_remensousuo_fr_shuru::placeholder {
	color: #fff;
}

@media(max-width:991px) {
	.index_shisheng_resou {
		display: none;
	}
}

/*公司简介*/
.index_shisheng_about {
	padding: 3% 0;
	background: #f6f6f6;
}

.index_shisheng_about_ft {
	background: #fff;
	box-shadow: 0 0 10px #ececec;
	overflow: hidden;
	position: relative;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_shisheng_about_ft_fl {
	width: 50%;
	padding: 5% 4%;
}

.index_shisheng_about_ft_fl_ft h3 {
	font-size: 2rem;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
}

.index_shisheng_about_ft_fl_ft h4 {
	font-size: 1.25rem;
	line-height: 2;
	color: #666;
}

.index_shisheng_about_ft_fl_fc {
	border-top: 1px solid #dfdfdf;
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	padding-top: 7%;
	margin-top: 5%;
}

.index_shisheng_about_ft_fr {
	width: 50%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	overflow: hidden;
}

.index_shisheng_about_ft_fr .img{
    width: 100%;
    height: 100%;
}

.index_shisheng_about_ft_fr .img .img_con{
    width: 100%;
    height: 100%;
}

.index_shisheng_about_ft_fr img {
	width: 100%;
	display: none;
}
.index_shisheng_about_ft_fr_btn{
    position: absolute;
    left: 0;
    bottom: 4%!important;
    z-index: 500;
    text-align: center;
}
.index_shisheng_about_ft_fr_btn span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f7793e;
    opacity: 1;
    margin: 0 5px!important;
}
.index_shisheng_about_ft_fr_btn span.swiper-pagination-bullet-active{
    background: #166bae;
}
.index_shisheng_about_fb {
	margin-top: 3%;
}

.index_shisheng_about_fb_ft_fl {
	font-size: 24px;
	font-weight: bold;
	line-height: 26px;
	color: #166bae;
	padding-left: 10px;
	border-left: 2px solid #166bae;
}

.index_shisheng_about_fb_ft_fr {
	font-size: 15px;
	line-height: 26px;
	color: #166bae;
}

.index_shisheng_about_fb_ft_fr:hover {
	text-decoration: underline;
}

.index_shisheng_about_fb_fb {
	margin-top: 25px;
	position: relative;
}

.index_shisheng_about_fb_fb_btnl,
.index_shisheng_about_fb_fb_btnr {
	position: absolute;
	width: 15px;
	height: 30px;
	top: 50%;
	margin-top: -16px;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_shisheng_about_fb_fb_btnl {
	left: -25px;
	background: url(../images/img/index_hezuo_btnr.png) no-repeat center;
	background-size: 15px;
}

.index_shisheng_about_fb_fb_btnr {
	right: -25px;
	background: url(../images/img/index_hezuo_btnl.png) no-repeat center;
	background-size: 15px;
}

.index_shisheng_about_fb_fb_nnn {
	overflow: hidden;
	padding: 0 1px;
}

.index_shisheng_about_fb_fb li{
	cursor: pointer;
}

.index_shisheng_about_fb_fb li .img {
	border: 1px solid #dddddd;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.index_shisheng_about_fb_fb li:hover .img{
	border: 1px solid #166bae;
	/*box-shadow: 0 0 3px #166bae;*/
}

.index_shisheng_application .index_shisheng_about_fb_fb li:hover .img{
	border: 1px solid #dddddd;
	box-shadow: 0 0 5px #dddddd;
}

.index_shisheng_application .index_shisheng_about_fb_fb li .img{
	overflow: hidden;
}

.index_shisheng_application .index_shisheng_about_fb_fb li:hover .img img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

.index_shisheng_about_fb_fb li .img img {
	width: 100%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_about_fb_fb li .wz {
	font-size: 16px;
	line-height: 2;
	color: #666;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_shisheng_about_fb_fb li:hover .wz{
	color: #166bae;
}

@media(max-width:991px) {
	.index_shisheng_about_ft_fl {
		padding: 2%;
	}

	.index_shisheng_about_ft_fl_ft h4 {
		font-size: 18px;
	}

	.index_shisheng_about_ft_fl_fc {
		padding-top: 4%;
		margin-top: 3%;
	}

	.index_shisheng_about_fb_ft_fl {
		font-size: 18px;
	}

	.index_shisheng_about_fb_fb{
		margin-top: 20px;
	}

	.index_shisheng_about_fb_fb_btnl,
	.index_shisheng_about_fb_fb_btnr {
		display: none;
	}
}

@media(max-width:768px) {
	.index_shisheng_about {
		padding: 20px 0;
	}

	.index_shisheng_about_ft_fl {
		width: 100%;
		padding: 15px 15px 10px;
	}

	.index_shisheng_about_ft_fl_ft h3 {
		font-size: 22px;
	}

	.index_shisheng_about_ft_fl_fc {
		padding-top: 15px;
		margin-top: 10px;
	}

	.index_shisheng_about_ft_fr {
		width: 100%;
		position: static;
		/*padding: 0 15px 15px;*/
		margin: 0 15px 15px;
		background: none !important;
	}

	.index_shisheng_about_ft_fr img {
		display: block;
	}

	.index_shisheng_about_fb {
		margin-top: 15px;
	}
}

/*产品服务*/
.index_shisheng_product {
	padding: 3% 0;
}

.index_shisheng_product_ft {
	text-align: center;
}

.index_shisheng_product_ft h3 {
	font-size: 2rem;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
}

.index_shisheng_product_ft h3 span {
	color: #166bae;
}

.index_shisheng_product_ft h4 {
	position: relative;
	font-size: 0;
	margin-top: 10px;
}

.index_shisheng_product_ft h4::before,
.index_shisheng_product_ft h4::after {
	content: '';
	position: absolute;
	width: 50%;
	height: 1px;
	background: #dfdfdf;
	top: 50%;
	margin-top: -1px;
}

.index_shisheng_product_ft h4::before {
	left: 0;
}

.index_shisheng_product_ft h4::after {
	right: 0;
}

.index_shisheng_product_ft h4 span {
	display: inline-block;
	font-size: 1.25rem;
	line-height: 1.5;
	color: #666;
	border: 1px solid #dfdfdf;
	background: #fff;
	position: relative;
	z-index: 5;
	padding: 3px 20px;
	border-radius: 25px;
}

.index_shisheng_product_fb {
	margin-top: 3%;
}

.index_shisheng_product_fb_fl {
	width: 240px;
	position: relative;
	z-index: 5;
	border: 1px solid #dfdfdf;
}

.index_shisheng_product_fb_fl_ft {
	text-align: center;
	background: #166bae;
	padding: 9% 0;
}

.index_shisheng_product_fb_fl_ft h3 {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
}

.index_shisheng_product_fb_fl_ft h4 {
	font-size: 14px;
	line-height: 2;
	color: rgba(255, 255, 255, .8);
}

.index_shisheng_product_fb_fl_fb li {
	border-bottom: 1px solid #fff;
}

.index_shisheng_product_fb_fl_fb li:last-child {
	border-bottom: 0;
}

.index_shisheng_product_fb_fl_fb li h3 {
	background: #666;
	padding: 0 20px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_product_fb_fl_fb li.on h3 {
	background: #f6f6f6;
}

.index_shisheng_product_fb_fl_fb li h3 a {
	display: block;
	font-size: 16px;
	line-height: 3.32rem;
	color: #fff;
	padding-right: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: url(../images/img/index_product_xiantiao.png) no-repeat right center;
	background-size: 18px;
}

.index_shisheng_product_fb_fl_fb li.on h3 a {
	color: #166bae;
	background: url(../images/img/index_product_yuanjiantou.png) no-repeat right center;
	background-size: 20px;
}

.index_shisheng_product_fb_fl_fb_xiala {
	display: none;
}

.index_shisheng_product_fb_fl_fb_xiala_li {
	padding: 0 20px;
}

.index_shisheng_product_fb_fl_fb_xiala_li a {
	display: block;
	font-size: 16px;
	line-height: 2.3rem;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-left: 20px;
	background: url(../images/img/index_product_jiantou.png) no-repeat left center;
	background-size: 10px;
	border-bottom: 1px solid #dfdfdf;
}

.index_shisheng_product_fb_fl_fb_xiala_li a:hover{
	color: #166bae;
	font-weight: bold;
	background: url(../images/img/index_product_jiantou_lan.png) no-repeat left center;
	background-size: 10px;
}

.index_shisheng_product_fb_fl_fb_xiala_li:last-child a {
	border-bottom: 0;
}

.index_shisheng_product_fb_fr {
	width: 100%;
	padding-left: 280px;
	margin-left: -280px;
}

.index_shisheng_product_fb_fr_ul{
	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

.index_shisheng_product_fb_fr_li{
    width:100%;
}

.index_shisheng_product_fb_fr_ft {
	overflow: hidden;
	border: 1px solid #dfdfdf;
	width: 100%;
}

.index_shisheng_product_fb_fr_ft li {
	background: #166bae;
}

.index_shisheng_product_fb_fr_ft li .img {
	width: 60%;
	overflow: hidden;
}

.index_shisheng_product_fb_fr_ft li .img img {
	width: 100%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_product_fb_fr_ft li .img:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

.index_shisheng_product_fb_fr_ft li .wz {
	width: 40%;
	padding: 3% 3%;
}

.index_shisheng_product_fb_fr_ft li .wz_ft h3 {
	font-size: 1.25rem;
	line-height: 2;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_shisheng_product_fb_fr_ft li .wz_ft h4 {
	font-size: 15px;
	line-height: 2;
	color: rgba(255, 255, 255, .8);
	overflow: hidden;
	max-height: 8em;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.index_shisheng_product_fb_fr_ft li .wz_fb {
	margin-top: 5%;
}

.index_shisheng_product_fb_fr_ft li .wz_fb h3 {
	font-size: 17px;
	line-height: 2;
	color: #fff;
	font-weight: bold;
}

.index_shisheng_product_fb_fr_ft li .wz_fb h4 {
	font-size: 14px;
	margin-top: 5px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, .5);
	line-height: 1.6;
	color: rgba(255, 255, 255, .8);
	overflow: hidden;
	max-height: 100px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.index_shisheng_product_fb_fr_fb {
	margin-top: 3%;
	position: relative;
	width: 100%;
}

.index_shisheng_product_fb_fr_fb_nnn {
	overflow: hidden;
	padding: 0 1px;
}

.index_shisheng_product_fb_fr_fb li .img {
	border: 1px solid #dfdfdf;
	overflow: hidden;
}

.index_shisheng_product_fb_fr_fb li .img img {
	width: 100%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

/*.index_shisheng_product_fb_fr_fb li:hover .img{*/
/*	border: 1px solid #166bae;*/
/*}*/

.index_shisheng_product_fb_fr_fb li:hover .img img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}


.index_shisheng_product_fb_fr_fb li .wz {
	font-size: 16px;
	line-height: 2;
	color: #666;
	padding: 5px;
	text-align: center;
	border-bottom: 1px solid #dfdfdf;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_product_fb_fr_fb li:hover .wz{
	color: #166bae;
	border-bottom: 1px solid #166bae;

}

.index_shisheng_product_fb_fr_fb_btnl,
.index_shisheng_product_fb_fr_fb_btnr {
	width: 30px;
	height: 30px;
	position: absolute;
	z-index: 500;
	top: 50%;
	cursor: pointer;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_shisheng_product_fb_fr_fb_btnl {
	left: -15px;
	background: #166bae url(../images/img/index_product_btnl.png) no-repeat center;
	background-size: 8px;
}

.index_shisheng_product_fb_fr_fb_btnr {
	right: -15px;
	background: #166bae url(../images/img/index_product_btnr.png) no-repeat center;
	background-size: 8px;
}

@media(max-width:991px) {
	.index_shisheng_product_ft h4 span {
		font-size: 18px;
	}

	.index_shisheng_product_fb_fl {
		width: 100%;
	}

	.index_shisheng_product_fb_fl_ft {
		padding: 15px 0;
	}

	.index_shisheng_product_fb_fl_ft h3 {
		font-size: 20px;
	}

	.index_shisheng_product_fb_fl_fb li h3 a {
		line-height: 3;
		font-size: 16px;
	}

	.index_shisheng_product_fb_fl_fb_xiala_li a {
		line-height: 36px;
	}

	.index_shisheng_product_fb_fr {
		width: 100%;
		padding-left: 0;
		margin-left: 0;
		margin-top: 3%;
	}

	.index_shisheng_product_fb_fr_ft li .wz_ft h3 {
		font-size: 18px;
		font-weight: bold;
	}

	.index_shisheng_product_fb_fr_ft li .wz {
		padding: 15px;
	}
}

@media(max-width:768px) {
	.index_shisheng_product {
		padding: 20px 0;
	}

	.index_shisheng_product_ft h3 {
		font-size: 24px;
	}

	.index_shisheng_product_ft h4 {
		margin-top: 10px;
	}
	
	.index_shisheng_product_ft h4 span{
		font-size: 17px;
	}

	.index_shisheng_product_fb {
		margin-top: 15px;
	}

	.index_shisheng_product_fb_fr {
		margin-top: 15px;
	}

	.index_shisheng_product_fb_fr_ft li .img {
		width: 100%;
	}

	.index_shisheng_product_fb_fr_ft li .wz {
		width: 100%;
	}

	.index_shisheng_product_fb_fr_ft li .wz_fb {
		margin-top: 10px;
	}

	.index_shisheng_product_fb_fr_fb {
		margin-top: 15px;
	}
}

@media(max-width:468px) {

	.index_shisheng_product_fb_fr_fb_btnl,
	.index_shisheng_product_fb_fr_fb_btnr {
		width: 25px;
		height: 25px;
		background-size: 8px;
	}

	.index_shisheng_product_fb_fr_fb_btnl {
		left: 0;
	}

	.index_shisheng_product_fb_fr_fb_btnr {
		right: 0;
	}

	.index_shisheng_product_ft h4 span {
		padding: 2px 10px;
	}
}

/*应用行业*/
.index_shisheng_application {
	padding: 3% 0;
	background: #f6f6f6;
}

.index_shisheng_application .index_shisheng_product_ft h4 span {
	background: #f6f6f6;
}

.index_shisheng_application_fc {
	margin: 3% 0;
	border: 1px solid #ccc;
}

.index_shisheng_application_fc ul {
	overflow: hidden;
}

.index_shisheng_application_fc li {
	width: 25%;
	border-right: 1px solid #ccc;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_application_fc li:nth-child(4n) {
	border-right: 0;
}

.index_shisheng_application_fc li:nth-child(n+5) {
	border-top: 1px solid #ccc;
}

.index_shisheng_application_fc li.on {
	border-right: 1px solid #166bae;
}

.index_shisheng_application_fc li a {
	display: block;
	padding: 0.85rem 9%;
	overflow: hidden;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_application_fc li.on a {
	background: #166bae;
}

.index_shisheng_application_fc li .img {
	width: 36px;
	line-height: 36px;
	position: relative;
	font-size: 0;
	text-align: center;
}

.index_shisheng_application_fc li .img img {
	width: 30px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_application_fc li .img .img2 {
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.index_shisheng_application_fc li.on .img .img1 {
	opacity: 0;
}

.index_shisheng_application_fc li.on .img .img2 {
	opacity: 1;
}

.index_shisheng_application_fc li .wz {
	font-size: 18px;
	line-height: 36px;
	color: #666;
	width: 100%;
	margin-left: -45px;
	padding-left: 45px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_application_fc li.on .wz {
	color: #fff;
}

.index_shisheng_application_fb_nnn_nn {
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_shisheng_application_fb_fl {
	width: 58%;
	font-size: 0;
}

.index_shisheng_application_fb_fl img {
	width: 100%;
}

.index_shisheng_application_fb_fr {
	width: 40%;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.index_shisheng_application_fb_fr_ft h3 {
	font-size: 1.3rem;
	line-height: 1.2;
	color: #333;
	padding-left: 15px;
	border-left: 3px solid #166bae;
}

.index_shisheng_application_fb_fr_ft h4 {
	font-size: 15px;
	line-height: 2;
	color: #666;
	max-height: 4em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 4% 0;
}

.index_shisheng_application_fb_fr_ft_link {
	font-size: 16px;
	line-height: 2;
	color: #fff;
	display: inline-block;
	background: #166bae;
	padding: 5px 1rem;
}

.index_shisheng_application_fb_fr_ft_link:hover {
	color: #fff;
}

.index_shisheng_application_fb_fr_fb {
	margin-top: 3%;
}

.index_shisheng_application_fb_fr_fb h3 {
	font-size: 20px;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
}

.index_shisheng_application_fb_fr_fb ul {
	overflow: hidden;
	margin-top: 4%;
}

.index_shisheng_application_fb_fr_fb li {
	width: 49%;
	margin-right: 2%;
	float: left;
}

.index_shisheng_application_fb_fr_fb li:nth-child(2n) {
	margin-right: 0;
}

.index_shisheng_application_fb_fr_fb li .img img {
	width: 100%;
}

.index_shisheng_application_fb_fr_fb li .wz {
	font-size: 16px;
	line-height: 2;
	color: #666;
	padding: 2% 0;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-bottom: 1px solid #dfdfdf;
}

@media(max-width:991px) {
	.index_shisheng_application_fb_fr_ft h3 {
		font-size: 20px;
	}

	.index_shisheng_application_fb_fr_fb h3 {
		font-size: 18px;
	}
}

@media(max-width:768px) {
	.index_shisheng_application {
		padding: 20px 0;
	}

	.index_shisheng_application_fc {
		margin: 15px 0;
	}

	.index_shisheng_application_fc li {
		width: 50%;
	}

	.index_shisheng_application_fc li:nth-child(2n) {
		border-right: 0;
	}

	.index_shisheng_application_fc li:nth-child(n+3) {
		border-top: 1px solid #ccc;
	}

	.index_shisheng_application_fc li .wz {
		font-size: 16px;
	}

	.index_shisheng_application_fb_fl {
		width: 100%;
	}

	.index_shisheng_application_fb_fr {
		width: 100%;
		margin-top: 15px;
	}

	.index_shisheng_application_fb_fr_ft h4 {
		margin: 10px 0;
	}

	.index_shisheng_application_fb_fr_ft_link {
		font-size: 15px;
		padding: 5px 15px;
	}

	.index_shisheng_application_fb_fr_fb {
		margin-top: 15px;
	}

	.index_shisheng_application_fb_fr_fb ul {
		margin-top: 15px;
	}

	.index_shisheng_application_fb_fr_fb li .wz {
		padding: 5px;
	}
}

@media(max-width:468px) {
	.index_shisheng_application_fc li a {
		padding: 10px;
	}

	.index_shisheng_application_fc li .img {
		width: 25px;
	}

	.index_shisheng_application_fc li .img img {
		width: 100%;
	}

	.index_shisheng_application_fc li .wz {
		padding-left: 30px;
		margin-left: -30px;
	}
}

/*实力*/
.index_wexun_shili {
	padding: 3% 0;
}

.index_wexun_shili_fb {
	margin-top: 3%;
}

.index_wexun_shili_fb li {
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_wexun_shili_fb li:nth-child(n+2) {
	margin-top: 3%;
}

.index_wexun_shili_fb_fl {
	width: 45%;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.index_wexun_shili_fb_fl_ft {
	padding-left: 15%;
	position: relative;
}

.index_wexun_shili_fb_fl_ft span {
	font-size: 3rem;
	line-height: 1.2;
	font-weight: bold;
	font-family: "Arial";
	color: #999;
	position: absolute;
	left: 0;
	top: 0;
}

.index_wexun_shili_fb_fl_ft h3 {
	font-size: 2rem;
	line-height: 1.5;
	color: #166bae;
	font-weight: bold;
}

.index_wexun_shili_fb_fl_ft h4 {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #333;
}

.index_wexun_shili_fb_fl_fc {
	font-size: 16px;
	line-height: 30px;
	color: #666;
	margin: 1% 0;
}

.index_wexun_shili_fb_fl_fb {
	width: 80%;
}

.index_wexun_shili_fb_fl_fb img {
	max-width: 100%;
}

.index_wexun_shili_fb_fl_fc p {
	padding-left: 20px;
	background: url(../images/img/index_duanluofuhao.png) no-repeat left 8px;
	background-size: 14px;
}

.index_wexun_shili_fb_fr {
	width: 50%;
}

.index_wexun_shili_fb_fr img {
	width: 100%;
}

@media(max-width:991px) {
	.index_wexun_shili_fb_fl_ft h4 {
		font-size: 18px;
	}

	.index_wexun_shili_fb_fl {
		width: 100%;
	}

	.index_wexun_shili_fb_fl_ft {
		padding-left: 8%;
	}

	.index_wexun_shili_fb_fl_fc {
		margin: 10px 0;
	}

	.index_wexun_shili_fb_fr {
		width: 100%;
		margin-top: 15px;
	}

	.index_wexun_shili_fb li:nth-child(2n) {
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		-o-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}

@media(max-width:768px) {
	.index_wexun_shili {
		padding: 20px 0;
	}

	.index_wexun_shili_fb li:nth-child(n+2) {
		margin-top: 15px;
	}

	.index_wexun_shili_fb_fl_ft {
		padding-left: 45px;
	}

	.index_wexun_shili_fb_fl_ft span {
		font-size: 35px;
	}

	.index_wexun_shili_fb_fl_ft h3 {
		font-size: 22px;
	}

	.index_wexun_shili_fb_fl_fb {
		width: 100%;
	}

	.index_wexun_shili_fb {
		margin-top: 15px;
	}
}

@media(max-width:468px) {
	.index_wexun_shili_fb_fl_ft {
		padding-left: 40px;
	}

	.index_wexun_shili_fb_fl_ft span {
		font-size: 30px;
	}

	.index_wexun_shili_fb_fl_ft h3 {
		font-size: 20px;
	}

	.index_wexun_shili_fb_fl_ft h4 {
		font-size: 16px;
	}
}

/*荣誉资质*/
.index_wexun_rongyu {
	padding: 3% 0;
	background: #f6f6f6;
}

.index_wexun_rongyu .index_shisheng_product_ft h4 span {
	background: #f6f6f6;
}

.index_wexun_rongyu_fb {
	margin-top: 3%;
	position: relative;
}

.index_wexun_rongyu_fb_nnn {
	overflow: hidden;
}

.index_wexun_rongyu_fb li {
	text-align: center;
}

.index_wexun_rongyu_fb li .img {
	overflow: hidden;
}

.index_wexun_rongyu_fb li .img img {
	width: 100%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
/*.index_wexun_rongyu_fb li:hover .img img{*/
/*	transform: scale(1.1);*/
/*	-webkit-transform: scale(1.1);*/
/*	-moz-transform: scale(1.1);*/
/*	-o-transform: scale(1.1);*/
/*	-ms-transform: scale(1.1);*/
/*}*/

.index_wexun_rongyu_fb li .wz {
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin-top: 10px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_wexun_rongyu_fb li:hover .wz{
	color: #166bae;
}

.index_wexun_rongyu_fb_btnl,
.index_wexun_rongyu_fb_btnr {
	position: absolute;
	width: 15px;
	height: 30px;
	top: 50%;
	margin-top: -16px;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_wexun_rongyu_fb_btnl {
	left: -25px;
	background: url(../images/img/index_hezuo_btnr.png) no-repeat center;
	background-size: 15px;
}

.index_wexun_rongyu_fb_btnr {
	right: -25px;
	background: url(../images/img/index_hezuo_btnl.png) no-repeat center;
	background-size: 15px;
}

@media(max-width:991px) {

	.index_wexun_rongyu_fb_btnl,
	.index_wexun_rongyu_fb_btnr {
		display: none;
	}
}

@media(max-width:768px) {
	.index_wexun_rongyu {
		padding: 20px 0;
	}

	.index_wexun_rongyu_fb {
		margin-top: 15px;
	}
}

/*新闻动态*/
.index_shisheng_news {
	padding: 3% 0;
}

.index_shisheng_news_fb {
	margin-top: 3%;
	overflow: hidden;
}

.index_shisheng_news_fb_fl {
	width: 65%;
}

.index_shisheng_news_fb_fl_ft {
	border-bottom: 1px solid #b7b4b5;
}

.index_shisheng_news_fb_fl_ft ul li {
	float: left;
}

.index_shisheng_news_fb_fl_ft ul li a {
	font-size: 20px;
	line-height: 45px;
	color: #666;
	padding-left: 35px;
	margin-right: 20px;
	display: block;
	position: relative;
}

.index_shisheng_news_fb_fl_ft ul li.on a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	background: #166bae;
}

.index_shisheng_news_fb_fl_ft ul li a .img .img2 {
	opacity: 0;
}

.index_shisheng_news_fb_fl_ft ul li a .img {
	width: 30px;
	line-height: 30px;
	position: absolute;
	left: 0;
	top: 50%;
	font-size: 0;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_shisheng_news_fb_fl_ft ul li a .img img {
	width: 30px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_news_fb_fl_ft ul li a .img .img2 {
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.index_shisheng_news_fb_fl_ft ul li.on a .img .img1 {
	opacity: 0;
}

.index_shisheng_news_fb_fl_ft ul li.on a {
	color: #166bae;
}

.index_shisheng_news_fb_fl_ft ul li.on a::before {
	display: block;
}

.index_shisheng_news_fb_fl_ft ul li.on a .img .img2 {
	opacity: 1;
}

.index_shisheng_news_fb_fl_ft_fr a {
	font-size: 16px;
	line-height: 45px;
	color: #666;
}

.index_shisheng_news_fb_fl_ft_fr a:hover {
	color: #166bae;
	text-decoration: underline;
}

.index_shisheng_news_fb_fl_fc {
	background: #f6f6f6;
	padding: 3% 0;
	margin: 1.2rem 0 2%;
}

.index_shisheng_news_fb_fl_fc ul {
	overflow: hidden;
}

.index_shisheng_news_fb_fl_fc li {
	float: left;
	width: 50%;
	padding: 0 5%;
	overflow: hidden;
}

.index_shisheng_news_fb_fl_fc li .wz h3 {
	font-size: 1.3rem;
	line-height: 2;
	color: #666;
	position: relative;
}

.index_shisheng_news_fb_fl_fc li .wz h3::before {
	content: '';
	position: absolute;
	left: -50%;
	bottom: 0;
	width: 200%;
	height: 1px;
	background: #dfdfdf;
}

.index_shisheng_news_fb_fl_fc li .wz h4 {
	font-size: 18px;
	line-height: 1.5;
	color: #333;
	margin: 5% 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_shisheng_news_fb_fl_fc li .wz h4:hover {
	color: #166bae;
	text-decoration: underline;
}

.index_shisheng_news_fb_fl_fc li .wz h5 {
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin: 0;
	max-height: 4em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.index_shisheng_news_fb_fl_fc li .img {
	margin-top: 3%;
}

.index_shisheng_news_fb_fl_fc li .img img {
	width: 100%;
}

.index_shisheng_news_fb_fl_fb {
	background: #f6f6f6;
	padding: 2% 5%;
}

.index_shisheng_news_fb_fl_fb li a {
	display: block;
	font-size: 15px;
	line-height: 38px;
	color: #666;
	padding-left: 15px;
	padding-right: 100px;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_shisheng_news_fb_fl_fb li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	width: 10px;
	height: 10px;
	background: url(../images/img/index_news_jiantou.png) no-repeat left center;
	background-size: 8px;
}

.index_shisheng_news_fb_fl_fb li a span {
	position: absolute;
	right: 0;
	color: #999;
	font-size: 14px;
}

.index_shisheng_news_fb_fl_fb li a:hover {
	color: #166bae;
	font-weight: bold;
}

.index_shisheng_news_fb_fl_fb li a:hover span {
	color: #166bae;
	font-weight: bold;
}

.index_shisheng_news_fb_fr {
	overflow: hidden;
	width: 32%;
}

.index_shisheng_news_fb_fr_ft {
	border-bottom: 1px solid #b7b4b5;
}

.index_shisheng_news_fb_fr_ft_fl {
	font-size: 20px;
	line-height: 45px;
	color: #666;
	padding-left: 35px;
	margin-right: 20px;
	display: block;
	position: relative;
	color: #166bae;
}

.index_shisheng_news_fb_fr_ft_fl::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	background: #166bae;
}

.index_shisheng_news_fb_fr_ft_fl .img .img2 {
	opacity: 0;
}

.index_shisheng_news_fb_fr_ft_fl .img {
	width: 30px;
	line-height: 30px;
	position: absolute;
	left: 0;
	top: 50%;
	font-size: 0;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_shisheng_news_fb_fr_ft_fl .img img {
	width: 30px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.index_shisheng_news_fb_fr_ft_fl .img .img2 {
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.index_shisheng_news_fb_fr_ft_fl .img .img1 {
	opacity: 0;
}

.index_shisheng_news_fb_fr_ft_fl ::before {
	display: block;
}

.index_shisheng_news_fb_fr_ft_fl .img .img2 {
	opacity: 1;
}

.index_shisheng_news_fb_fr_ft_fr {
	font-size: 16px;
	line-height: 45px;
	color: #666;
}

.index_shisheng_news_fb_fr_ft_fr:hover {
	color: #166bae;
	text-decoration: underline;
}

.index_shisheng_news_fb_fr_fb {
	margin-top: 1.2rem;
	background: #f6f6f6;
	padding: 7% 7% 2%;
	min-height: calc(100% - 1.2rem - 45px);
}

.index_shisheng_news_fb_fr_fb_ft {
	background: #fff;
	box-shadow: 0 0 10px #ececec;
}

.index_shisheng_news_fb_fr_fb_ft .img img {
	width: 100%;
}

.index_shisheng_news_fb_fr_fb_ft .wz {
	padding: 5%;
	border-bottom: 1px dashed #dfdfdf;
}

.index_shisheng_news_fb_fr_fb_ft .wz h3 {
	font-size: 18px;
	line-height: 1.5;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_shisheng_news_fb_fr_fb_ft .wz h3:hover {
	color: #166bae;
	text-decoration: underline;
}

.index_shisheng_news_fb_fr_fb_ft .wz h4 {
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin: 0;
	max-height: 4em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-top: 3%;
}

.index_shisheng_news_fb_fr_fb_fb {
	margin-top: 5%;
}

.index_shisheng_news_fb_fr_fb_fb li a {
	display: block;
	font-size: 15px;
	line-height: 34px;
	color: #666;
	padding-left: 15px;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_shisheng_news_fb_fr_fb_fb li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 10px;
	height: 10px;
	background: url(../images/img/index_news_jiantou.png) no-repeat left center;
	background-size: 8px;
}

.index_shisheng_news_fb_fr_fb_fb li a:hover {
	color: #166bae;
	font-weight: bold;
}

@media(max-width:991px) {
	.index_shisheng_news_fb_fl {
		width: 100%;
	}

	.index_shisheng_news_fb_fl_fc li .wz h3 {
		font-size: 20px;
	}

	.index_shisheng_news_fb_fr {
		width: 100%;
		margin-top: 3%;
	}
}

@media(max-width:768px) {
	.index_shisheng_news {
		padding: 20px 0;
	}

	.index_shisheng_news_fb {
		margin-top: 15px;
	}

	.index_shisheng_news_fb_fl_ft ul li a {
		font-size: 18px;
	}

	.index_shisheng_news_fb_fl_fc {
		margin: 15px 0;
		padding: 15px 0;
	}

	.index_shisheng_news_fb_fl_fc li {
		padding: 0 15px;
	}

	.index_shisheng_news_fb_fl_fc li .wz h4 {
		margin: 10px 0;
	}

	.index_shisheng_news_fb_fl_fb {
		padding: 10px 15px;
	}

	.index_shisheng_news_fb_fl_fb li a {
		padding-right: 85px;
	}

	.index_shisheng_news_fb_fr {
		margin-top: 15px;
	}

	.index_shisheng_news_fb_fr_ft_fl {
		font-size: 18px;
	}

	.index_shisheng_news_fb_fr_fb {
		padding: 15px;
		margin-top: 15px;
		min-height: auto;
	}

	.index_shisheng_news_fb_fr_fb_ft .wz {
		padding: 15px;
	}

	.index_shisheng_news_fb_fr_fb_ft .wz h4 {
		margin-top: 5px;
	}

	.index_shisheng_news_fb_fr_fb_fb {
		margin-top: 15px;
	}
}

@media(max-width:468px) {
	.index_shisheng_news_fb_fl_fc li {
		width: 100%;
	}

	.index_shisheng_news_fb_fl_fc li:nth-child(n+2) {
		margin-top: 10px;
	}
}

/*底部*/
.pc_footer {
	background: #166bae;
	padding: 3% 0;
}

.pc_footer_fl {
	width: 14.5%;
}

.pc_footer_fl_ft h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	color: #fff;
}

.pc_footer_fl_fb {
	margin-top: 25px;
}

.pc_footer_fl_fb li a {
	display: block;
	font-size: 15px;
	line-height: 30px;
	color: rgba(255, 255, 255, .8);
	position: relative;
	padding-left: 13px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_footer_fl_fb li a:hover {
	color: #fff;
}

.pc_footer_fl_fb li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 6px;
	height: 6px;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 50%;
}

.pc_footer_fc {
	width: 36%;
	border-left: 1px solid rgba(255, 255, 255, .8);
	border-right: 1px solid rgba(255, 255, 255, .8);
	padding: 0 2%;
	text-align: center;
}

.pc_footer_fc_nnn {
	display: inline-block;
	text-align: left;
}

.pc_footer_fc_ft h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	color: #fff;
}

.pc_footer_fc_fb {
	margin-top: 25px;
}

.pc_footer_fc_fb p {
	font-size: 15px;
	line-height: 30px;
	color: rgba(255, 255, 255, .8);
	position: relative;
	padding-left: 13px;
}

.pc_footer_fc_fb p::before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 6px;
	height: 6px;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 50%;
}

.pc_footer_fc_fb a {
	color: rgba(255, 255, 255, .8);
}

.pc_footer_fc_fb a:hover {
	color: #fff;
}

.pc_footer_fc1 {
	width: 20%;
	padding: 0 2%;
	border-right: 1px solid rgba(255, 255, 255, .8);
	text-align: center;
}

.pc_footer_fc1_nnn {
	display: inline-block;
	text-align: left;
	max-width: 100%;
}

.pc_footer_fc1_ft h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	color: #fff;
}

.pc_footer_fc1_fb {
	margin-top: 25px;
}

.pc_footer_fc1_fb li a {
	display: block;
	font-size: 15px;
	line-height: 30px;
	color: rgba(255, 255, 255, .8);
	position: relative;
	padding-left: 13px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_footer_fc1_fb li a:hover {
	color: #fff;
}

.pc_footer_fc1_fb li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 6px;
	height: 6px;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 50%;
}

.pc_footer_fr {
	width: 29.5%;
	padding-left: 2%;
}

.pc_footer_fr_nnn {
	max-width: 265px;
}

.pc_footer_fr_ft {
	text-align: right;
}

.pc_footer_fr_ft img {
	width: 100%;
	max-width: 230px;
}

.pc_footer_fr_ft h3 {
	font-size: 2rem;
	line-height: 1.1;
	color: #fff;
}

.pc_footer_fr_ft h4{
	font-size: 1rem;
	line-height: 1.5;
	color: #fff;
	margin-top: 10px;
}

.pc_footer_fr_fb {
	margin-top: 12px;
}

.pc_footer_fr_fb ul {
	overflow: hidden;
}

.pc_footer_fr_fb li {
	width: 49%;
	margin-right: 2%;
	float: right;
	text-align: center;
}

.pc_footer_fr_fb li:nth-child(2n) {
	margin-right: 0;
}

.pc_footer_fr_fb li .img {
	background: #ffffff;
	padding: 2px;
}

.pc_footer_fr_fb li .img img {
	width: 100%;
}

.pc_footer_fr_fb li .wz {
	font-size: 15px;
	line-height: 2;
	color: #fff;
}

@media(max-width:991px) {
	.pc_footer_fl {
		display: none;
	}

	.pc_footer_fc {
		width: 40%;
		border-left: 0;
		padding-left: 0;
		text-align: left;
	}

	.pc_footer_fc1 {
		width: 25%;
	}

	.pc_footer_fr {
		width: 35%;
	}

	.pc_footer_fc_ft h3,.pc_footer_fc1_ft h3{
		font-size: 18px;
	}

	.pc_footer_fc_fb{
		margin-top: 15px;
	}

	.pc_footer_fc1_fb{
		margin-top: 15px;
	}

	.pc_footer_fr_ft h3{
		font-size: 24px;
	}

	.pc_footer_fr_ft h4{
		font-size: 16px;
	}
}

@media(max-width:768px) {
	.pc_footer {
		padding: 20px 0;
	}

	.pc_footer_fc1 {
		display: none;
	}

	.pc_footer_fc {
		width: 100%;
		border-right: 0;
	}

	.pc_footer_fc_fb {
		margin-top: 10px;
	}

	.pc_footer_fr {
		width: 100%;
		margin-top: 10px;
		margin-top: 0;
		padding-left: 0;
	}

	.pc_footer_fr_nnn {
		float: left;
	}

	.pc_footer_fr_ft {
		text-align: left;
		display: none;
	}
	.pc_footer_fr_fb li{
	    float: left;
	}
}

/*友情链接*/
.pc_footer1 {
	padding: 15px 0;
}

.pc_footer1_fl {
	font-size: 16px;
	line-height: 30px;
	color: #666;
	width: 80px;
}

.pc_footer1_fr {
	width: 100%;
	padding-left: 80px;
	margin-left: -80px;
}

.pc_footer1_fr a {
	font-size: 16px;
	line-height: 30px;
	color: #999;
	margin: 0 5px;
}

.pc_footer1_fr a:hover {
	color: #166bae;
	text-decoration: underline;
}

@media(max-width:991px) {
	.pc_footer1 {
		display: none;
	}
}
