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

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

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

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

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

	.page_con_zhuti {
		padding: 0 30px;
	}
}

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

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px !important;
	}
}

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

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*scrollbar*/
body::-webkit-scrollbar {
	width: 6px;
	-webkit-appearance: none;
	-webkit-border-radius: 0
}

body::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, .1);
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb:vertical {
	background: #1564af;
	border: none;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-thumb:vertical:active {
	background: #1564af;
	border: none;
	-webkit-border-radius: 0;
}

.section {
	overflow: hidden;
}

.section .fp-tableCell {
	padding-top: 0;
}

.fp-auto-height .fp-tableCell {
	padding-top: 0 !important;
}

@media (max-width: 991px) {
	.section {
		height: auto !important;
	}

	.fp-tableCell {
		height: auto !important;
	}

	.section .fp-tableCell {
		padding-top: 0;
	}
}

/*头部*/
#pc_header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	cursor: pointer;
	background: rgba(255, 255, 255, 0);
	border-bottom: 1px solid rgba(255, 255, 255, .4);
	-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_header.on,
#pc_header.active {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 0 6px rgba(0, 0, 0, .1);
}

.pc_header_con {
	height: 85px;
	line-height: 85px;
	padding: 0 50px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo {
	width: 20%;
	max-width: 300px;
	position: relative;
}

.pc_logo img {
	max-width: 100%;
	opacity: 1;
	display: block;
	-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_logo .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%);
}

#pc_header.on .pc_logo .img1,
#pc_header.active .pc_logo .img1 {
	opacity: 0;
}

#pc_header.on1 .pc_logo .img1 {
	opacity: 0;
}

#pc_header.on .pc_logo .img2,
#pc_header.active .pc_logo .img2 {
	opacity: 1;
}


#pc_header.on1 .pc_logo .img2 {
	opacity: 1;
}

.pc_nav {
	width: 77%;
	max-width: 1100px;
}

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

	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}

.pc_nav>ul>li {
	/*width: 14.285714285714%;*/
	margin-right: 3rem;
	float: left;
	font-size: 0;
	line-height: 0;
	position: relative;
	text-align: center;
}

.pc_nav>ul>li:last-child {
	margin-right: 0;
}

.pc_nav>ul>li>a {
	display: block;
	height: 85px;
}

.pc_nav>ul>li>a span {
	font-size: 17px;
	line-height: 86px;
	color: #fff;
	max-width: 100%;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
	-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>li>a span::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	width: 0;
	height: 2px;
	background: #fff;
	-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>li:hover>a span::before,
.pc_nav>ul>li.active>a span::before {
	width: 100%;
}

#pc_header.on .pc_nav>ul>li>a span,
#pc_header.active .pc_nav>ul>li>a span {
	color: #333;
}

#pc_header.on1 .pc_nav>ul>li>a span {
	color: #333;
}

#pc_header.on .pc_nav>ul>li>a span::before,
#pc_header.active .pc_nav>ul>li>a span::before {
	background: #1564af;
}

#pc_header.on1 .pc_nav>ul>li>a span::before {
	background: #1564af;
}

#pc_header.on .pc_nav>ul>li:hover>a span,
#pc_header.on .pc_nav>ul>li.active>a span,
#pc_header.active .pc_nav>ul>li:hover>a span,
#pc_header.active .pc_nav>ul>li.active>a span {
	color: #1564af;
}

#pc_header.on1 .pc_nav>ul>li:hover>a span,
#pc_header.on1 .pc_nav>ul>li.active>a span {
	color: #1564af;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 150px;
	left: 50%;
	top: 100%;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	margin-top: 1px;
	-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: #1564af;
}

.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: #1564af;
	color: #fff;
}

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

.pc_nav_erji_li{
	position: relative;
}

.pc_nav_sanji{
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 5;
	background: #ffffff;
	width: 180px;
	opacity: 0;
	visibility: 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;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	-webkit-transform: translate(20px,0);
	-moz-transform: translate(20px,0);
	-ms-transform: translate(20px,0);
	-o-transform: translate(20px,0);
	transform: translate(20px,0);
}

.pc_nav_erji_li:hover .pc_nav_sanji{
	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_sanji_li a{
	font-size: 15px;
}

.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: #1564af;
	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: #1564af;
	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: #1564af 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;
}

@media(max-width:1280px){
    .pc_nav>ul>li>a span {
        font-size: 16px;
    }
}

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

	.pc_nav>ul>li {
		margin-right: 2rem;
	}
}

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

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

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

.index_banner img {
	width: 100%;
	display: none;
}

.index_banner a {
	display: block;
	height: 100%;
	position: relative;
}

