/*初始化样式*/
* {
	-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: #003791;
}

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;
}

/**/
.max1300 {
	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) {
	.max1300 {
		padding: 0 30px;
	}

	.page_con_zhuti {
		padding: 0 30px;
	}
}

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

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

@media(max-width:768px) {
	.max1300 {
		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 0 5px rgba(0,0,0,.2);
	-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: 85px;
	line-height: 85px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo {
	width: 12%;
	max-width: 150px;
}

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

.pc_nav {
	width: 78%;
}

.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.285714285%;
	float: left;
	position: relative;
	text-align: center;
}

.pc_nav>ul>li>a {
	font-size: 17px;
	line-height: 85px;
	color: #333;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 150px;
	left: 50%;
	top: 85px;
	background: #fff;
	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 5px 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: #003791;
}

.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{
	position: relative;
}

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

.pc_nav_erji_w .pc_nav_erji_li a{
	border-bottom: 1px solid rgba(0,0,0,.1);
}

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

.pc_nav_erji_li:hover > a {
	background: #003791;
	color: #fff;
	border-color: #003791;
}

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

.pc_nav_sanji_w{
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	box-shadow:0 0 3px rgba(0,0,0,.2);
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	transform: translateY(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;
}

.pc_nav_erji_li:hover .pc_nav_sanji_w{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.pc_nav_sanji_w .pc_nav_sanji_li a{
	border-bottom: 1px solid rgba(0,0,0,.1);
}

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

.pc_nav_sanji_li a:hover{
	background: #003791;
	color: #fff;
	border-color: #003791;
}

.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: #003791;
	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);
}
@media(max-width:1280px){
	.pc_nav>ul>li>a{
		font-size: 16px;
	}
}

/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
	margin-top: 85px;
}

.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: 15px;
	height: 15px;
	background: #003791;
	border-radius: 50%;
	opacity: 1;
	margin: 0 5px !important;
}

.index_banner_yuandian span.swiper-pagination-bullet-active {
	background: #003791;
	width: 45px;
	border-radius: 25px;
}

@media(max-width:991px) {
	.index_banner {
		margin-top: 0;
	}
}

@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_ltca_product{
    padding: 4% 0;
}
.index_ltca_product_ft{
    text-align: center;
}

.index_ltca_product_ft h3{
	font-size: 1.9rem;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
	padding-bottom: 15px;
	position: relative;
	margin-bottom: 15px;
}

