/*初始化样式*/
* {
	-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: #072b89;
}

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;
}

/**/
.max1400 {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 50px;
}

.page_con_zhuti {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 50px;
}

@media(max-width:1200px) {
	.max1400 {
		padding: 0 30px;
	}

	.page_con_zhuti {
		padding: 0 30px;
	}
}

@media(max-width:991px) {
	.max1400 {
		padding: 0 20px;
	}

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

@media(max-width:768px) {
	.max1400 {
		padding: 0 15px;
	}

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*头部*/
#pc_header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;

}

.pc_header_con {
	height: 90px;
	line-height: 90px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo {
	width: 18%;
	max-width: 200px;
}

.pc_logo img {
	max-width: 100%;
}

.pc_nav {
	width: 78%;
	max-width: 1050px;
}

.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;
	padding-right: 40px;
	margin-right: -40px;
}

.pc_nav>ul>.pc_nav_yiji_li_www{
	width: 14.285714285714%;
	text-align: center;
	font-size: 0;
	line-height: 0;
}
.pc_nav>ul>.pc_nav_yiji_li_www>li {
	height: 90px;
	position: relative;
	text-align: center;
	display: inline-block;
}

.pc_nav>ul>.pc_nav_yiji_li_www>li>a {
	font-size: 17px;
	color: #666;
	padding: 0 5px;
	line-height: 90px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

.pc_nav>ul>.pc_nav_yiji_li_www>li>a::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #072b89;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.pc_nav>ul>.pc_nav_yiji_li_www>li:hover>a::before,
.pc_nav>ul>.pc_nav_yiji_li_www>li.active>a::before {
	width: 100%;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 160px;
	left: 50%;
	top: 90px;
	background: #fff;
	/*border-radius: 3px;*/
	/*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 .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.pc_nav>ul>.pc_nav_yiji_li_www>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>.pc_nav_yiji_li_www>li:hover>a,
.pc_nav>ul>.pc_nav_yiji_li_www>li.active>a {
	color: #072b89;
}

.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;
	display: none;
}

.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: #072b89;
	color: #fff;
}

.pc_nav>ul>.pc_nav_yiji_li_www>li:after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	left: 0;
	height: 10px;
	opacity: 0;
	top: 100%;
	display: none;
}

.pc_nav_erji_w_product{
	position: fixed;
	width: 100%;
	top: 90px;
	left: 0;
	background: #fff;
	padding:40px 0 35px;
	border-top: 1px solid #ddd;
	box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(0, 20px);
	-moz-transform: translate(0, 20px);
	-ms-transform: translate(0, 20px);
	-o-transform: translate(0, 20px);
	transform: translate(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;
}

.pc_nav>ul>.pc_nav_yiji_li_www>li:hover .pc_nav_erji_w_product {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}

.pc_nav_erji_w_product_li{
	width: 18.4%;
	margin-right: 2%;
	float: left;
}

.pc_nav_erji_w_product_li:nth-child(5n){
	margin-right: 0;
}

.pc_nav_erji_w_product_li_ft .img{
	overflow: hidden;
}

.pc_nav_erji_w_product_li_ft .img img{
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.pc_nav_erji_w_product_li:hover .pc_nav_erji_w_product_li_ft .img img{
	transform: scale(1.08);
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
}

.pc_nav_erji_w_product_li_fb{
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 10px;
}

.pc_nav_erji_w_product_li:hover .pc_nav_erji_w_product_li_fb{
	color: #072b89;
}

.pc_sousuo {
	position: relative;
	z-index: 5;
	width: 30px;
	height: 90px;
	z-index: 999;
}

.pc_sousuo1 {
	width: 30px;
	height: 30px;
	background: url(../images/img/top_sousuo_hui.png) no-repeat center;
	background-size: 30px;
	cursor: pointer;
	margin-top: 30px;
}

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 100%;
	width: 250px;
	z-index: 999;
	background: #072b89;
	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 {
	width: 180px;
	text-align: center;
	background: #072b89;
	border-radius: 25px;
	font-size: 0;
	padding: 5px 0;
	line-height: 0;
}

.pc_nav_dianhua i {
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 26px;
	background: #072b89 url(../images/img/top_dianhua.png) no-repeat center;
	background-size: 15px;
	margin-right: 5px;
}

.pc_nav_dianhua span {
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
	line-height: 26px;
	color: #fff;
}


/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
	margin-top: 90px;
}

.index_banner img {
	width: 100%;
}

.index_banner_yuandian {
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 6% !important;
	z-index: 99;
}

.index_banner_yuandian span {
	width: 5rem;
	height: 3px;
	background: rgba(255, 255, 255, 1);
	opacity: 1;
	border-radius: 0 !important;
	margin: 0 4px !important;
	position: relative;
	overflow: hidden;
}

.index_banner_yuandian span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: #072b89;
	z-index: 10;
}

.index_banner_yuandian span.swiper-pagination-bullet-active::before {
	width: 100%;
	-webkit-animation: width1 5s linear;
	-moz-animation: width1 5s linear;
	-ms-animation: width1 5s linear;
	-o-animation: width1 5s linear;
	animation: width1 5s linear;
}

@-webkit-keyframes width1 {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

@keyframes width1 {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

@media(max-width:991px) {
	.index_banner {
		margin-top: 0;
	}
}

@media(max-width:768px) {
	.index_banner_yuandian {
		bottom: 10px !important;
	}

	.index_banner_yuandian span {
		margin: 0 3px !important;
		width: 40px;
		height: 2px;
	}
}

@media(max-width:468px) {
	.index_banner_yuandian span {
		width: 30px;
	}
}

/*标题*/
.index_yachuang_resource_ft h3{
	font-size: 2rem;
	line-height: 1.2;
	color: #333;
	font-weight: bold;
	text-align: center;
}

.index_yachuang_resource_ft h4{
	font-size: 18px;
	line-height: 1.5;
	color: #666;
	text-align: center;
	margin-top: 10px;
	max-width: 1005px;
	margin-left: auto;
	margin-right: auto;
}
@media(max-width:991px) {
	.index_yachuang_resource_ft h3{
		font-size: 26px;
	}

	.index_yachuang_resource_ft h4{
		font-size: 17px;
		margin-top: 5px;
	}
}
@media(max-width:468px) {
	.index_yachuang_resource_ft h3{
		font-size: 24px;
	}

	.index_yachuang_resource_ft h4{
		font-size: 16px;
	}
}

/*公司简介*/
.index_yachuang_gai_about{
    padding: 4% 0;
}
.index_yachuang_gai_about_fl{
    width: 50%;
    /*border-radius: 0 80px 0 0;*/
}
.index_yachuang_gai_about_fl img{
    width: 100%;
    opacity: 0;
}
.index_yachuang_gai_about_fr{
    width: 47%;
    padding-right: calc(50vw - 710px);
	-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_yachuang_gai_about_fr_ft{
    width: 100%;
}
.index_yachuang_gai_about_fr_ft h3{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    color: #333;
    position: relative;
    padding: .7rem 0;
}
.index_yachuang_gai_about_fr_ft h3::before{
    content: 'ABOUT';
    font-size: 5rem;
    line-height: .8;
    font-weight: bold;
    color: transparent;
    text-align: left;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.index_yachuang_gai_about_fr_ft h4{
    font-size: 1.5rem;
    line-height: 1.5;
    color: #333;
}
.index_yachuang_gai_about_fr_ft h4 span{
    color: #072b89;
}
.index_yachuang_gai_about_fr_fc{
    font-size: 18px;
    line-height: 2;
    color: #666;
    margin: 3% 0;
    width: 100%;
}
.index_yachuang_gai_about_fr_fb{
    width: 100%;
}

.index_yachuang_gai_about_fr_fb li{
    width: 32%;
    margin-right: 2%;
    position: relative;
    float: left;
}
.index_yachuang_gai_about_fr_fb li:nth-child(3n){
    margin-right: 0;
}
.index_yachuang_gai_about_fr_fb li .img{
    overflow: hidden;
}

.index_yachuang_gai_about_fr_fb li .img img{
    width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.index_yachuang_gai_about_fr_fb li .wz{
    position: absolute;
    left: 0;
    bottom: 5%;
    padding: 0 5%;
    width: 100%;
}
.index_yachuang_gai_about_fr_fb li .wz h3{
    font-size: 17px;
    line-height: 1.5;
    color: #fff;
}
.index_yachuang_gai_about_fr_fb li .wz h4{
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
}
.index_yachuang_gai_about_fr_fb li:hover .img img{
	transform: scale(1.08);
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
}

@media(max-width:1500px){
    .index_yachuang_gai_about_fr{
        padding-right: 50px;
    }
    .index_yachuang_gai_about_fr_fc{
        font-size: 17px;
        line-height: 1.8;
    }
}
@media(max-width:1200px){
    .index_yachuang_gai_about_fr{
        padding-right: 30px;
    }
    .index_yachuang_gai_about_fr_fc{
        font-size: 16px;
    }
}
@media(max-width:991px){
    .index_yachuang_gai_about{
    	-webkit-flex-direction: column-reverse;
	    -moz-flex-direction: column-reverse;
	    -ms-flex-direction: column-reverse;
	    -o-flex-direction: column-reverse;
	    flex-direction: column-reverse;
    }
    .index_yachuang_gai_about_fl{
        width: 100%;
        padding: 0 20px;
        margin-top: 25px;
        background: none!important;
        border-radius: 0;
    }
    .index_yachuang_gai_about_fl img{
        opacity: 1;
    }
    .index_yachuang_gai_about_fr{
        width: 100%;
        padding: 0 20px;
    }
    .index_yachuang_gai_about_fr_ft h3{
        font-size: 26px;
    }
    .index_yachuang_gai_about_fr_ft h4{
        font-size: 18px;
    }
    .index_yachuang_gai_about_fr_fc{
        margin: 12px 0 15px;
    }
}
@media(max-width:768px){
    .index_yachuang_gai_about{
        padding: 25px 0;
    }
    .index_yachuang_gai_about_fr{
        padding: 0 15px;
    }
    .index_yachuang_gai_about_fr_fc{
        margin: 10px 0 12px;
    }
    .index_yachuang_gai_about_fl{
        padding: 0 15px;
        margin-top: 20px;
    }
}
@media(max-width:468px){
    .index_yachuang_gai_about{
        padding: 20px 0;
    }
    .index_yachuang_gai_about_fr_ft h3{
        font-size: 22px;
    }
    .index_yachuang_gai_about_fl{
        margin-top:15px;
    }
    .index_yachuang_gai_about_fr_fb li{
        width: 100%;
        margin-right: 0;
    }
    .index_yachuang_gai_about_fr_fb li:nth-child(n+2){
        margin-top: 15px;
    }
    .index_yachuang_gai_about_fr_fb li .wz{
        padding: 0 15px;
        bottom: 15px;
    }
}

/*产品中心*/
.index_yachuang_gai_product_ft{
    padding: 5% 0;
}
.index_yachuang_gai_product_ft ul{
	-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_yachuang_gai_product_ft li{
    text-align: center;
    /* max-width: 17%; */
	width: 18.5%;
	max-width: 240px;
    background: #fff;
    /* padding: 20px 20px 15px; */
    border-radius: 5px;
    overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_yachuang_gai_product_ft li:nth-child(5n){
    margin-right: 0;
}
.index_yachuang_gai_product_ft li .img{
    margin: 0 auto;
    position: relative;
}
.index_yachuang_gai_product_ft li .img::before{
    content: '';
    position: absolute;
    z-index: 10;
    left: -2%;
    top: -2%;
    width: 104%;
    height: 104%;
    background: url(../images/img/pro_m.png) no-repeat center;
    background-size: 100% 100%;
	display: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_yachuang_gai_product_ft li .img img{
    width: 100%;
}
.index_yachuang_gai_product_ft li .wz{
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    /* margin-top: 10px; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	
	padding: 15px;
	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_yachuang_gai_product_ft li:hover,.index_yachuang_gai_product_ft li.on{
	/* background: #2e8e38; */
	background: #072b89;
}
.index_yachuang_gai_product_ft li:hover .wz,.index_yachuang_gai_product_ft li.on .wz{
    color: #fff;
}
.index_yachuang_gai_product_ft li:hover .img::before,.index_yachuang_gai_product_ft li.on .img::before{
    background: url(../images/img/pro_m_hover.png) no-repeat center;
    background-size: 100% 100%;
}
.index_yachuang_gai_product_fb_li_fl_ft li h3{
    font-size: 2rem;
    line-height: 1.5;
    color: #072b89;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_yachuang_gai_product_fb_li_fl_ft li h4{
    font-size: 17px;
    line-height: 1.5;
    color: #666;
    margin-top: 3%;
}
.index_yachuang_gai_product_fb_li_fl{
    width: 51%;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: calc(50vw - 710px);
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
.index_yachuang_gai_product_fb_li_fl_con{
    width: 100%;
}

.index_yachuang_gai_product_fb_li_fl_ft{
    overflow: hidden;
}

.index_yachuang_gai_product_fb_li_fl_fb{
    margin-top: 10%;
    overflow: hidden;
}
.index_yachuang_gai_product_fb_li_fl_fb_con{
    padding: 0 2px;
}
.index_yachuang_gai_product_fb_li_fl_fb li {
    text-align: center;
}
.index_yachuang_gai_product_fb_li_fl_fb li .img{
    border: 1px solid #ddd;
    overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_yachuang_gai_product_fb_li_fl_fb li .img .img_con{
    overflow: hidden;
}

.index_yachuang_gai_product_fb_li_fl_fb li .img img{
    width: 100%;
}

.index_yachuang_gai_product_fb_li_fl_fb li .wz{
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_yachuang_gai_product_fb_li_fl_fb li.on .img{
    border:1px solid #072b89;
}
.index_yachuang_gai_product_fb_li_fl_fb li.on .wz{
    color: #072b89;
}
.index_yachuang_gai_product_fb_li_fl_fb li:hover .img{
    border:1px solid #072b89;
}

.index_yachuang_gai_product_fb_li_fl_fb li:hover .wz{
    color: #072b89;
}
.index_yachuang_gai_product_fb_li_fr{
    width: 46%;
    overflow: hidden;
	padding: 2% 0;
}

.index_yachuang_gai_product_fb_li_fr li img{
    width: 100%;
}
@media(max-width:1500px){
    .index_yachuang_gai_product_fb_li_fl{
        padding-left: 50px;
    }
    .index_yachuang_gai_product_fb_li_fl_fb{
        margin-top: 5%;
    }
    .index_yachuang_gai_product_fb_li_fl{
        width: 49%;
    }
}
@media(max-width:1200px){
    .index_yachuang_gai_product_fb_li_fl{
        padding-left: 30px;
    }
    .index_yachuang_gai_product_fb_li_fl_ft li h4{
        font-size: 16px;
    }
}
@media(max-width:991px){
    /*.index_yachuang_gai_product_ft li .img{*/
    /*    width: 50px;*/
    /*    line-height: 50px;*/
    /*}*/
    /*.index_yachuang_gai_product_ft li .wz{*/
    /*    font-size: 17px;*/
    /*}*/
    .index_yachuang_gai_product_ft li{
        /* padding: 15px 15px 10px; */
    }
    .index_yachuang_gai_product_fb_li_fl{
        width: 100%;
        padding: 25px 20px 0;
    }
    .index_yachuang_gai_product_fb_li_fl_ft li h4{
        margin-top: 5px;
    }
    .index_yachuang_gai_product_fb_li_fl_fb{
        margin-top: 15px;
    }
    .index_yachuang_gai_product_fb_li_fr{
        width: 100%;
        margin-top: 10px;
		padding: 0 20px 25px;
    }
    .index_yachuang_gai_product_fb_li_fl_ft li h3{
        font-size: 26px;
    }
	.index_yachuang_gai_product_ft li .wz{
		padding: 10px;
	}
}

@media(max-width:768px){
    .index_yachuang_gai_product_ft{
        padding: 25px 0;
    }
    .index_yachuang_gai_product_ft li{
        max-width: 100%;
		width: 31%;
    }
    .index_yachuang_gai_product_ft li:nth-child(n+4){
        margin-top: 2%;
    }
    .index_yachuang_gai_product_ft li .wz{
        font-size: 16px;
    }
    .index_yachuang_gai_product_fb_li_fl{
        padding: 20px 15px 0;
    }
    .index_yachuang_gai_product_fb_li_fl_ft li h3{
        font-size: 24px;
    }
	.index_yachuang_gai_product_fb_li_fr{
		padding: 0 15px 20px;
	}
}
@media(max-width:468px){
    .index_yachuang_gai_product_ft{
        padding: 20px 0;
    }
    .index_yachuang_gai_product_ft li{
        max-width: 100%;
		width: 48%;
    }
    .index_yachuang_gai_product_ft li:nth-child(n+3){
        margin-top: 10px;
    }
    .index_yachuang_gai_product_fb_li_fl_ft li h4{
        font-size: 16px;
    }
    .index_yachuang_gai_product_fb_li_fr{
        display: none;
    }
    .index_yachuang_gai_product_fb_li_fl_ft li h3{
        font-size: 22px;
    }
    .index_yachuang_gai_product_fb_li_fl{
        padding: 20px 15px 18px;
    }
    .index_yachuang_gai_product_fb_li_fl_fb li .wz{
        margin-top: 8px;
    }
}
/*应用案例*/
.index_yachuang_gai_baozhang {
	padding: 4% 0;
	/* background: #efefef; */
}

.index_yachuang_gai_baozhang_ft_fr h3 {
	color: #333;
}

.index_yachuang_gai_baozhang_ft_fr h4 {
	color: #072b89;
	background: url(../images/img/index_xuanze_dianhua.png) no-repeat left center;
	background-size: 1.8rem;
}

.index_yachuang_gai_baozhang_fc {
	margin: 3% 0 0;
}

.index_yachuang_gai_baozhang_fc {
	overflow: hidden;
}

.index_yachuang_gai_baozhang_fc ul {
	position: relative;
	font-size: 0;
	overflow: hidden;
}

.index_yachuang_gai_baozhang_fc li {
	width: 40%;
	cursor: pointer;
	border-left: 10px solid #fff;
	display: inline-block;
	overflow: hidden;
	position: absolute;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.index_yachuang_gai_baozhang_fc li::before,
.index_yachuang_gai_baozhang_fc li::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 10px;
	width: 0;
	height: 1px;
	background: rgba(255, 255, 255, .5);
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_yachuang_gai_baozhang_fc li::after {
	top: auto;
	bottom: 10px;
}

.index_yachuang_gai_baozhang_fc_xian1,
.index_yachuang_gai_baozhang_fc_xian2 {
	position: absolute;
	left: 10px;
	top: 50%;
	width: 1px;
	height: 0;
	background: rgba(255, 255, 255, .5);
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_yachuang_gai_baozhang_fc_xian2 {
	right: 10px;
	left: auto;
}

.index_yachuang_gai_baozhang_fc li.active .index_yachuang_gai_baozhang_fc_xian1,
.index_yachuang_gai_baozhang_fc li.active .index_yachuang_gai_baozhang_fc_xian2 {
	height: calc(100% - 20px);
}

.index_yachuang_gai_baozhang_fc li.active::before,
.index_yachuang_gai_baozhang_fc li.active::after {
	width: calc(100% - 20px);
}

.index_yachuang_gai_baozhang_fc li:nth-child(1) {
	border-left: 0;
	left: 0;
	position: relative;
}

.index_yachuang_gai_baozhang_fc li:nth-child(2) {
	left: 40%;
}

.index_yachuang_gai_baozhang_fc li:nth-child(3) {
	left: 52%;
}

.index_yachuang_gai_baozhang_fc li:nth-child(4) {
	left: 64%;
}

.index_yachuang_gai_baozhang_fc li:nth-child(5) {
	left: 76%;
}

.index_yachuang_gai_baozhang_fc li:nth-child(6) {
	left: 88%;
}

.index_yachuang_gai_baozhang_fc li .wz {
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 25px;
	padding-left: 25px;
}

.index_yachuang_gai_baozhang_fc li .wz .wz_img {
	width: 50px;
	margin: 0 auto;
	line-height: 50px;
}

.index_yachuang_gai_baozhang_fc li .wz .wz_img img {
	width: 100%;
}

.index_yachuang_gai_baozhang_fc li .wz .wz_z {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1.2;
	color: #fff;
	margin-top: 15px;
	text-align: center;
	opacity: 1;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.index_yachuang_gai_baozhang_fc li .wz .wz_z h3 {
	width: 30px;
	font-size: 22px;
}

.index_yachuang_gai_baozhang_fc li .wz .wz_z h4 {
	width: 30px;
	font-size: 22px;
}

.index_yachuang_gai_baozhang_fc li.active .wz .wz_z {
	opacity: 0;
}

.index_yachuang_gai_baozhang_fc li .wz2 {
	position: absolute;
	width: 100%;
	padding: 0 25px;
	margin: 0 -25px;
	left: 25px;
	bottom: 25px;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.index_yachuang_gai_baozhang_fc li .wz2 .wz2_fl {
	width: 100%;
	padding-right: 130px;
	margin-right: -130px;
}

.index_yachuang_gai_baozhang_fc li .wz2 .wz2_fl h3 {
	font-size: 22px;
	line-height: 1.5;
	color: #fff;
}

.index_yachuang_gai_baozhang_fc li .wz2 .wz2_fl h4 {
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
}

.index_yachuang_gai_baozhang_fc li .wz2 .wz2_fr a {
	font-size: 15px;
	line-height: 36px;
	color: #072b89;
	display: block;
	width: 110px;
	background: #fff;
	border-radius: 30px;
	text-align: center;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.index_yachuang_gai_baozhang_fc li .wz2 .wz2_fr a:hover{
	background: #072b89;
	color: #fff;
}
.index_yachuang_gai_baozhang_fc li.active .wz2 {
	opacity: 1;
}

.index_yachuang_gai_baozhang_fb li {
	width: 25%;
	background: url(../images/img/index_shuju_bj.png) no-repeat center;
	background-size: 280px auto;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_yachuang_gai_baozhang_fb li .index_yachuang_gai_baozhang_fb_fl {
	font-size: 65px;
	line-height: 1.1;
	color: #333;
	margin-right: 10px;
	font-family: Arial;
}

.index_yachuang_gai_baozhang_fb li .index_yachuang_gai_baozhang_fb_fr h3,
.index_yachuang_gai_baozhang_fb li .index_yachuang_gai_baozhang_fb_fr h4 {
	font-size: 17px;
	line-height: 2;
	color: #666;
}

@media(max-width:1280px) {
	.index_yachuang_gai_baozhang_fc li .wz .wz_img {
		width: 40px;
	}

	.index_yachuang_gai_baozhang_fc li .wz .wz_z h4,
	.index_yachuang_gai_baozhang_fc li .wz .wz_z h3 {
		font-size: 20px;
		width: 25px;
	}

	.index_yachuang_gai_baozhang_fc li .wz2 .wz2_fl h3 {
		font-size: 20px;
	}

	.index_yachuang_gai_baozhang_fb li .index_yachuang_gai_baozhang_fb_fl {
		font-size: 60px;
	}

	.index_yachuang_gai_baozhang_fb li .index_yachuang_gai_baozhang_fb_fr h3,
	.index_yachuang_gai_baozhang_fb li .index_yachuang_gai_baozhang_fb_fr h4 {
		font-size: 15px;
	}

	.index_yachuang_gai_baozhang_fb li {
		background-size: 90% auto;
	}
}

@media(max-width:991px) {
	.index_yachuang_gai_baozhang_ft_fr {
		display: none;
	}

	.index_yachuang_gai_baozhang_fc li {
		width: 49% !important;
		margin-right: 2% !important;
		position: relative !important;
		border: 0 !important;
		left: 0 !important;
		top: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
	}

	.index_yachuang_gai_baozhang_fc li:nth-child(2n) {
		margin-right: 0 !important;
	}

	.index_yachuang_gai_baozhang_fc li:nth-child(n+3) {
		margin-top: 2% !important;
	}

	.index_yachuang_gai_baozhang_fc li .img img {
		width: 100%;
	}

	.index_yachuang_gai_baozhang_fc li .wz {
		display: none !important;
	}

	.index_yachuang_gai_baozhang_fc li::before,
	.index_yachuang_gai_baozhang_fc li::after {
		width: calc(100% - 20px);
	}

	.index_yachuang_gai_baozhang_fc li .index_yachuang_gai_baozhang_fc_xian1,
	.index_yachuang_gai_baozhang_fc li .index_yachuang_gai_baozhang_fc_xian2 {
		height: calc(100% - 20px);
	}

	.index_yachuang_gai_baozhang_fc li .wz2 {
		opacity: 1;
	}

	.index_yachuang_gai_baozhang_fb li {
		width: 50%;
		background-size: 280px auto;
	}

	.index_yachuang_gai_baozhang_fb li:nth-child(n+3) {
		margin-top: 15px;
	}
}

@media(max-width:768px) {
	.index_yachuang_gai_baozhang {
		padding: 25px 0;
	}

	.index_yachuang_gai_baozhang_fc {
		margin: 15px 0 0;
	}

	.index_yachuang_gai_baozhang_fc li {
		width: 100% !important;
		margin-right: 0 !important;
	}

	.index_yachuang_gai_baozhang_fc li:nth-child(n+2) {
		margin-top: 15px !important;
	}
}

@media(max-width:468px) {
	.index_yachuang_gai_baozhang_fb li .index_yachuang_gai_baozhang_fb_fl {
		font-size: 32px;
		margin-right: 5px;
	}

	.index_yachuang_gai_baozhang_fb li .index_yachuang_gai_baozhang_fb_fr h3,
	.index_yachuang_gai_baozhang_fb li .index_yachuang_gai_baozhang_fb_fr h4 {
		line-height: 1.2;
	}

	.index_yachuang_gai_baozhang_fc li .wz2 .wz2_fl {
		padding-right: 0;
		margin-right: 0;
	}

	.index_yachuang_gai_baozhang_fc li .wz2 .wz2_fr a {
		margin-top: 10px;
		font-size: 15px;
	}
}

/*合作客户*/
.index_yachuang_gai_shouquanshang {
	padding: 4% 0;
	background: #efefef;
}

.index_yachuang_gai_shouquanshang_fb {
	margin-top: 3%;
	padding: 0 25px;
	position: relative;
}

.index_yachuang_gai_shouquanshang_fb_nnn {
	overflow: hidden;
	padding: 5px;
}

.index_yachuang_gai_shouquanshang_fb ul li {
	text-align: center;
	cursor: pointer;
}

.index_yachuang_gai_shouquanshang_fb ul 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_yachuang_gai_shouquanshang_fb ul li .img img {
	width: 100%;
}

.index_yachuang_gai_shouquanshang_fb ul li .wz {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_yachuang_gai_shouquanshang_fb li:hover .img {
	border: 1px solid #072b89;
	box-shadow: 0 0 2px #072b89;
}

.index_yachuang_gai_shouquanshang_fb li:hover .wz {
	color: #072b89;
}

.index_yachuang_gai_shouquanshang_fb_btnl,
.index_yachuang_gai_shouquanshang_fb_btnr {
	position: absolute;
	width: 15px;
	height: 30px;
	top: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_yachuang_gai_shouquanshang_fb_btnl {
	left: 0;
	background: url(../images/img/index_hezuo_btnr.png) no-repeat center;
	background-size: 13px;
}

.index_yachuang_gai_shouquanshang_fb_btnr {
	right: 0;
	background: url(../images/img/index_hezuo_btnl.png) no-repeat center;
	background-size: 13px;
}

@media(max-width:1200px) {
	.index_yachuang_gai_shouquanshang_ft h3 {
		font-size: 28px;
	}
}

@media(max-width:768px) {
	.index_yachuang_gai_shouquanshang {
		padding: 25px 0;
	}

	.index_yachuang_gai_shouquanshang_fb {
		margin-top: 15px;
	}
}

@media(max-width:468px) {
	.index_yachuang_gai_shouquanshang_fb {
		padding: 0 20px;
	}
}

/*新闻*/
.index_yachuang_gai_xinwen {
	padding: 4% 0;
	/* background: #efefef; */
}

.index_yachuang_gai_xinwen_fc{
	padding: 3% 0 10px;
}

.index_yachuang_gai_xinwen_fc ul{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_yachuang_gai_xinwen_fc li{
	padding:0 .8rem;
	max-width: 33.333333333%;
}

.index_yachuang_gai_xinwen_fc li a{
	display: block;
	font-size: 16px;
	line-height: 45px;
	color: #fff;
	background: #333;
	min-width: 150px;
	padding: 0 15px;
	text-align: center;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.index_yachuang_gai_xinwen_fc li.on a{
	background: #072b89;
}

.index_yachuang_gai_xinwen_fb {
	margin-top: 3%;
}

.index_yachuang_gai_xinwen_fb_nn {
	overflow: hidden;
	padding: 10px;
	margin: -10px;
}

.index_yachuang_gai_xinwen_fb li {
	background: #fff;
}

.index_yachuang_gai_xinwen_fb li a{
	display: block;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 2px rgba(0, 0, 0, .1);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_yachuang_gai_xinwen_fb li:hover a{
	box-shadow: 0 0 8px rgba(0, 0, 0, .3);
}

.index_yachuang_gai_xinwen_fb li .img {
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.index_yachuang_gai_xinwen_fb li .img img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_yachuang_gai_xinwen_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_yachuang_gai_xinwen_fb li .wz {
	border: 1px solid #d3d3d3;
	border-top: 0;
	padding: 5% 6%;
	border-radius: 0 0 10px 10px;
}

.index_yachuang_gai_xinwen_fb li .wz h3 {
	font-size: 20px;
	line-height: 1.5;
	font-weight: bold;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-bottom: 15px;
	border-bottom: 1px solid #d7e1f3;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.index_yachuang_gai_xinwen_fb li:hover .wz h3 {
	color: #072b89;
}

.index_yachuang_gai_xinwen_fb li .wz h4 {
	font-size: 15px;
	line-height: 2;
	color: #666;
	max-height: 4em;
	margin: 15px 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.index_yachuang_gai_xinwen_fb li .wz h5 {
	display: inline-block;
	margin: 0;
	font-size: 15px;
	line-height: 2;
	color: #333;
	padding-right: 30px;
	background: url(../images/img/index_jiantou_xinwen.png) no-repeat right center;
	background-size: 25px;
}

@media(max-width:1200px) {
	.index_yachuang_gai_xinwen_fb li .wz h3 {
		font-size: 18px;
	}
}

@media(max-width:991px) {
	.index_yachuang_gai_xinwen_fb li .wz {
		padding: 20px;
	}
}

@media(max-width:768px) {
	.index_yachuang_gai_xinwen {
		padding: 25px 0;
	}

	.index_yachuang_gai_xinwen_fb {
		margin-top: 20px;
	}

	.index_yachuang_gai_xinwen_fc{
		padding: 20px 0 0;
	}

	.index_yachuang_gai_xinwen_fc li{
		padding:0 5px;
	}

	.index_yachuang_gai_xinwen_fc li a{
		min-width: 125px;
		line-height: 42px;
	}
}

@media(max-width:468px){
	.index_yachuang_gai_xinwen_fc li{
		width: 33.333333333%;
	}

	.index_yachuang_gai_xinwen_fc li a{
		min-width: 100%;
		padding: 0 6px;
		line-height: 40px;
	}
}

/*footer*/
.footer {
	background: #fafafa;
}

.footer_ft {
	padding: 30px 0;
	outline-color: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.footer_ft_fl {
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.footer_ft_fl_fl {
	width: 36px;
	margin-right: 1.3rem;
}

.footer_ft_fl_fl img {
	width: 100%;
}

.footer_ft_fl_fr ul {
	overflow: hidden;
}

.footer_ft_fl_fr li {
	float: left;
	margin-left: 1.5rem;
}

.footer_ft_fl_fr li a {
	font-size: 15px;
	line-height: 1.5;
	color: #666;
	display: block;
}

.footer_ft_fl_fr li a:hover {
	color: #072b89;
	text-decoration: underline;
}

.footer_ft_fr {
	width: 320px;
}

.footer_ft_fr form {
	overflow: hidden;
}

.footer_ft_fr input {
	outline: none;
	line-height: 40px;
	background: none;
	border: 0;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.8);
}

.footer_ft_fr_fl {
	width: 78%;
	border: 1px solid #dddddd;
}

.footer_ft_fr_fl input {
	width: 100%;
	padding: 0 20px;
}

.footer_ft_fr_fr {
	width: 22%;
	border: 1px solid #072b89 !important;
	background: #072b89 !important;
	color: #fff !important;
}

.footer_fc {
	border-top: 1px solid #dddddd;
	padding: 30px 0;
	overflow: hidden;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.footer_fc_fl h3 {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

.footer_fc_fr {
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.footer_fc_fr_fl {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

.footer_fc_fr_fr {
	width: 110px;
	margin-left: 1.5rem;
}

.footer_fc_fr_fr img {
	width: 100%;
}

.footer_fb {
	background: #f5f5f5;
	padding: 20px 0;
	font-size: 15px;
	line-height: 1.5;
	color: #666;
}

.footer_fb a {
	color: #666;
}

.footer_fb a:hover {
	color: #072b89;
	text-decoration: underline;
}


@media(max-width:991px) {
	.footer_ft_fl {
		width: 100%;
	}

	.footer_ft_fl_fl {
		display: none;
	}

	.footer_ft_fl_fr {
		width: 100%;
	}

	.footer_ft_fl_fr ul {
		width: 100%;
		-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
		-ms-justify-content: space-between;
		-o-justify-content: space-between;
		justify-content: space-between;
	}

	.footer_ft_fl_fr li {
		max-width: 16.66666666666667%;
		margin-left: 0;
	}

	.footer_ft_fl_fr li:nth-child(1) {
		margin-left: 0;
	}

	.footer_ft_fr {
		display: none;
	}
}

@media(max-width:768px) {
	.footer_ft {
		display: none;
	}

	.footer_fc {
		padding: 25px 0;
		border-top: 0;
	}

	.footer_fc_fl {
		width: 100%;
	}

	.footer_fc_fr {
		width: 100%;
		margin-top: 15px;
	}

	.footer_fc_fr_fr {
		margin-left: 10px;
	}
}

@media(max-width:468px) {
	.footer_fc {
		padding: 20px 0;
	}

	.footer_fc_fr {
		-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
		-ms-justify-content: space-between;
		-o-justify-content: space-between;
		justify-content: space-between;
	}

	.footer_fc_fr_fr {
		width: 100px;
		margin-left: 0;
		float: right;
	}
}

/*公司简介*/
.ny_about_1_fb {
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.ny_about_1_fb_fl {
	width: 48%;
	overflow: hidden;
}

.ny_about_1_fb_fl .img {
	overflow: hidden;
	cursor: pointer;
}

.ny_about_1_fb_fl img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ny_about_1_fb_fl .img:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.ny_about_1_fb_fr {
	width: 48%;
}

.ny_about_1_fb_fr_ft {
	position: relative;
}

.ny_about_1_fb_fr_ft h3 {
	font-size: 2.2rem;
	line-height: 1.2;
	color: #333;
	position: absolute;
	left: 0;
	top: 50%;
	padding-bottom: 2%;
	border-bottom: 2px solid #072b89;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.ny_about_1_fb_fr_ft h4 {
	font-size: 4.5rem;
	line-height: 1;
	font-family: 'Arial';
	font-weight: bold;
	color: transparent;
	text-align: left;
	-webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
}

.ny_about_1_fb_fr_fc {
	font-size: 17px;
	line-height: 2;
	color: #4c4c4c;
	margin-top: 4%;
}

.ny_about_2 {
	padding: 3% 0;
	background: #f7f7f7;
	margin-top: 3%;
}

.ny_about_2_ft h3 {
	font-size: 1.9rem;
	line-height: 1.5;
	color: #333;
}

.ny_about_2_ft h4 {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #666;
	margin-top: 1%;
}

.ny_about_2_fb {
	margin-top: 3%;
}

.ny_about_2_fb ul {
	overflow: hidden;
}

.ny_about_2_fb li {
	width: 23.5%;
	margin-right: 2%;
	float: left;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid #ededed;
}

.ny_about_2_fb li:nth-child(4n) {
	margin-right: 0;
}

.ny_about_2_fb li:nth-child(n+5) {
	margin-top: 2%;
}

.ny_about_2_fb li .img {
	overflow: hidden;
}

.ny_about_2_fb li .img img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ny_about_2_fb li:hover .img img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

@media(max-width:1280px) {
	.ny_about_1_fb_fr_fc {
		font-size: 16px;
	}

	.ny_about_2_ft h3 {
		font-size: 26px;
	}

	.ny_about_2_ft h4 {
		font-size: 18px;
	}
}

@media(max-width:991px) {
	.ny_about_1 {
		margin-top: 3%;
	}

	.ny_about_1_fb_fr {
		width: 100%;
	}

	.ny_about_1_fb_fr_ft h3 {
		font-size: 22px;
		padding-bottom: 10px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 62px;
		text-align: left;
		text-indent: .8em;
	}

	.ny_about_1_fb_fr_fc {
		margin-top: 5px;
	}

	.ny_about_1_fb_fl {
		width: 100%;
		margin-top: 10px;
	}

	.ny_about_2_ft h3 {
		font-size: 22px;
	}

	.ny_about_2_fb li {
		width: 49%;
	}

	.ny_about_2_fb li:nth-child(2n) {
		margin-right: 0;
	}

	.ny_about_2_fb li:nth-child(n+3) {
		margin-top: 2%;
	}
}

@media(max-width:768px) {
	.ny_about_1 {
		margin-top: 25px;
	}

	.ny_about_2 {
		margin-top: 25px;
		padding: 25px 0;
	}

	.ny_about_2_ft h4 {
		font-size: 16px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 42px;
	}
}

@media(max-width:468px) {
	.ny_about_1_fb_fr_ft h3 {
		padding-bottom: 5px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 3.7rem;
		text-indent: 0;
		text-align: left;
	}
}

/*资质证书*/
.ny_zizhizhengshu ul{
	font-size: 0;
}
.ny_zizhizhengshu li{
	width: 23.875%;
    margin-right: 1.5%;
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
}
.ny_zizhizhengshu li a{
    height: 100%;
    width: 100%;
}
.ny_zizhizhengshu li .img{
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: -30px;
    padding-top: 30px;
}
.ny_zizhizhengshu li .img .img_nn{
    border: 1px solid #eee;
    height: 100%;
    width: 100%;
    -webkit-align-items: center;
	-moz-align-items: center;
	-o-align-items: center;
	-ms-align-items: center;
    align-items: center;
}
.ny_zizhizhengshu li .img img{
    width: 100%;
    height: auto!important;
}
.ny_zizhizhengshu li .wz{
    font-size: 16px;
    line-height: 20px;
    color: #333;
    text-align: center;
    margin-top: 10px;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.ny_zizhizhengshu li:nth-child(4n){
    margin-right: 0;
}
.ny_zizhizhengshu li:nth-child(n+5){
    margin-top: 10px;
}
@media(max-width:991px){
    .ny_zizhizhengshu li .wz{
        font-size: 15px;
    }
}
@media(max-width:768px){
    .ny_zizhizhengshu li{
        width: 49%;
        margin-right: 2%;
    }
    .ny_zizhizhengshu li:nth-child(2n){
        margin-right: 0;
    }
    .ny_zizhizhengshu li:nth-child(n+3){
        margin-top: 10px;
    }
}

/*公司相册*/
.ny_gongsixiangce ul{
	font-size: 0;
}
.ny_gongsixiangce li{
	width: 32%;
    margin-right: 2%;
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
}
.ny_gongsixiangce li a{
    height: 100%;
    width: 100%;
}
.ny_gongsixiangce li .img{
    height: 100%;
    width: 100%;
    position: relative;
    margin-top: -30px;
    padding-top: 30px;
}
.ny_gongsixiangce li .img .img_nn{
    border: 1px solid #eee;
    height: 100%;
    width: 100%;
    -webkit-align-items: center;
	-moz-align-items: center;
	-o-align-items: center;
	-ms-align-items: center;
    align-items: center;
}
.ny_gongsixiangce li .img img{
    width: 100%;
    height: auto!important;
}
.ny_gongsixiangce li .wz{
    font-size: 16px;
    line-height: 20px;
    color: #333;
    text-align: center;
    margin-top: 10px;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.ny_gongsixiangce li:nth-child(3n){
    margin-right: 0;
}
.ny_gongsixiangce li:nth-child(n+4){
    margin-top: 10px;
}
@media(max-width:991px){
    .ny_gongsixiangce li .wz{
        font-size: 15px;
    }
}
@media(max-width:768px){
    .ny_gongsixiangce li{
        width: 49%;
        margin-right: 2%;
    }
    .ny_gongsixiangce li:nth-child(3n){
        margin-right: 2%;
    }
    .ny_gongsixiangce li:nth-child(2n){
        margin-right: 0;
    }
    .ny_gongsixiangce li:nth-child(n+3){
        margin-top: 10px;
    }
}

/*2025-12-17*/
/*工程案例*/
.index_yachuang_engineering{
	background: #f5f5f5;
	padding: 4% 0;
}
.index_yachuang_application_gai_fc{
	margin-top: 3%;
}
.index_yachuang_application_gai_fc_fl{
	width: 410px;
	position: relative;
	z-index: 10;
}
.index_yachuang_application_gai_fc_fl li{
	width: 47.5%;
	margin-right: 5%;
	background: #fff;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_yachuang_application_gai_fc_fl li a{
	padding: 2.5rem 15px;
	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;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_yachuang_application_gai_fc_fl li.on{
	background: #072b89;
}
.index_yachuang_application_gai_fc_fl li:nth-child(2n){
	margin-right: 0;
}
.index_yachuang_application_gai_fc_fl li:nth-child(n+3){
	margin-top: 5%;
}
.index_yachuang_application_gai_fc_fl li .img{
	width: 35px;
	line-height: 35px;
	position: relative;
	font-size: 0;
}
.index_yachuang_application_gai_fc_fl li .img img{
	width: 100%;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_yachuang_application_gai_fc_fl li .img .img2{
	position: absolute;
	left: 50%;
	top: 50%;
	opacity: 0;
	-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_yachuang_application_gai_fc_fl li.on .img .img1{
	opacity: 0;
}
.index_yachuang_application_gai_fc_fl li.on .img .img2{
	opacity: 1;
}
.index_yachuang_application_gai_fc_fl li .wz{
	width: 92%;
	padding-left: 35px;
	margin-left: -35px;
}
.index_yachuang_application_gai_fc_fl li .wz h3{
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	font-weight: bold;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_yachuang_application_gai_fc_fl li.on .wz h3{
	color: #fff;
}
.index_yachuang_application_gai_fc_fl li .wz h4{
	font-size: 15px;
	line-height: 1.6;
	color: #666;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_yachuang_application_gai_fc_fl li.on .wz h4{
	color: #fff;
}
.index_yachuang_application_gai_fc_fr{
	width: 100%;
	padding-left: 432px;
	margin-left: -432px;
}
.index_yachuang_application_gai_fc_fr ul{
	height: 100%;
	width: 100%;
}
.index_yachuang_application_gai_fc_fr li{
	position: relative;
	width: 100%;
	height: 100%;
}
.index_yachuang_application_gai_fc_fr li .img{
	width: 100%;
	height: 100%;
}
.index_yachuang_application_gai_fc_fr li .img img{
	display: none;
	width: 100%;
}
.index_yachuang_application_gai_fc_fr li .wz{
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 16px;
	line-height: 2;
	color: #fff;
	width: 100%;
	padding: 7px 20px;
	background: rgba(0,0,0,.5);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media(max-width:991px){
	.index_yachuang_application_gai_fc{
		margin-top: 3%;
	}
	.index_yachuang_application_gai_fc_fl{
		width: 100%;
	}
	.index_yachuang_application_gai_fc_fl li{
		margin-right: 3%;
		width: 48.5%;
	}
	
	.index_yachuang_application_gai_fc_fl li a{
		padding: 20px;
	}
	
	.index_yachuang_application_gai_fc_fl li:nth-child(2n){
		margin-right: 0;
	}
	.index_yachuang_application_gai_fc_fl li:nth-child(n+3){
		margin-top: 3%;
	}
	.index_yachuang_application_gai_fc_fr{
		width: 100%;
		padding-left: 0;
		margin-left: 0;
		margin-top: 3%;
	}
	.index_yachuang_application_gai_fc_fr li .img img{
		display: block;
	}
}
@media(max-width:768px){
	.index_yachuang_engineering{
		padding: 25px 0;
	}
	
	.index_yachuang_application_gai_fc{
		margin-top: 20px;
	}
	.index_yachuang_application_gai_fc_fl li{
		margin-right: 2%;
		width: 49%;
	}
	
	.index_yachuang_application_gai_fc_fl li a{
		padding: 15px;
	}
	
	.index_yachuang_application_gai_fc_fl li:nth-child(2n){
		margin-right: 0;
	}
	.index_yachuang_application_gai_fc_fl li:nth-child(n+3){
		margin-top: 2%;
	}
	.index_yachuang_application_gai_fc_fl li .wz h3{
		font-size: 17px;
	}
	.index_yachuang_application_gai_fc_fr{
		margin-top: 20px;
	}
	.index_yachuang_application_gai_fc_fr li .wz{
		padding: 5px 15px;
	}
}
@media(max-width:468px){
	.index_yachuang_application_gai_fc{
		margin-top: 15px;
	}
	.index_yachuang_application_gai_fc_fl li a{
		padding: 10px;
	}
	.index_yachuang_application_gai_fc_fl li .img{
		width: 28px;
		line-height: 28px;
	}
	.index_yachuang_application_gai_fc_fl li .wz{
		padding-left: 28px;
		margin-left: -28px;
	}
	.index_yachuang_application_gai_fc_fl li .wz h3{
		font-size: 16px;
		font-weight: normal;
	}
	.index_yachuang_application_gai_fc_fl li .wz h4{
		font-size: 14px;
	}
	.index_yachuang_application_gai_fc_fr{
		margin-top: 15px;
	}
}