.index_banner .wz {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	z-index: 9;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_banner .wz .wz_con {
	opacity: 0;
	-webkit-transform: translateY(5em);
	-moz-transform: translateY(5em);
	-ms-transform: translateY(5em);
	-o-transform: translateY(5em);
	transform: translateY(5em);
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.index_banner .swiper-slide-active .wz .wz_con {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.index_banner .wz h3 {
	font-size: 2.6rem;
	line-height: 1.5;
	color: #1564af;
}

.index_banner .wz h4 {
	font-size: 2.6rem;
	line-height: 1.5;
	color: #1564af;
}

.index_banner_yuandian {
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 6% !important;
	z-index: 99;
	display: none;
}

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

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

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

	.index_banner img {
		display: block;
	}
}

@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_banner .wz h3 {
		font-size: 22px;
	}

	.index_banner .wz h4 {
		font-size: 22px;
	}
}

@media(max-width:468px) {
	.index_banner .wz h3 {
		font-size: 18px;
		font-weight: bold;
	}

	.index_banner .wz h4 {
		font-size: 18px;
		font-weight: bold;
	}
}

/*首页通用*/
.index_page_header_fl h3 {
	font-size: 12px;
	line-height: 1.3;
	color: #333333;
	position: fixed;
	bottom: 80px;
	left: -50px;
	z-index: 950;
	padding-right: 50px;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.index_page_header_fl h3::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	height: 1px;
	background: #333333;
	-webkit-animation: light 3s infinite;
	-moz-animation: light 3s infinite;
	-ms-animation: light 3s infinite;
	-o-animation: light 3s infinite;
	animation: light 3s infinite;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_page_header_fl h4 {
	font-size: 14px;
	line-height: 1.3;
	color: #444444;
	position: fixed;
	left: 35px;
	bottom: 10px;
	z-index: 950;
}

.index_page_header_fl h4 a {
	color: #444444;
}

.index_page_header.on .index_page_header_fl h3 {
	color: #ffffff;
}

.index_page_header.on .index_page_header_fl h3::before {
	background: #ffffff;
}

.index_page_header.on .index_page_header_fl h4 a {
	color: #ffffff;
}

@keyframes light {
	0% {
		width: 0;
	}

	50% {
		width: 40px;
	}

	100% {
		width: 0;
	}
}

@-webkit-keyframes light {
	0% {
		width: 0;
	}

	50% {
		width: 40px;
	}

	100% {
		width: 0;
	}
}

@-moz-keyframes light {
	0% {
		width: 0;
	}

	50% {
		width: 50px;
	}

	100% {
		width: 0;
	}
}

@media(max-width:1200px) {
	.index_page_header_fl h3 {
		left: -50px;
	}

	.index_page_header_fl h4 {
		left: 30px;
	}
}

/*首页导航*/
.index_header_nav {
	position: fixed;
	right: 0;
	top: 0;
	width: 5.5rem;
	height: 100%;
	border-left: 1px solid rgba(0,0,0,0.1);
	z-index: 1000;
}

.index_header_nav_btn {
	position: absolute;
	top: 50%;
	width: 100%;
	padding-top: 100%;
	background: #1564af;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_header_nav_btn_xian {
	width: 22px;
	position: absolute;
	top: 50%;
	left: 50%;
	overflow: hidden;
	-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_header_nav_btn_xian span {
	display: block;
	width: 100%;
	height: 1px;
	float: right;
	background: #fff;
	-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_header_nav_btn_xian span:nth-child(1) {
	width: 70%;
}

.index_header_nav_btn_xian span:nth-child(2) {
	width: 85%;
	margin: 4px 0;
}

.index_header_nav_btn:hover .index_header_nav_btn_xian span:nth-child(1) {
	width: 100%;
}

.index_header_nav_btn:hover .index_header_nav_btn_xian span:nth-child(2) {
	width: 85%;
}

.index_header_nav_btn:hover .index_header_nav_btn_xian span:nth-child(3) {
	width: 70%;
}

#full_menu {
	position: absolute;
	left: 50%;
	bottom: 3%;
	width: 20px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

#full_menu li {
	width: 100%;
	margin-bottom: 1rem;
	padding-top: 100%;
	position: relative;
	cursor: pointer;
}

#full_menu li.active {
	background: url(../images/img/index_nav_yuan.png) no-repeat center;
	background-size: cover;
	-webkit-animation: rotateAnima 2s linear infinite;
	-moz-animation: rotateAnima 2s linear infinite;
	-ms-animation: rotateAnima 2s linear infinite;
	-o-animation: rotateAnima 2s linear infinite;
	animation: rotateAnima 2s linear infinite;
}

#full_menu li::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 4px;
	background: rgba(0, 0, 0, .3);
	border-radius: 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%);
}

#full_menu li.active::before {
	background-color: #1564af;
}

#full_menu li a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