.index_ltca_product_ft h3::before {
	content: '';
	width: 2rem;
	height: 2px;
	background: #003791;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 5;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.index_ltca_product_ft h3::after {
	content: '';
	width: 10rem;
	height: 2px;
	background: #ddd;
	position: absolute;
	left: 50%;
	z-index: 4;
	bottom: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.index_ltca_product_ft h4 {
	font-size: 18px;
	line-height: 1.5;
	color: #666;
}
.index_ltca_product_fb{
    margin-top: 3%;
    overflow: hidden;
}
.index_ltca_product_fb ul{
    width: 100%;
}
.index_ltca_product_fb li{
    width: 32%;
    padding:0 10px;
    float: left;
}
.index_ltca_product_fb li:nth-child(3n){
    margin-right: 0;
}
.index_ltca_product_fb li .img{
    overflow: hidden;
}
.index_ltca_product_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_ltca_product_fb li .wz{
    margin-top: 10px;
}
.index_ltca_product_fb li .wz h3{
    font-size: 18px;
    line-height: 2;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	-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_ltca_product_fb li .wz h4{
    font-size: 16px;
    line-height: 2;
    color: #666;
    max-height: 4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.index_ltca_product_fb li:hover .img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.index_ltca_product_fb li:hover .wz h3{
    color: #003791;
}

.index_ltca_product_yuandian {
	font-size: 0;
	text-align: center;
	margin-top: 3%;
}

.index_ltca_product_yuandian span {
	width: 12px;
	height: 12px;
	background: rgba(0,0,0,.3);
	border-radius: 50%;
	opacity: 1;
	margin: 0 5px !important;
}

.index_ltca_product_yuandian span.swiper-pagination-bullet-active {
	background: #003791;
}


@media(max-width:991px){
    .index_ltca_product_ft h3{
        font-size: 26px;
    }
    .index_ltca_product_ft h3::before{
        width: 40px;
    }
    .index_ltca_product_ft h3::after{
        width:150px;
    }
    .index_ltca_product_ft h4{
        font-size: 17px;
    }
}
@media(max-width:768px){
    .index_ltca_product{
        padding: 25px 0;
    }
    .index_ltca_product_fb{
        margin-top: 15px;
    }
    .index_ltca_product_fb li{
        width: 100%;
        margin-right: 0;
        padding:0 5px;
    }
	.index_ltca_product_fb li .wz h3{
		font-size: 16px;
	}
	
    .index_ltca_product_yuandian{
        margin-top: 15px;
    }
    .index_ltca_product_yuandian span{
        width: 10px;
        height: 10px;
        margin: 0 3px !important;
    }
}
/*关于我们*/
.index_ltca_about{
    padding: 4% 0;
    position: relative;
}
.index_ltca_about::before{
    content: '';
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}
.index_ltca_about_nnww{
    position: relative;
    z-index: 10;
}

.index_ltca_about_nn{
    overflow: hidden;
}
.index_ltca_about_fl{
    width: 48%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}
.index_ltca_about_fl img{
    width: 100%;
    display: none;
}
.index_ltca_about_fr{
    /*width: 48%;*/
    width: 100%;
}

.index_ltca_about_fr .index_ltca_product_ft h3{
    color: #fff;
}
.index_ltca_about_fr .index_ltca_product_ft h4{
    color: #fff;
}

.index_ltca_about_fr_ft {
	position: relative;
	padding: 3% 0;
}

.index_ltca_about_fr_ft::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 4rem;
	height: 100%;
	border: 3px solid #003791;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.index_ltca_about_fr_ft_nn {
	background: #f0f2f5;
	position: relative;
	z-index: 5;
	padding-left: 3px;
}

.index_ltca_about_fr_ft h3 {
	font-size: 1.9rem;
	line-height: 1.5;
	color: #333;
}

.index_ltca_about_fr_ft h3 span {
	font-weight: bold;
	color: #003791;
}

.index_ltca_about_fr_ft h4 {
	font-size: 18px;
	line-height: 1.5;
	color: #666;
	margin-top: 5px;
}

.index_ltca_about_fr_fc {
	font-size: 16px;
	line-height: 2;
	color: #666;
	/*margin: 5% 0;*/
	max-height: 14em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	
	margin: 3% 0;
	text-align: center;
	color: #fff;
}

.index_ltca_about_fr_fb {
	display: block;
	width: 120px;
	text-align: center;
	font-size: 16px;
	line-height: 40px;
	color: #fff;
	background: #003791;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	
	margin: 0 auto;
}

.index_ltca_about_fr_fb:hover {
	background: #fc3a38;
	color: #fff;
}

@media(max-width:991px){
    .index_ltca_about_fr_ft h3{
        font-size: 24px;
    }
    .index_ltca_about_fr_ft h4{
        font-size: 17px;
    }
    .index_ltca_about_fl{
        width: 100%;
    }
    .index_ltca_about_fl img{
        display: block;
    }
    .index_ltca_about_fr{
        width: 100%;
        /*margin-top: 15px;*/
    }
    .index_ltca_about_fr_ft{
        padding: 15px 0;
    }
    .index_ltca_about_fr_ft::before{
        width: 55px;
    }
    .index_ltca_about_fr_fc {
        margin: 15px 0;
    }
}

@media(max-width:768px){
    .index_ltca_about{
        padding: 25px 0;
    }
}
/*应用行业*/
.index_ltca_application{
    padding: 4% 0;
}
.index_ltca_application_fb{
    margin-top: 3%;
}
.index_ltca_application_fb ul{
    overflow: hidden;
}
.index_ltca_application_fb li{
    width: 23.875%;
    margin-right: 1.5%;
    float: left;
    position: relative;
    overflow: hidden;
}
.index_ltca_application_fb li:nth-child(4n){
    margin-right: 0;
}
.index_ltca_application_fb li:nth-child(n+5){
    margin-top: 2%;
}
.index_ltca_application_fb li .img img{
    width: 100%;
}
.index_ltca_application_fb li .wz{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 5;
    background: rgba(0,0,0,.5);
    font-size: 16px;
    line-height: 2;
    padding: 5px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    opacity: 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_ltca_application_fb li .wz2{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    opacity: 1;
    background-color: rgba(0,55,145,.68);
    width: 62%;
    height: 100%;
    -webkit-transform: translateX(162%);
    -moz-transform: translateX(162%);
    -ms-transform: translateX(162%);
    -o-transform: translateX(162%);
    transform: translateX(162%);
    -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_ltca_application_fb li .wz2 h3{
    font-size:18px;
	font-weight: bold;
	line-height: 1.2222;
	color: #fff;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_ltca_application_fb li .wz2 .wz2_nn{
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 3%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.index_ltca_application_fb li .wz2::before{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 100%;
    content: '';
    width: 45%;
    height: 100%;
    background: url(../images/img/index_yingyongbj.png) no-repeat center;
    background-size: 100% 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.index_ltca_application_fb li:hover .wz2{
    -webkit-transform: translateX(0);
    transform: translateX(0);
    
    -webkit-transform:translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.index_ltca_application_fb li:hover .wz{
    opacity: 0;
}
@media(max-width:768px){
    .index_ltca_application{
        padding: 25px 0;
    }
    .index_ltca_application_fb{
        margin-top: 15px;
    }
    .index_ltca_application_fb li{
        width: 49%;
        margin-right: 2%;
    }
    .index_ltca_application_fb li:nth-child(3n){
        margin-right: 2%;
    }
    .index_ltca_application_fb li:nth-child(2n){
        margin-right: 0;
    }
    .index_ltca_application_fb li:nth-child(n+3){
        margin-top: 2%;
    }
    .index_ltca_application_fb li .wz2 h3{
        font-size: 16px;
    }
}
/*横图*/
.index_ltca_hengtu {
	/*background: #003791;*/
	background: url(../images/img/index_yingyongbj.jpg) no-repeat center;
	background-size: cover;
	padding: 4% 0;
	position: relative;
}

.index_ltca_hengtu::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #003791;
	opacity: .6;
	z-index: 2;
}

.index_ltca_hengtu .index_ltca_hengtu_con {
	position: relative;
	z-index: 5;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_ltca_hengtu_con {
	overflow: hidden;
}

.index_ltca_hengtu_fl {
	width: 50%;
}

.index_ltca_hengtu_fl_ft {
	font-size: 1.4rem;
	line-height: 1.5;
	color: #fff;
}

.index_ltca_hengtu_fl_fb {
	margin-top: 6%;
	overflow: hidden;
	border-radius: 25px;
	border: 1px solid #fff;
}

.index_ltca_hengtu_fl_fb_fl {
	margin-left: 7%;
	width: 70%;
	font-size: 0;
	line-height: 0;
}

.index_ltca_hengtu_fl_fb_fl span.wz1 {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 50px;
	color: #fff;
	vertical-align: middle;
	padding-left: 40px;
	background: url(../images/img/index_hengtudianhua.png) no-repeat left center;
	background-size: 28px;
}

.index_ltca_hengtu_fl_fb_fl span.wz2 {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	vertical-align: middle;
}

.index_ltca_hengtu_fl_fb_fr {
	width: 23%;
	display: block;
	background: #fff;
	font-size: 18px;
	line-height: 50px;
	text-align: center;
	color: #003791;
	border-radius: 25px 0 0 25px;
}

.index_ltca_hengtu_fr {
	width: 45%;
}

.index_ltca_hengtu_fr .tempWrap{
    width: 100%!important;
}
.index_ltca_hengtu_fr_ul {
	font-size: 0;
}

.index_ltca_hengtu_fr li {
	width: 33.3333333%;
	display: inline-block;
	vertical-align: middle;
	float: none !important;
}

.index_ltca_hengtu_fr li .img {
	margin: 0 6%;
}

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

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

	.index_ltca_hengtu_fl_ft {
		font-size: 22px;
	}

	.index_ltca_hengtu_fl_fb {
		margin-top: 25px;
	}

	.index_ltca_hengtu_fl_fb_fl span.wz1 {
		font-size: 17px;
		background-size: 22px;
		padding-left: 30px;
	}

	.index_ltca_hengtu_fl_fb_fl span.wz2 {
		font-size: 22px;
	}

	.index_ltca_hengtu_fl_fb_fr {
		font-size: 17px;
	}

	.index_ltca_hengtu_fr {
		width: 100%;
		margin-top: 20px;
	}
	.index_ltca_hengtu_fr li {
		width: 25%;
	}
}

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

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

@media(max-width:468px) {
    .index_ltca_hengtu_fl_ft{
        font-size: 18px;
    }
	.index_ltca_hengtu_fl_fb_fl {
		margin-left: 0;
		width: 100%;
		text-align: center;
	}

	.index_ltca_hengtu_fl_fb_fr {
		display: none;
	}
	
	.index_ltca_hengtu_fr li {
		width: 33.33333%;
	}

	.index_ltca_hengtu_fl_fb_fl span.wz1 {
		font-size: 16px;
		background-size: 18px;
		padding-left: 25px;
	}

	.index_ltca_hengtu_fl_fb_fl span.wz2 {
		font-size: 18px;
	}
}
/*新闻动态*/
.index_ltca_news {
	padding: 4% 0;
}

.index_ltca_news_fb {
	margin-top: 4%;
}

.index_ltca_news_fb_fl {
	width: 48%;
	box-shadow: 0 3px 10px 3px #ddd;
}

.index_ltca_news_fb_fr {
	width: 48%;
	box-shadow: 0 3px 10px 3px #ddd;
	position: relative;
}

.index_ltca_news_fb_fl_ft {
	border-bottom: 1px solid #e6e6e6;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_ltca_news_fb_fl_ft::before {
	content: '';
	display: block;
	width: 15%;
	height: 60px;
	background: #003791 url(../images/img/index_xinwentb1.png) no-repeat center;
	background-size: 30px;
}

.index_ltca_news_fb_fr .index_ltca_news_fb_fl_ft::before {
	background: #003791 url(../images/img/index_xinwentb2.png) no-repeat center;
	background-size: 30px;
}

.index_ltca_news_fb_fl_ft_fl {
	font-size: 1.2rem;
	line-height: 60px;
	color: #333;
	padding-left: 25px;
	width: 85%;
	padding-right: 120px;
	margin-right: -120px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_ltca_news_fb_fl_ft_fr {
	width: 120px;
	text-align: center;
	font-size: 16px;
	line-height: 1.7;
	color: #666;
	padding: 0 20px;
	border-left: 1px solid #e6e6e6;
	position: relative;
}

.index_ltca_news_fb_fl_fc {
	margin: 15px 15px 0;
}

.index_ltca_news_fb_fl_fc a {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_ltca_news_fb_fl_fc .img {
	width: 45%;
	overflow: hidden;
}

.index_ltca_news_fb_fl_fc .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_ltca_news_fb_fl_fc .wz {
	width: 50%;
	-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_ltca_news_fb_fl_fc .wz h3 {
	font-size: 18px;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_ltca_news_fb_fl_fc .wz h4 {
	font-size: 15px;
	line-height: 2;
	color: #666;
}

.index_ltca_news_fb_fl_fc .wz h5 {
	font-size: 15px;
	line-height: 23px;
	color: #666;
	margin: 0;
	max-height: 69px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.index_ltca_news_fb_fl_fc:hover .wz h3{
	color: #003791;
}

.index_ltca_news_fb_fl_fc: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);
}


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

.index_ltca_news_fb_fl_fb li {
	border-bottom: 1px dashed #ccc;
}

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

.index_ltca_news_fb_fl_fb li h3 {
	font-size: 16px;
	line-height: 50px;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 90px;
	position: relative;
}

.index_ltca_news_fb_fl_fb li h3 span {
	display: block;
	width: 90px;
	text-align: right;
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 15px;
	line-height: 2;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_ltca_news_fb_fl_fb li:hover h3 {
	color: #003791;
}

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

	.index_ltca_news_fb_fl {
		width: 100%;
	}

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

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

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

@media(max-width:468px) {
	.index_ltca_news_fb_fl_ft_fr {
		padding: 0;
		width: 100px;
		font-size: 15px;
	}

	.index_ltca_news_fb_fl_ft_fl {
		font-size: 19px;
		padding-right: 100px;
		margin-right: -100px;
	}

	.index_ltca_news_fb_fr .index_ltca_news_fb_fl_ft::before,
	.index_ltca_news_fb_fl_ft::before {
		background-size: 25px;
	}

	.index_ltca_news_fb_fl_fc .img {
		width: 100%;
	}

	.index_ltca_news_fb_fl_fc .wz {
		width: 100%;
		margin-top: 10px;
	}
}

/*footer*/
.pc_footer1 {
	padding: 30px 0 20px;
	background: #222;
}

.pc_footer1_con {
	position: relative;
}

.pc_footer1_fl {
	width: 65%;
}

.pc_footer1_fl li {
	max-width: 25%;
}

.pc_footer1_fl li h3 a,
.pc_footer1_fl li h3 {
	font-size: 18px;
	line-height: 2;
	color: #fff;
	font-weight: bold;
}

.pc_footer1_fl li .foot_nav_erji {
	margin-top: 10px;
}

.pc_footer1_fl li .foot_nav_erji a {
	display: inline-block;
	max-width: 100%;
	font-size: 15px;
	line-height: 2;
	color: rgba(255, 255, 255, .8);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_footer1_fl li .foot_nav_erji a:hover {
	color: rgba(255, 255, 255, 1);
}

.pc_footer1_fr {
	max-width: 30%;
}

.pc_footer1_fr_ft {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_footer1_fr_ft_fl {
	max-width: 110px;
}

.pc_footer1_fr_ft_fl img {
	width: 100%;
}

.pc_footer1_fr_ft_fr {
	width: 100%;
	min-width: 270px;
	padding-left: 140px;
	margin-left: -120px;
	font-size: 15px;
	line-height: 2;
	color: rgba(255, 255, 255, .9);
}

.pc_footer1_fr_fb {
	font-size: 15px;
	line-height: 2;
	color: rgba(255, 255, 255, .9);
	/* margin-top: 15px; */
}

.pc_footer1_fr_fb h3 {
	font-size: 18PX;
	font-weight: bold;
}

.pc_footer2 {
	font-size: 15px;
	line-height: 2;
	color: #fff;
	background: #222;

}

.pc_footer2 a {
	color: #fff;
}

.pc_footer2_con {
	padding: 10px 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

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

	.pc_footer1_con::before {
		display: none;
	}

	.pc_footer1_fr {
		width: 100%;
		max-width: 100%;
	}
}