@-webkit-keyframes rotateAnima {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotateAnima {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

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

	.index_page_header {
		display: none;
	}
}

/*折叠菜单*/
.index_caidan {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1100;
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.index_caidan.on {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.index_caidan_guanbi {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, .5) url(../images/img/index_guanbi.png) no-repeat center;
	background-size: 20px;
	border-radius: 50%;
	z-index: 10;
	cursor: pointer;
}

.index_caidan_con {
	/*padding: 0 50px;*/
	height: 100%;
}

.index_caidan_img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 0 50px;
	display: none;
}

.index_caidan_img .index_caidan_img_con {
	max-width: 200px;
	width: 18%;
	line-height: 90px;
}

.index_caidan_img .index_caidan_img_con img {
	width: 100%;
}

.index_caidan_ul {
	height: 100%;
}

.index_caidan_li {
	width: 20%;
	height: 100%;
	padding: 0 5px;
	padding-top: 25vh;
	cursor: pointer;
	position: relative;
	-webkit-transform: translateY(200px);
	-moz-transform: translateY(200px);
	-ms-transform: translateY(200px);
	-o-transform: translateY(200px);
	transform: translateY(200px);
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.index_caidan_li:nth-child(2) {
	-webkit-transform: translateY(300px);
	-moz-transform: translateY(300px);
	-ms-transform: translateY(300px);
	-o-transform: translateY(300px);
	transform: translateY(300px);
}

.index_caidan_li:nth-child(3) {
	-webkit-transform: translateY(400px);
	-moz-transform: translateY(400px);
	-ms-transform: translateY(400px);
	-o-transform: translateY(400px);
	transform: translateY(400px);
}

.index_caidan_li:nth-child(4) {
	-webkit-transform: translateY(500px);
	-moz-transform: translateY(500px);
	-ms-transform: translateY(500px);
	-o-transform: translateY(500px);
	transform: translateY(500px);
}

.index_caidan_li:nth-child(5) {
	-webkit-transform: translateY(600px);
	-moz-transform: translateY(600px);
	-ms-transform: translateY(600px);
	-o-transform: translateY(600px);
	transform: translateY(600px);
}

.index_caidan_li:nth-child(6) {
	-webkit-transform: translateY(700px);
	-moz-transform: translateY(700px);
	-ms-transform: translateY(700px);
	-o-transform: translateY(700px);
	transform: translateY(700px);
}

.index_caidan.on .index_caidan_li {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.index_caidan_li_ft {
	position: relative;
	z-index: 12;
}

.index_caidan_li_ft h3 {
	font-size: 1.8rem;
	line-height: 1.5;
	color: #3b4048;
	text-align: center;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.index_caidan_li_ft h3 span {
	font-size: 16px;
	color: #b3b3b3;
	display: block;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.index_caidan_li_fb {
	padding-top: 2.7rem;
	height: 75vh;
	margin-top: -2.7rem;
	position: relative;
	z-index: 10;
	top: -24px;
	opacity: 0;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.index_caidan_li_fb_con {
	height: 100%;
	padding: 30% 0 20px;
}

.index_caidan_li_fb_con_nnn {
	width: 100%;
	height: 100%;
	overflow: auto;
}

.index_caidan_li_fb_con_nnn::-webkit-scrollbar {
	width: 4px;
	-webkit-appearance: none;
	-webkit-border-radius: 0
}

.index_caidan_li_fb_con_nnn::-webkit-scrollbar-track {
	background: #9f9f9f;
	-webkit-border-radius: 0;
}

.index_caidan_li_fb_con_nnn::-webkit-scrollbar-thumb,
.index_caidan_li_fb_con_nnn::-webkit-scrollbar-thumb:vertical {
	background: rgba(255,255,255,0.6);
	border: none;
	-webkit-border-radius: 0;
}

.index_caidan_li_fb_con_nnn::-webkit-scrollbar-thumb:vertical:active {
	background: rgba(255,255,255,0.6);
	border: none;
	-webkit-border-radius: 0;
}

.index_caidan_li_fb_li {
	text-align: center;
	font-size: 0;
}

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

.index_caidan_li_img {
	text-align: center;
	position: absolute;
	z-index: 6;
	left: 0;
	width: 100%;
	bottom: 25%;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.index_caidan_li_img img {
	height: 4.4rem;
}

.index_caidan_li_fb a {
	font-size: 17px;
	line-height: 2.5;
	color: #999;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	max-width: 100%;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
	position: relative;
}

.index_caidan_li_fb a::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #fff;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.index_caidan_li_fb a:hover::before {
	width: 100%;
}

.index_caidan_li:hover {
	background: #1564af;
}

.index_caidan_li:hover .index_caidan_li_fb {
	opacity: 1;
}

.index_caidan_li:hover .index_caidan_li_ft h3 {
	color: #fff;
}

.index_caidan_li:hover .index_caidan_li_ft h3 span {
	color: #fff;
}

.index_caidan_li:hover .index_caidan_li_img {
	opacity: 0;
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	-ms-transform: translateY(100px);
	-o-transform: translateY(100px);
	transform: translateY(100px);
}

.index_caidan_li:hover .index_caidan_li_fb a {
	color: #fff;
}

.index_caidan_li_beijing {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.index_caidan_li_beijing::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #1564af;
	opacity: .8;
}

.index_caidan_li:hover .index_caidan_li_beijing {
	opacity: 1;
}

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

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

	.index_caidan {
		display: none;
	}
}

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

/*公司简介*/
.index_lianchun_about_img {
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 1.3s ease;
	-moz-transition: all 1.3s ease;
	-ms-transition: all 1.3s ease;
	-o-transition: all 1.3s ease;
	transition: all 1.3s ease;
	-webkit-transform: matrix(0, 0.5, -0.5, 0, 0, 0);
	-moz-transform: matrix(0, 0.5, -0.5, 0, 0, 0);
	-ms-transform: matrix(0, 0.5, -0.5, 0, 0, 0);
	-o-transform: matrix(0, 0.5, -0.5, 0, 0, 0);
	transform: matrix(0, 0.5, -0.5, 0, 0, 0);
}

.section1.active .index_lianchun_about_img {
	opacity: 1;
	-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
	-moz-transform: matrix(1, 0, 0, 1, 0, 0);
	-ms-transform: matrix(1, 0, 0, 1, 0, 0);
	-o-transform: matrix(1, 0, 0, 1, 0, 0);
	transform: matrix(1, 0, 0, 1, 0, 0);
}

.index_lianchun_about {
	position: relative;
	z-index: 15;
}

.index_lianchun_about_ft {
	font-size: 2.6rem;
	line-height: 1.2;
	color: #3b4048;
	font-weight: bold;
}

.index_lianchun_about_fc {
	font-size: 17px;
	line-height: 1.8;
	color: #58595b;
	width: 80%;
	max-width: 1100px;
	margin: 2% 0;
}

.index_lianchun_about_fc1 ul {
	overflow: hidden;
}

.index_lianchun_about_fc1 li {
	float: left;
	width: 33.3333%;
	max-width: 235px;
}

.index_lianchun_about_fc1 h3 {
	font-size: 18px;
	line-height: 1.5;
	color: #1564af;
}

.index_lianchun_about_fc1 h3 span {
	font-size: 2.3rem;
	font-family: Arial;
	font-weight: bold;
}

.index_lianchun_about_fc1 h4 {
	font-size: 16px;
	line-height: 2;
	color: #707781;
}

.index_lianchun_about_fb {
	margin-top: 2.5%;
	font-size: 0;
}

.index_lianchun_about_fb a {
	display: inline-block;
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	padding: 0.9rem 2.3rem;
	border: 1px solid rgba(59, 64, 72, .2);
	-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_lianchun_about_fb a:hover {
	color: #fff;
	background: #1564af;
	border-color: #1564af;
}

@media(max-width:991px) {
	.index_lianchun_about_img {
		opacity: 1;
		-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
		-moz-transform: matrix(1, 0, 0, 1, 0, 0);
		-ms-transform: matrix(1, 0, 0, 1, 0, 0);
		-o-transform: matrix(1, 0, 0, 1, 0, 0);
		transform: matrix(1, 0, 0, 1, 0, 0);
	}

	.index_lianchun_about {
		padding: 4% 0;
	}

	.index_lianchun_about_fc {
		width: 100%;
	}

	.index_lianchun_about_fc1 h3 span {
		font-size: 24px;
	}

	.index_lianchun_about_fb a {
		padding: 10px 2.2rem;
	}
}

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

	.index_lianchun_about_ft {
		font-size: 26px;
	}

	.index_lianchun_about_fc {
		font-size: 16px;
		margin: 15px 0;
	}

	.index_lianchun_about_fc1 h3 span {
		font-size: 22px;
	}

	.index_lianchun_about_fb {
		margin-top: 15px;
	}

	.index_lianchun_about_fb a {
		padding: 10px 18px;
		font-size: 15px;
	}
}

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

	.index_lianchun_about_ft {
		font-size: 22px;
	}

	.index_lianchun_about_fc {
		width: 100%;
		color: #333;
		margin: 10px 0;
	}

	.index_lianchun_about_fc1 h4 {
		color: #333;
	}

	.index_lianchun_about_fc1 h3 span {
		font-size: 20px;
	}

	.index_lianchun_about_fb a {
		color: #fff;
		background: #1564af;
		border-color: #1564af;
	}
}

/*行业应用*/
.index_lianchun_application_con {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_lianchun_application_fl {
	width: 50%;
	position: relative;
	opacity: 0;
	-webkit-transition: all 1.3s ease;
	-moz-transition: all 1.3s ease;
	-ms-transition: all 1.3s ease;
	-o-transition: all 1.3s ease;
	transition: all 1.3s ease;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.section2.active .index_lianchun_application_fl {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.index_lianchun_application_fl_con {
	width: 60%;
	padding-top: 60%;
	margin: 0 auto;
	position: relative;
}

.index_lianchun_application_fl .bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
}

.index_lianchun_application_fl_yuan {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.index_lianchun_application_fl .bg-1 {
	-webkit-animation: myRotate 10s infinite linear;
	-moz-animation: myRotate 10s infinite linear;
	-ms-animation: myRotate 10s infinite linear;
	-o-animation: myRotate 10s infinite linear;
	animation: myRotate 10s infinite linear;
}

.index_lianchun_application_fl .bg-2 {
	-webkit-animation: myRotate 20s infinite linear;
	-moz-animation: myRotate 20s infinite linear;
	-ms-animation: myRotate 20s infinite linear;
	-o-animation: myRotate 20s infinite linear;
	animation: myRotate 20s infinite linear;
}

.index_lianchun_application_fl .bg-3 {
	-webkit-animation: myRotate 30s infinite linear;
	-moz-animation: myRotate 30s infinite linear;
	-ms-animation: myRotate 30s infinite linear;
	-o-animation: myRotate 30s infinite linear;
	animation: myRotate 30s infinite linear;
}

@-webkit-keyframes myRotate {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes myRotate {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.index_lianchun_application_fl .img {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 73%;
	z-index: 6;
	-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_lianchun_application_fl .img li {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	-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_lianchun_application_fl .img li.on {
	position: relative;
	z-index: 10;
	opacity: 1;
}

.index_lianchun_application_fl .img .img_con{
	overflow: hidden;
	border-radius: 50%;
}

.index_lianchun_application_fl .img .img_con img {
	width: 100%;
}

.index_lianchun_application_fl .wz li {
	position: absolute;
	z-index: 10;
	cursor: pointer;
}

.index_lianchun_application_fl .wz li .wz_img {
	width: 64px;
	height: 64px;
	padding: 10px;
	position: relative;
}

.index_lianchun_application_fl .wz li .wz_img::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 1px dashed #999;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-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-animation: myRotate 10s infinite linear;
	-moz-animation: myRotate 10s infinite linear;
	-ms-animation: myRotate 10s infinite linear;
	-o-animation: myRotate 10s infinite linear;
	animation: myRotate 10s infinite linear;
}

.index_lianchun_application_fl .wz li.on .wz_img::before {
	border-color: #1564af;
}

.index_lianchun_application_fl .wz li .wz_img_con {
	background: #999;
	width: 44px;
	line-height: 44px;
	text-align: center;
	font-size: 0;
	border-radius: 50%;
	-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_lianchun_application_fl .wz li.on .wz_img_con {
	background: #1564af;
}

.index_lianchun_application_fl .wz li .wz_img_con img {
	width: 22px;
	display: inline-block;
	margin: 0 auto;
}

.index_lianchun_application_fl .wz li .wz_con {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	color: #999;
	font-family: Arial;
	position: absolute;
	width: 140px;
	-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_lianchun_application_fl .wz li.on .wz_con {
	color: #1564af;
}

.index_lianchun_application_fl .wz li:nth-child(1) {
	left: 50%;
	top: -32px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(1) .wz_con {
	top: -32px;
	left: 50%;
	text-align: center;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(2) {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
	/*right: -38px;*/
	/*bottom: 66%;*/
	left: 100%;
	top: 40%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(2) .wz_con {
	margin-left: 10px;
	left: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(3) {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
	/*right: -28px;*/
	/*top: 70%;*/
	bottom: -15px;
	left: 65%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(3) .wz_con {
	margin-left: 10px;
	left: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(4) {
	/*left: 50%;*/
	/*bottom: -32px;*/
	top: 60%;
	left: 15px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(4) .wz_con {
	margin-right: 8px;
	right: 100%;
	top: 50%;
	text-align: right;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(5) {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	left: 20px;
	top: 22%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(5) .wz_con {
	margin-right: 10px;
	right: 100%;
	top: 50%;
	text-align: right;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(6) {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	left: 25px;
	bottom: 66%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_lianchun_application_fl .wz li:nth-child(6) .wz_con {
	margin-right: 10px;
	right: 100%;
	top: 50%;
	text-align: right;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_lianchun_application_fr {
	width: 46%;
	padding-right: 4rem;
}

.index_lianchun_application_fr_ft h3 {
	font-size: 2.6rem;
	line-height: 1.2;
	color: #3b4048;
	font-weight: bold;
}

.index_lianchun_application_fr_ft h4 {
	font-size: 17px;
	line-height: 1.8;
	color: #58595b;
	max-width: 530px;
	margin: 5% 0 6%;
}

.index_lianchun_application_fr_fc {
	max-width: 590px;
	width: 100%;
	position: relative;
}

.index_lianchun_application_fr_fc li {
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	padding: 5%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	-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_lianchun_application_fr_fc li.on {
	position: relative;
	z-index: 10;
	opacity: 1;
}

.index_lianchun_application_fr_fc li h3 {
	font-size: 20px;
	line-height: 1.5;
	color: #1564af;
	font-weight: bold;
	padding-left: 25px;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
	opacity: 0;
	position: relative;
	top: 50px;
}

.index_lianchun_application_fr_fc li.on h3 {
	top: 0;
	opacity: 1;
}

.index_lianchun_application_fr_fc li h4 {
	margin-top: 4%;
	height: 96px;
	overflow: hidden;
	-webkit-align-content: flex-start;
	-moz-align-content: flex-start;
	-ms-align-content: flex-start;
	-o-align-content: flex-start;
	align-content: flex-start;
	-webkit-transition: all 1.1s ease;
	-moz-transition: all 1.1s ease;
	-ms-transition: all 1.1s ease;
	-o-transition: all 1.1s ease;
	transition: all 1.1s ease;
	opacity: 0;
	position: relative;
	top: 50px;
}

.index_lianchun_application_fr_fc li.on h4 {
	top: 0;
	opacity: 1;
}

.index_lianchun_application_fr_fc li h4 .index_lianchun_application_fr_fc_li {
	width: 49%;
	margin-right: 2%;
	padding-left: 15px;
	position: relative;
	font-size: 0;
}

.index_lianchun_application_fr_fc li h4 .index_lianchun_application_fr_fc_li a {
	display: inline-block;
	max-width: 100%;
	font-size: 16px;
	line-height: 2;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}

.index_lianchun_application_fr_fc li h4 .index_lianchun_application_fr_fc_li a:hover {
	color: #1564af;
}

.index_lianchun_application_fr_fc li h4 .index_lianchun_application_fr_fc_li::before {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	background: #1564af;
	border-radius: 50%;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

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

.index_lianchun_application_fr_fb {
	margin-top: 7%;
}

@media(max-width:991px) {
	.index_lianchun_application {
		padding: 4% 0;
	}

	.index_lianchun_application_fl {
		opacity: 1;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}

	.index_lianchun_application_fl_con {
		width: 55%;
		padding-top: 55%;
	}

	.index_lianchun_application_fr {
		padding-right: 0;
	}

	.index_lianchun_application_fl .wz li .wz_con {
		font-size: 15px;
	}
}

@media(max-width:768px) {
	.index_lianchun_application {
		padding: 30px 0;
		padding-top: 90px;
	}

	.index_lianchun_application_fl {
		width: 100%;
	}

	.index_lianchun_application_fl_con {
		width: 50%;
		padding-top: 50%;
	}

	.index_lianchun_application_fr {
		width: 100%;
		margin-top: 80px;
	}

	.index_lianchun_application_fr_ft h3 {
		font-size: 26px;
	}

	.index_lianchun_application_fr_ft h4 {
		font-size: 16px;
		margin: 10px 0 15px;
		max-width: 100%;
	}

	.index_lianchun_application_fr_fc {
		max-width: 100%;
	}

	.index_lianchun_application_fr_fc li {
		padding: 15px 20px;
	}

	.index_lianchun_application_fr_fc li h3 {
		font-size: 18px;
	}

	.index_lianchun_application_fr_fc li h4 {
		margin-top: 10px;
	}

	.index_lianchun_application_fr_fb {
		margin-top: 20px;
	}
}

@media(max-width:468px) {
	.index_lianchun_application {
		padding: 25px 0;
		padding-top: 70px;
	}

	.index_lianchun_application_fl_con {
		width: 48%;
		padding-top: 48%;
	}

	.index_lianchun_application_fl .wz li:nth-child(1) {
		top: -20px;
	}

	.index_lianchun_application_fl .wz li:nth-child(1) .wz_con {
		top: -25px;
	}

	/*.index_lianchun_application_fl .wz li:nth-child(2) {*/
	/*	right: -26px;*/
	/*}*/

	.index_lianchun_application_fl .wz li:nth-child(2) .wz_con {
		margin-left: 5px;
	}

	/*.index_lianchun_application_fl .wz li:nth-child(3) {*/
	/*	right: -20px;*/
	/*}*/

	.index_lianchun_application_fl .wz li:nth-child(3) .wz_con {
		margin-left: 5px;
	}

	.index_lianchun_application_fl .wz li:nth-child(4) {
		/*bottom: -20px;*/
		left: 5px;
	}

	/*.index_lianchun_application_fl .wz li:nth-child(4) .wz_con {*/
	/*	bottom: -25px;*/
	/*}*/

	.index_lianchun_application_fl .wz li:nth-child(5) {
		left: 5px;
	}

	.index_lianchun_application_fl .wz li:nth-child(5) .wz_con {
		margin-right: 5px;
	}

	.index_lianchun_application_fl .wz li:nth-child(6) {
		left: 15px;
	}

	.index_lianchun_application_fl .wz li:nth-child(6) .wz_con {
		margin-right: 5px;
	}

	.index_lianchun_application_fl .wz li .wz_img {
		width: 40px;
		height: 40px;
		padding: 6px;
	}

	.index_lianchun_application_fl .wz li .wz_img_con {
		width: 28px;
		line-height: 28px;
	}

	.index_lianchun_application_fl .wz li .wz_img_con img {
		width: 14px;
	}

	.index_lianchun_application_fl .wz li .wz_con {
		font-size: 14px;
	}

	.index_lianchun_application_fr {
		margin-top: 60px;
	}

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

	.index_lianchun_application_fr_fc li h4 .index_lianchun_application_fr_fc_li {
		width: 100%;
		margin-right: 0;
	}
}

/*优势*/
.index_lianchun_advantage_ft {
	position: relative;
	height: 35vh;
}

.index_lianchun_advantage_ft_con {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	position: relative;
	height: 100%;
}

.index_lianchun_advantage_ft_fl {
	font-size: 2.6rem;
	line-height: 1.2;
	color: #fff;
	font-weight: bold;
}

.index_lianchun_advantage_ft_fr {
	margin-top: 0;
}

.index_lianchun_advantage_ft_fr a {
	color: #fff;
	border-color: #fff;
}

.index_lianchun_advantage_fb {
	position: relative;
	height: 65vh;
}

.index_lianchun_advantage_fb_con {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	position: relative;
	height: 100%;
}

.index_lianchun_advantage_fb ul {
	width: 100%;
	height: 76%;
	overflow: hidden;
}

.index_lianchun_advantage_fb li {
	width: 15.4%;
	height: 100%;
	margin-right: 1.52%;
	padding: 1.5%;
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, .2);
	-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_lianchun_advantage_fb li:hover {
	background: #1564af;
	border-color: #1564af;
}

.index_lianchun_advantage_fb li:nth-child(6n) {
	margin-right: 0;
}

.index_lianchun_advantage_fb li .wz1 {
	font-size: 2rem;
	line-height: 1.2;
	color: #1564af;
	font-weight: bold;
	height: 0;
	overflow: hidden;
	margin-bottom: 0;
	-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_lianchun_advantage_fb li:hover .wz1 {
	height: 1.2em;
	color: #fff;
	margin-bottom: 1.5rem;
}

.index_lianchun_advantage_fb li .img {
	width: 39px;
	line-height: 39px;
	position: relative;
}

.index_lianchun_advantage_fb li .img img {
	width: 100%;
	opacity: 1;
	-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_lianchun_advantage_fb 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_lianchun_advantage_fb li:hover .img .img1 {
	opacity: 0;
}

.index_lianchun_advantage_fb li:hover .img .img2 {
	opacity: 1;
}

.index_lianchun_advantage_fb li .wz2 {
	margin: 1.5rem 0 10px;
}

.index_lianchun_advantage_fb li .wz2 h3 {
	font-size: 20px;
	line-height: 1.2;
	color: #1564af;
	font-weight: bold;
	-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_lianchun_advantage_fb li:hover .wz2 h3 {
	color: #fff;
}

.index_lianchun_advantage_fb li .wz2 h4 {
	font-size: 15px;
	line-height: 1.5;
	color: #707781;
	height: 9em;
	margin-top: 10px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	-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_lianchun_advantage_fb li:hover .wz2 h4 {
	color: #fff;
}

.index_lianchun_advantage_fb li .wz3 {
	font-size: 2rem;
	line-height: 1.2;
	color: #1564af;
	font-weight: bold;
	opacity: 1;
	-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_lianchun_advantage_fb li:hover .wz3 {
	color: #fff;
	opacity: 0;
}

@media(max-width:1800px) {
	.index_lianchun_advantage_ft_fr {
		padding-right: 50px;
	}

	.index_lianchun_advantage_fb ul {
		padding-right: 50px;
	}
}

@media(max-width:991px) {
	.index_lianchun_advantage_ft {
		height: auto;
		padding: 4% 0;
	}

	.index_lianchun_advantage_fb {
		height: auto;
		margin: 3% 0;
	}

	.index_lianchun_advantage_ft_fr {
		padding-right: 0;
	}

	.index_lianchun_advantage_fb ul {
		padding-right: 0;
		height: auto;
	}

	.index_lianchun_advantage_fb_con {
		height: auto;
	}

	.index_lianchun_advantage_fb li {
		height: 310px;
		padding: 20px;
		width: 32%;
		margin-right: 2%;
	}

	.index_lianchun_advantage_fb li:nth-child(3n) {
		margin-right: 0;
	}

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

	.index_lianchun_advantage_fb li .wz1 {
		font-size: 26px;
	}

	.index_lianchun_advantage_fb li .wz2 h3 {
		font-size: 18px;
	}

	.index_lianchun_advantage_fb li .wz3 {
		font-size: 26px;
	}
}

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

	.index_lianchun_advantage_fb {
		margin: 25px 0;
	}

	.index_lianchun_advantage_ft_fl {
		font-size: 26px;
	}
}

@media(max-width:468px) {
	.index_lianchun_advantage_ft_fl {
		font-size: 22px;
		width: 100%;
		margin-bottom: 15px;
	}

	.index_lianchun_advantage_ft {
		padding: 25px 0;
	}

	.index_lianchun_advantage_fb {
		margin: 25px 0;
	}

	.index_lianchun_advantage_ft_fr a {
		border-color: #1564af;
	}

	.index_lianchun_advantage_fb li {
		width: 100%;
		margin-right: 0;
		height: 285px;
	}

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

	.index_lianchun_advantage_fb li .wz2 {
		margin: 15px 0 10px;
	}

	.index_lianchun_advantage_fb li .wz2 h4 {
		height: 7.5em;
		-webkit-line-clamp: 5;
	}
}

/*产品分类*/
.index_lianchun_product_img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.index_lianchun_product_img ul {
	width: 100%;
	height: 100%;
}

.index_lianchun_product_img li {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.index_lianchun_product_img li.on {
	opacity: 1;
}

.index_lianchun_product {
	position: relative;
	z-index: 15;
	height: 100%;
}

.index_lianchun_product_mc{
	display: none;
}

.index_lianchun_product ul {
	height: 100%;
}

.index_lianchun_product li {
	width: 33.33333333333%;
	cursor: pointer;
	height: 100%;
	border-right: 1px solid rgba(255, 255, 255, .6);
	padding: 0 4%;
	padding-top: 85px;
	padding-bottom: 6.5%;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-content: flex-end;
	-moz-align-content: flex-end;
	-ms-align-content: flex-end;
	-o-align-content: flex-end;
	align-content: flex-end;
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.index_lianchun_product li:hover,.index_lianchun_product_pc li.on,.index_lianchun_product_mc li.on{
	background: rgba(0,0,0,0.4);
}

.index_lianchun_product li .index_lianchun_product_ft {
	width: 52px;
	line-height: 52px;
}

.index_lianchun_product li .index_lianchun_product_ft img {
	width: 100%;
}

.index_lianchun_product li .index_lianchun_product_fc {
	margin-top: 4%;
	width: 100%;
}

.index_lianchun_product li .index_lianchun_product_fc h3 {
	font-size: 26px;
	line-height: 1.5;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_lianchun_product_fb {
	width: 100%;
	margin: 0;
	opacity: 0;
	display: none;
}

.index_lianchun_product li.on .index_lianchun_product_fb {
	margin: 5% 0;
	opacity: 1;
}

.index_lianchun_product_fb_li {
	font-size: 0;
	margin: 3% 0;
	padding-left: 18px;
	position: relative;
}

.index_lianchun_product_fb_li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_lianchun_product_fb_li a {
	display: inline-block;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	position: relative;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_lianchun_product_fb_li a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #fff;
	-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_lianchun_product_fb_li a:hover::before {
	width: 100%;
}

.index_lianchun_product_fb1 {
	display: none;
	margin-top: 0;
}

.index_lianchun_product_fb1 a {
	color: #fff;
	border-color: #fff;
}

@media(max-width:1366px) {
	.index_lianchun_product li .index_lianchun_product_fc h3 {
		font-size: 24px;
	}
}

@media(max-width:1280px) {
	.index_lianchun_product li .index_lianchun_product_fc h3 {
		font-size: 22px;
	}
}

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

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

	.index_lianchun_product_mc{
		display: block;
	}

	.index_lianchun_product li {
		width: 50%;
		padding: 25px;
		height: auto;
		border-bottom: 1px solid rgba(255, 255, 255,0.6);
	}

	.index_lianchun_product_fb {
		display: block !important;
		opacity: 1;
		margin: 5% 0;
	}

	.index_lianchun_product_fb1 {
		display: block !important;
	}
}

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

	.index_lianchun_product_fb_li {
		padding-left: 10px;
	}

	.index_lianchun_product li .index_lianchun_product_ft {
		width: 40px;
	}

	.index_lianchun_product li .index_lianchun_product_fc h3 {
		font-size: 18px;
	}

	.index_lianchun_product_fb {
		margin: 10px 0 15px !important;
	}

	.index_lianchun_product_fb_li {
		margin: 3px 0;
	}

	.index_lianchun_product_fb1 a {
		padding: 8px 10px;
	}
}

@media(max-width:468px) {
	.index_lianchun_product li {
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255,0.6);
	}

	.index_lianchun_product_fb1 a {
		border-color: #fff;
		background: none;
	}

}

/*新闻*/
.section5 {
	position: relative;
}

.section5::before {
	content: '';
	position: absolute;
	z-index: 5;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background: rgba(3, 65, 152, .08);
}

.section5::after {
	content: '';
	position: absolute;
	z-index: 5;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background: rgba(255, 255, 255, .01);
}

.index_lianchun_news {
	position: relative;
	z-index: 15;
}

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

.index_lianchun_news_fl {
	width: 50%;
	padding: 0 4%;
}

.index_lianchun_news_fl_ft {
	font-size: 2.6rem;
	line-height: 1.2;
	color: #3b4048;
	font-weight: bold;
}

.index_lianchun_news_fl_fb {
	margin-top: 10%;
}

.index_lianchun_news_fl_fb li h3 {
	font-size: 20px;
	line-height: 1.5;
	font-weight: bold;
	color: #4d4d4d;
	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_lianchun_news_fl_fb li h4 {
	font-size: 16px;
	line-height: 1.5;
	color: #4d4d4d;
	padding: 5% 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	border-bottom: 1px solid rgba(77, 77, 77, .2);
}

.index_lianchun_news_fl_fb li:hover h3 {
	color: #1564af;
}

.index_lianchun_news_fl_fb li:hover h4 {
	color: #1564af;
	border-color: #1564af;
}

.index_lianchun_news_fr {
	width: 50%;
	padding: 0 5%;
}

.index_lianchun_news_fr_ft ul {
	overflow: hidden;
}

.index_lianchun_news_fr_ft li {
	float: left;
	margin-right: 2rem;
}

.index_lianchun_news_fr_ft li:last-child {
	margin-right: 0;
}

.index_lianchun_news_fr_ft li a {
	font-size: 26px;
	line-height: 1.5;
	color: #999;
	padding-bottom: 10px;
	position: relative;
	display: block;
	cursor: pointer;
	-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_lianchun_news_fr_ft li a::before {
	content: '';
	position: absolute;
	width: 0;
	left: 50%;
	bottom: 0;
	height: 2px;
	background: #1564af;
	-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%);
}

.index_lianchun_news_fr_ft li.on a {
	color: #1564af;
}

.index_lianchun_news_fr_ft li.on a::before {
	width: 100%;
}

.index_lianchun_news_fr_fc {
	margin: 8% 0;
}

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

.index_lianchun_news_fr_fc li a {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	position: relative;
}

.index_lianchun_news_fr_fc li a::before {
	content: '';
	width: 1px;
	height: 100%;
	background: #aaa;
	position: absolute;
	left: 60px;
	top: 0;
	margin-left: 2rem;
	-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_lianchun_news_fr_fc_fl {
	font-size: 14px;
	line-height: 1.3;
	color: #aaa;
	text-align: center;
	width: 60px;
	-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_lianchun_news_fr_fc_fl span {
	font-size: 1.8rem;
	font-weight: bold;
	font-family: Arial;
	display: block;
}

.index_lianchun_news_fr_fc_fr {
	width: 100%;
	padding-left: 60px;
	margin-left: -60px;
}

.index_lianchun_news_fr_fc_fr h3 {
	font-size: 18px;
	line-height: 1.6;
	color: #aaa;
	font-weight: bold;
	padding-left: 4rem;
	max-height: 3.2em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	-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_lianchun_news_fr_fc li:hover .index_lianchun_news_fr_fc_fl {
	color: #1564af;
}

.index_lianchun_news_fr_fc li:hover .index_lianchun_news_fr_fc_fr h3 {
	color: #1564af;
}

.index_lianchun_news_fr_fc li:hover a::before {
	background: #1564af;
}

@media(max-width:1366px) {
	.index_lianchun_news_fr_ft li a {
		font-size: 24px;
		font-weight: bold;
	}
}

@media(max-width:1280px) {
	.index_lianchun_news_fr_ft li a {
		font-size: 22px;
	}

	.index_lianchun_news_fr_fc_fl span {
		font-size: 26px;
	}
}

@media(max-width:1200px) {
	.index_lianchun_news_fr_ft li a {
		font-size: 20px;
	}
}

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

	.section5::after {
		width: 100%;
	}

	.index_lianchun_news {
		padding: 4% 0;
	}

	.index_lianchun_news_fl_fb li h3 {
		font-size: 18px;
	}

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

	.index_lianchun_news_fr_fc_fr h3 {
		font-size: 16px;
	}

	.index_lianchun_news_fr_fc_fl span {
		font-size: 24px;
	}
}

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

	.index_lianchun_news_fl {
		width: 100%;
		padding: 0;
	}

	.index_lianchun_news_fl_ft {
		font-size: 26px;
	}

	.index_lianchun_news_fl_fb {
		margin-top: 10px;
	}

	.index_lianchun_news_fl_fb li h4 {
		padding: 10px 0 15px;
	}

	.index_lianchun_news_fr {
		width: 100%;
		padding: 0;
		margin-top: 15px;
	}

	.index_lianchun_news_fr_ft li {
		margin-right: 15px;
	}

	.index_lianchun_news_fr_fc {
		margin: 15px 0 20px;
	}

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

	.index_lianchun_news_fr_fc li a::before {
		margin-left: 15px;
	}

	.index_lianchun_news_fr_fc_fr h3 {
		padding-left: 30px;
	}
}

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

	.index_lianchun_news_fl_ft {
		font-size: 22px;
	}
}

.index_footer {
	display: none;
}

@media(max-width:991px) {
	.index_footer {
		display: block;
	}
}

/*footer*/
.pc_footer {
	background: #222430;
}

.pc_footer_ft {
	padding: 4% 0;
}

.pc_footer_ft_fl {
	width: 30%;
}

.pc_footer_ft_fl li {
	max-width: 45%;
}

.pc_footer_ft_fl li h3 {
	font-size: 19px;
	line-height: 2;
	color: #fff;
}

.foot_nav_erji {
	margin-top: 10px;
}

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

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

.pc_footer_ft_fc {
	max-width: 30%;
}

.pc_footer_ft_fc h3 {
	font-size: 19px;
	line-height: 2;
	color: #fff;
}

.pc_footer_ft_fc h4 {
	font-size: 15px;
	line-height: 2;
	color: rgba(255, 255, 255, .8);
	margin-top: 10px;
}

.pc_footer_ft_fr {
	width: 30%;
	max-width: 120px;
}

.pc_footer_ft_fr h3 {
	font-size: 19px;
	line-height: 2;
	color: #fff;
}

.pc_footer_ft_fr ul {
	margin-top: 18px;
	overflow: hidden;
}

.pc_footer_ft_fr li {
	width: 100%;
	float: left;
	margin-right: 0%;
}

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

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

.pc_footer_ft_fr .wz {
	font-size: 15px;
	line-height: 2;
	color: rgba(255, 255, 255, .8);
	text-align: center;
	margin-top: 10px;
}

.pc_footer_fb {
	border-top: 1px solid rgba(255, 255, 255, .2);
	font-size: 15px;
	line-height: 2;
	padding: 20px 0;
	color: rgba(255, 255, 255, .8);
}

.pc_footer_fb a {
	color: rgba(255, 255, 255, .8);
	-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_footer_fb a:hover {
	color: #fff;
}

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

	.pc_footer_ft_fc {
		max-width: 55%;
	}

	.pc_footer_ft_fr {
		width: 40%;
	}

}

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

	.pc_footer_fb {
		padding: 15px 0;
	}
}

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

	.pc_footer_ft_fl li h3 {
		font-size: 18px;
	}

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

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

	.pc_footer_ft_fc h4 {
		margin-top: 0;
	}

	.pc_footer_ft_fr {
		width: 100%;
		max-width: 100%;
		margin-top: 2px;
	}

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

	.pc_footer_ft_fr ul {
		margin-top: 8px;
	}

	.pc_footer_ft_fr ul li {
		max-width: 120px;
	}
}

/* 渐入效果 */
@media(min-width: 992px) {
	.yigegexiangshangtexiao {
		-webkit-transform: translateY(100px);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
		transform: translateY(100px);
		opacity: 0;
	}

	.active .yigegexiangshangtexiao {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	.yigegexiangshangtexiao:nth-child(1) {
		-webkit-transition-delay: 0.7s;
		-moz-transition-delay: 0.7s;
		-ms-transition-delay: 0.7s;
		-o-transition-delay: 0.7s;
		transition-delay: 0.7s;
	}

	.yigegexiangshangtexiao:nth-child(2) {
		-webkit-transition-delay: 1s;
		-moz-transition-delay: 1s;
		-ms-transition-delay: 1s;
		-o-transition-delay: 1s;
		transition-delay: 1s;
	}

	.yigegexiangshangtexiao:nth-child(3) {
		-webkit-transition-delay: 1.3s;
		-moz-transition-delay: 1.3s;
		-ms-transition-delay: 1.3s;
		-o-transition-delay: 1.3s;
		transition-delay: 1.3s;
	}

	.yigegexiangshangtexiao:nth-child(4) {
		-webkit-transition-delay: 1.6s;
		-moz-transition-delay: 1.6s;
		-ms-transition-delay: 1.6s;
		-o-transition-delay: 1.6s;
		transition-delay: 1.6s;
	}

	.yigegexiangshangtexiao:nth-child(5) {
		-webkit-transition-delay: 1.9s;
		-moz-transition-delay: 1.9s;
		-ms-transition-delay: 1.9s;
		-o-transition-delay: 1.9s;
		transition-delay: 1.9s;
	}

	.yigegexiangshangtexiao:nth-child(6) {
		-webkit-transition-delay: 2.2s;
		-moz-transition-delay: 2.2s;
		-ms-transition-delay: 2.2s;
		-o-transition-delay: 2.2s;
		transition-delay: 2.2s;
	}
}






@media(min-width: 992px) {
	.allx {
		transition-duration: 1.2s;
		opacity: 0;
	}

	.active .allx {
		opacity: 1;
	}

	.leftx {
		transform: translateX(-500px);
	}

	.active .leftx {
		transform: translateX(0px);
	}

	.rightx {
		transform: translateX(500px);
	}

	.active .rightx {
		transform: translateX(0px);
	}

	.sun-delay0 {
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
	}

	.sun-delay1 {
		-webkit-transition-delay: 0.4s;
		transition-delay: 0.4s;
	}

	.sun-delay2 {
		-webkit-transition-delay: 0.6s;
		transition-delay: 0.6s;
	}

	.sun-delay3 {
		-webkit-transition-delay: 0.8s;
		transition-delay: 0.8s;
	}

	.sun-delay4 {
		-webkit-transition-delay: 1s;
		transition-delay: 1s;
	}

	.sun-delay5 {
		-webkit-transition-delay: 1.2s;
		transition-delay: 1.2s;
	}

	.sun-delay6 {
		-webkit-transition-delay: 1.4s;
		transition-delay: 1.4s;
	}

	.sun-delay7 {
		-webkit-transition-delay: 1.6s;
		transition-delay: 1.6s;
	}

	.sun-delay8 {
		-webkit-transition-delay: 1.8s;
		transition-delay: 1.8s;
	}

	.sun-delay9 {
		-webkit-transition-delay: 2s;
		transition-delay: 2s;
	}

	.sun-delay10 {
		-webkit-transition-delay: 2.2s;
		transition-delay: 2.2s;
	}

	.sun-ani-left,
	.sun-ani-down,
	.sun-ani-up,
	.sun-ani-right {
		opacity: 0;
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-duration: .7s;
		transition-duration: .7s;
	}

	.sun-ani-left {
		-webkit-transform: translateX(-150px);
		transform: translateX(-150px);
	}

	.sun-ani-down {
		-webkit-transform: translateY(-150px);
		transform: translateY(-150px);
	}

	.sun-ani-up {
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
	}

	.sun-ani-right {
		-webkit-transform: translateX(150px);
		transform: translateX(150px);
	}

	.actives .sun-ani-left {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.active .sun-ani-left {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.active .sun-ani-down {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	.active .sun-ani-up {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	.active2 .sun-ani-up {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	.active .sun-ani-right {
		opacity: 1;
		-webkit-transform: translatex(0);
		transform: translatex(0);
	}

	.active2 .sun-ani-left {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.active2 .sun-ani-down {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	.active2 .sun-ani-up {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	.active2 .sun-ani-right {
		opacity: 1;
		-webkit-transform: translatex(0);
		transform: translatex(0);
	}
}





/*公司简介*/
.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 #1564af;
	-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: 5.7rem;
	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: 4% 0;
}

.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 #dddddd;
}

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

.ny_about_3 {
	padding: 4% 0;
	margin-top: 4%;
	background: #f7f7f7;
}

.ny_about_3_fb {
	position: relative;
	margin-top: 3%;
	overflow: hidden;
}

.ny_about_3_fb li .img {
	overflow: hidden;
	border: 1px solid #ddd;
}

.ny_about_3_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_3_fb li:hover .img img {
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-ms-transform: scale(1.03);
	-o-transform: scale(1.03);
	transform: scale(1.03);
}

@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: 4%;
	}

	.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 {
		padding: 25px 0;
	}

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

	.ny_about_1_fb_fr_ft h4 {
		font-size: 55px;
	}

	.ny_about_3 {
		margin-top: 25px;
		padding: 25px 0;
	}

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

@media(max-width:468px) {
	.ny_about_1_fb_fr_ft h3 {
		padding-bottom: 5px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 5.1rem;
		text-indent: 0;
		text-align: left;
	}
}

/*企业文化*/
.page_philosophy{
	padding-bottom: 4%;
}

.page_philosophy_li{
	background-color: #f7f7f7;
}

.page_philosophy_li:nth-child(2n){
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.page_philosophy_li_fl,.page_philosophy_li_fr{
	width: 50%;
}

.page_philosophy_li_fl img{
	width: 100%;
}

.page_philosophy_li_fl .img_con{
	padding: 25% 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page_philosophy_li_fr{
	padding: 3.5%;
}

.page_philosophy_li_fr h3{
	position: relative;
	font-size: 1.6rem;
	line-height: 1.4;
	color: #333333;
	padding-bottom: 1rem;
}

.page_philosophy_li_fr h3::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 3.2rem;
	height: 3px;
	background: #1564af;
}

.page_philosophy_li_fr h4{
	font-size: 17px;
	line-height: 1.7;
	color: #666666;
	margin-top: 2.5%;
}

@media(max-width:1280px){
	.page_philosophy_li_fr h3{
		font-size: 24px;
		padding-bottom: 15px;
	}

	.page_philosophy_li_fr h3::before{
		width: 48px;
	}

	.page_philosophy_li_fr h4{
		font-size: 16px;
		margin-top: 12px;
	}
}

@media(max-width:991px){
	.page_philosophy{
		padding: 4% 0;
	}

	.page_philosophy_li_fl,.page_philosophy_li_fr{
		width: 100%;
	}

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

	.page_philosophy_li_fl .img_con{
		min-height: auto!important;
	}

	.page_philosophy_li_fr{
		padding: 3%;
	}

	.page_philosophy_li_fr h3{
		font-size: 22px;
		padding-bottom: 12px;
	}

	.page_philosophy_li_fr h3::before{
		width: 44px;
	}

	.page_philosophy_li_fr h4{
		line-height: 1.6;
		margin-top: 10px;
	}
}

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

	.page_philosophy_li:nth-child(n+2){
		margin-top: 20px;
	}

	.page_philosophy_li_fr{
		padding: 20px;
	}

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

	.page_philosophy_li_fr h3::before{
		width: 40px;
		height: 2px;
	}
}

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

	.page_philosophy_li_fr{
		padding: 18px;
	}
}


/**/



























