/*初始化样式*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	border: 0;
}

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: #c6000d;
}

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: 1500px;
	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*/
::-webkit-scrollbar {
	width: 4px;
	-webkit-appearance: none;
	-webkit-border-radius: 0
}

::-webkit-scrollbar-track {
	background: #9f9f9f;
	-webkit-border-radius: 0
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:vertical {
	background: #c6000d;
	border: none;
	-webkit-border-radius: 0
}

::-webkit-scrollbar-thumb:vertical:active {
	background: #c6000d;
	border: none;
	-webkit-border-radius: 0
}

.section .fp-tableCell {
	padding-top: 80px;
}

.section0 .fp-tableCell {
	padding-top: 0;
}

.fp-auto-height .fp-tableCell {
	padding-top: 0;
}

@media (max-width: 991px) {
	.section {
		height: auto !important;
	}

	.fp-tableCell {
		height: auto !important;
	}

	#fp-nav {
		display: none;
	}

	.section .fp-tableCell {
		padding-top: 0;
	}
}


/*头部*/
#pc_header {
	height: 80px;
	line-height: 80px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	z-index: 999;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

#pc_header.on {
	background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pc_header_fl {
	width: 55%;
}

.pc_logo {
	max-width: 25%;
}

.pc_logo img {
	max-width: 100%;
	max-height: 60px;
}

.pc_dianhua {
	font-size: 1.8rem;
	color: #fff;
	font-weight: bold;
	margin-left: 6%;
}

#pc_header.on .pc_dianhua{
    color: #333;
}
.pc_header_fr {
	width: 40%;
}

.pc_caidan {
	width: 40px;
	height: 80px;
	cursor: pointer;
	background: url(../images/img/toubucaidan.png) no-repeat right center;
}

#pc_header.on .pc_caidan{
    background: url(../images/img/toubucaidan_h.png) no-repeat right center;
}
.pc_caidan.on {
	background: url(../images/img/cuowu.png) no-repeat right center;
}

#pc_header.on .pc_caidan.on{
    background: url(../images/img/cuowu_h.png) no-repeat right center;
	-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 {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 998;
	background: #c6000d;
	display: none;
}

.pc_nav .pc_nav_con {
	height: 100%;
}

.pc_nav ul {
	overflow: hidden;
	width: 100%;
	text-align: justify;
	max-height: 70vh;
	overflow-y: auto;
}

.pc_nav ul>li {
	max-width: 20%;
	padding: 0 8px;
	min-width: 150px;
}

.pc_nav ul>li>a {
	font-size: 1.2rem;
	font-weight: bold;
	display: block;
	padding-bottom: 15px;
	color: #fff;
	line-height: 2;
	border-bottom: 1px solid #a4a4a4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
}

.pc_nav ul>li .pc_nav_erji {
	margin-top: 25px;
}

.pc_nav ul>li .pc_nav_erji .pc_nav_erji_li a {
	font-size: 18px;
	line-height: 2;
	color: #fff;
	display: block;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 5px 0;
	white-space: nowrap;
}

@media(max-width:1480px) {
	.pc_nav ul>li>a {
		font-size: 18px;
	}

	.pc_nav ul>li .pc_nav_erji {
		margin-top: 20px;
	}

	.pc_nav ul>li .pc_nav_erji .pc_nav_erji_li a {
		font-size: 16px;
	}
}

@media(max-width:1280px) {
	.pc_dianhua {
		font-size: 24px;
	}
}

@media(max-width:991px) {
	.pc_nav {
		display: none;
	}
}

/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
}

.index_banner img {
	width: 100%;
	display: block;
	height: 100vh;
	opacity: 0;
	background: url() no-repeat center;
	background-size: cover;
}

.index_banner_yuandian {
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 3% !important;
	z-index: 99;
}

.index_banner_yuandian span {
	width: 14px;
	height: 14px;
	background: #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0 8px !important;
}

.index_banner_yuandian span.swiper-pagination-bullet-active {
	background: #c6000d;
}

.index_banner2 {
	display: none;
}

/*视频*/
.shipinshouye {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
}
.index_banner_shipin_li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
}

@media(max-width:991px) {
	.index_banner1 {
		display: none;
	}

	.index_banner2 {
		display: block;
	}

	.index_banner img {
		opacity: 1;
		height: auto;
	}
}

@media(max-width:768px) {
	.index_banner_yuandian {
		bottom: 10px !important;
	}

	.index_banner_yuandian span {
		width: 10px;
		height: 10px;
		margin: 0 3px !important;
	}
}

/*关于我们*/
.section1 {
	background: #f6f6f6;
}

.index_gywm {
	padding: 3% 0;
}

.index_gywm_ft_fl {
	width: 48%;
}

.index_gywm_ft_fl img {
	width: 100%;
}

.index_gywm_ft_fr {
	width: 46%;
}

.index_gywm_ft {
	overflow: hidden;
	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-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.index_gywm_ft_fr_ft h3 {
	font-size: 1.8rem;
	line-height: 1.5;
	color: #1f1f1f;
}

.index_gywm_ft_fr_ft h4 {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #999;
}

.index_gywm_ft_fr_fc {
	font-size: 15px;
	line-height: 2;
	color: #1f1f1f;
	margin: 4% 0;
	height: 180px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
}

.index_gywm_ft_fr_fb a {
	display: block;
	width: 160px;
	line-height: 45px;
	border: 1px solid #ddd;
	border-radius: 5px;
	text-align: center;
	background: #fafafa;
	color: #999;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.index_gywm_ft_fr_fb a:hover {
	color: #fff;
	border: 1px solid #c6000d;
	background: #c6000d;
}

.index_gywm_fb {
	margin-top: 1.7%;
	-moz-box-shadow: 0px 2px 10px #ddd;
	-webkit-box-shadow: 0px 2px 10px #ddd;
	box-shadow: 0px 2px 10px #ddd;
	background: #fff;
	padding: 3% 0;
}

.index_gywm_fb ul {
	overflow: hidden;
}

.index_gywm_fb li {
	width: 25%;
	padding: 0 5px;
	float: left;
	border-right: 1px solid #ddd;
	text-align: center;
}

.index_gywm_fb li:nth-child(4n) {
	border-right: 1px solid rgba(0, 0, 0, 0);
}

.index_gywm_fb li .wz {
	display: inline-block;
	vertical-align: bottom;
}

.index_gywm_fb li .wz1 h3 {
	font-size: 16px;
	line-height: 2;
	color: #666;
}

.index_gywm_fb li .wz2 h3 {
	font-size: 3.3rem;
	line-height: 1;
	font-weight: bold;
	color: #c6000d;
	margin: 0 5px;
}

.index_gywm_fb li .wz3 h3 {
	font-size: 16px;
	line-height: 2;
	color: #666;
}

@media(max-width:1080px) {
	.index_gywm_ft_fr_ft h3 {
		font-size: 24px;
	}

	.index_gywm_ft_fr_ft h4 {
		font-size: 16px;
	}

	.index_gywm_ft_fr_fb a {
		width: 120px;
		line-height: 38px;
	}
}

@media(max-width:991px) {
	.index_gywm {
		padding: 30px 0;
	}

	.index_gywm_ft_fl {
		width: 100%;
	}

	.index_gywm_ft_fr {
		width: 100%;
		margin-top: 15px;
	}

	.index_gywm_ft_fr_fc {
		margin: 15px 0;
		height: auto;
		-webkit-line-clamp: 20;
	}

	.index_gywm_fb {
		margin-top: 20px;
		padding: 20px 0;
	}

	.index_gywm_fb li {
		width: 50%;
		margin: 10px 0;
	}

	.index_gywm_fb li:nth-child(2n) {
		border-right: 1px solid rgba(0, 0, 0, 0);
	}
}

@media(max-width:768px) {
	.index_gywm_fb li .wz2 h3 {
		font-size: 28px;
		line-height: 1.5;
	}

	.index_gywm_ft_fr_ft h3 {
		font-size: 22px;
	}
}

@media(max-width:468px) {
	.index_gywm_fb li .wz1 h3 {
		font-size: 13px;
	}

	.index_gywm_fb li .wz2 h3 {
		font-size: 20px;
	}

	.index_gywm_fb li .wz3 h3 {
		font-size: 13px;
	}
}

/*产品中心*/
.section2 {
	background: url(../images/img/index_cpzx_bj.jpg) no-repeat center;
	background-size: cover;
}

.index_cpzx {
	padding: 3% 0;
}

.index_cpzx_ft {
	overflow: hidden;
	position: relative;
	padding-bottom: 60px;
}

.index_cpzx_ft_fl {
	width: 40%;
}

.index_cpzx_ft_fl_ft h3 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
    color: #c6000d;
}
.index_cpzx_ft_fl_ft h4 {
    font-size: 2rem;
    line-height: 2;
    color: #000;
    position: relative;
    padding-bottom: 5px;
}
.index_cpzx_ft_fl_ft h4:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4rem;
    height: 4px;
    background: #c6000d;
}
.index_cpzx_ft_fl_fc{
    margin: 8% 0;
}
.index_cpzx_ft_fl_fc h3{
    font-size: 1.8rem;
    line-height: 2;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_cpzx_ft_fl_fc h4{
	font-size: 16px;
	line-height: 2;
	height: 128px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	color: #6d6d6d;
	margin-top: 10px;
}

.index_cpzx_ft_fl_fb a {
	display: inline-block;
	background: #333;
	border-color: #333;
	font-size: 15px;
	line-height: 2;
	color: #fff;
	padding: 10px 3rem;
	text-align: center;
	border-radius: 35px;
	-webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.index_cpzx_ft_fl_fb a:hover{
    background: #c6000d;
	border-color: #333;
}
.index_cpzx_ft_fr {
	width: 45%;
	text-align: center;
	border-radius: 15px;
	overflow: hidden;
}

.index_cpzx_ft_fr img {
	width: 100%;
	/*max-width: 304px;*/
}

.index_cpzx_fb {
	margin-top: 5%;
	position: relative;
}

.index_cpzx_fb:before {
	content: '';
	position: absolute;
	left: 0;
	top: 23px;
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
	z-index: 9;
}

.index_cpzx_fb_nn {
	overflow: hidden;
	margin: 0 35px;
}

.index_cpzx_fb li .img {
	position: relative;
	width: 47px;
	height: 47px;
	margin: 0 auto;
}

.index_cpzx_fb li .img .img_n {
	display: block;
	width: 47px;
	height: 47px;
	position: absolute;
	left: 0;
	top: 0;
}

.index_cpzx_fb li .img .img1 {
	background: url(../images/img/dian.png) no-repeat center;
}

.index_cpzx_fb li .img .img2 {
	background: url(../images/img/dian1.png) no-repeat center;
	opacity: 0;
}

.index_cpzx_fb li.swiper-slide-active .img .img2 {
	opacity: 1;
}

.index_cpzx_fb li .wz {
	text-align: center;
	font-size: 16px;
	line-height: 2;
	color: rgba(51, 51, 51, 0.5);
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_cpzx_fb_btnl {
	width: 35px;
	height: 35px;
	background: #333 url(../images/img/index_cpzx_btnl.png) no-repeat center;
	background-size: 25px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 6px;
	z-index: 99;
	cursor: pointer;
}

.index_cpzx_fb_btnr {
	width: 35px;
	height: 35px;
	background: #333 url(../images/img/index_cpzx_btnr.png) no-repeat center;
	background-size: 25px;
	border-radius: 50%;
	position: absolute;
	right: 0;
	top: 6px;
	z-index: 99;
	cursor: pointer;
}
.index_cpzx_ft_nn{
    overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}


.index_cpzx_btn{
    position: absolute;
    right: 0;
    bottom:0;
    overflow: hidden;
    z-index:990;
}
.index_cpzx_btn_btnl{
    width: 74px;
    height: 38px;
    border: solid 1px #898989;
    border-radius: 8px;
    float: left;
    margin-right: 15px;
    font-size: 16px;
    background:url(../images/img/index_cpzx_zuojiantou.png) no-repeat center;
    background-size: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}
.index_cpzx_btn_btnr{
    width: 74px;
    height: 38px;
    border: solid 1px #898989;
    border-radius: 8px;
    float: right;
    background:url(../images/img/index_cpzx_youjiantou.png) no-repeat center;
    background-size: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}
.index_cpzx_btn_btnl:hover{
    background:#c6000d url(../images/img/index_cpzx_zuojiantoub.png) no-repeat center;
    background-size: 20px;
}
.index_cpzx_btn_btnr:hover{
    background:#c6000d url(../images/img/index_cpzx_youjiantoub.png) no-repeat center;
    background-size: 20px;
}
@media(max-width:1080px) {
	.index_cpzx_ft_fl_ft h4 {
		font-size: 24px;
	}

	.index_cpzx_ft_fl_fc h4{
		font-size: 15px;
		height: 120px;
	}

	.index_cpzx_ft_fl_fb a {
		padding: 5px 25px;
		font-size: 14px;
	}

	.index_cpzx_fb li .wz {
		font-size: 15px;
	}
}

@media(max-width:991px) {
	.index_cpzx {
		padding: 30px 0;
	}
	
	.index_cpzx_ft_fl_ft h3{
	    font-size: 28px;
	}
	.index_cpzx_ft_fl_fc h3{
	    font-size: 20px;
	}
}

@media(max-width:768px) {
	.index_cpzx_ft_nn {}

	.index_cpzx_ft_fl {
		width: 100%;
	}

	.index_cpzx_ft_fl_ft h4 {
		font-size: 22px;
	}

	.index_cpzx_ft_fl_fc {
		margin: 10px 0;
	}

	.index_cpzx_ft_fr {
		width: 100%;
		margin-top: 15px;
	}

	.index_cpzx_fb {
		margin-top: 20px;
	}
}
@media(max-width:468px){
    .index_cpzx_btn_btnl{
        width: 60px;
        background-size: 15px;
        height: 35px;
    }
    .index_cpzx_btn_btnr{
        width: 60px;
        background-size: 15px;
        height: 35px;
    }
    .index_cpzx_btn_btnl:hover{
        background-size: 15px;
    }
    .index_cpzx_btn_btnr:hover{
        background-size: 15px;
    }
}
/*服务区域*/
.index_fwqy {
	padding: 3% 0;
}

.index_fwqy_ft1 {
	overflow: hidden;
	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-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.index_fwqy_ft1_fl {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	float: left;
	padding-bottom: 20px;
}

.index_fwqy_ft1_fl img {
	width: 100%;
}

.index_fwqy_ft1_fr {
	width: 45%;
	display: inline-block;
	float: right;
	vertical-align: middle;
}

.index_fwqy_ft1_fr_ft {
	overflow: hidden;
}

.index_fwqy_ft1_fr_ft li {
	width: 50%;
	float: left;
}

.index_fwqy_ft1_fr_ft li h3 {
	font-size: 2rem;
	line-height: 1.5;
	color: #c6000d;
	font-weight: bold;
}

.index_fwqy_ft1_fr_ft li h3 span {
	font-size: 3.3rem;
	line-height: 1.5;
	color: #c6000d;
	font-weight: bold;
	vertical-align: top;
	margin-right: 5px;
}

.index_fwqy_ft1_fr_ft li h4 {
	font-size: 16px;
	line-height: 2;
	color: #666;
}

.index_fwqy_ft1_fr_fc {
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin: 5% 0;
}

.index_fwqy_ft1_fr_fb a {
	display: block;
	width: 160px;
	line-height: 45px;
	border: 1px solid #ddd;
	border-radius: 5px;
	text-align: center;
	background: #fafafa;
	color: #999;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.index_fwqy_ft1_fr_fb a:hover {
	color: #fff;
	border: 1px solid #c6000d;
	background: #c6000d;
}

.index_fwqy_ft2 ul {
	font-size: 0;
}

.index_fwqy_ft2 li {
	display: inline-block;
	vertical-align: bottom;
	text-align: center;
	width: 23.125%;
	margin-right: 2.5%;

}

.index_fwqy_ft2 li:nth-child(4n) {
	margin-right: 0;
}

.index_fwqy_ft2 li .img {
	background: #fff;
	-moz-box-shadow: 0px 2px 8px #DDDDDD;
	-webkit-box-shadow: 0px 2px 8px #dddddd;
	box-shadow: 0px 2px 8px #dddddd;
}

.index_fwqy_ft2 li .img img {
	max-width: 100%;
}

.index_fwqy_ft2 li .wz {
	font-size: 16px;
	color: #666;
	line-height: 2;
	margin: 15px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_fwqy_ft3 {
	background: url(../images/img/index_fwrx_bj.jpg) no-repeat center;
	background-size: cover;
}

.index_fwqy_ft3 ul {
	font-size: 0;
	text-align: center;
}

.index_fwqy_ft3 li {
	padding: 5% 2%;
	background: rgba(255, 255, 255, .8);
	width: 40%;
	display: inline-block;
	-moz-box-shadow: 0px 2px 5px #ddd;
	-webkit-box-shadow: 0px 2px 5px #ddd;
	box-shadow: 0px 2px 5px #ddd;
}

.index_fwqy_ft3 li .img {
	width: 80px;
	height: 80px;
	line-height: 80px;
	background-size: 100% 100% !important;
	display: inline-block;
	vertical-align: middle;
}

.index_fwqy_ft3 li:nth-child(1) {
	margin-right: 5%;
}

.index_fwqy_ft3 li:nth-child(1) .img {
	background: url(../images/img/kefu.png) no-repeat center;
}

.index_fwqy_ft3 li:nth-child(2) .img {
	background: url(../images/img/xiaoshou.png) no-repeat center;
}

.index_fwqy_ft3 li .wz {
	display: inline-block;
	vertical-align: middle;
}

.index_fwqy_ft3 li .wz h3 {
	font-size: 16px;
	line-height: 2;
	color: #333;
	text-align: left;
}

.index_fwqy_ft3 li .wz h4 {
	color: #c6000d;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.5;
}


.index_fwqy_ft {
	position: relative;
}

.index_fwqy_ft_nn {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index:-1;
}

.index_fwqy_ft_nn.on {
	opacity: 1;
	z-index: 9;
}

.index_fwqy_ft_nn:nth-child(1) {
	position: relative;
	min-height: 450px;
}

.index_fwqy_ft2 {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_fwqy_ft3 {
	height: 100%;
}

.index_fwqy_ft3 ul {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_fwqy_ft4 {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_fwqy_ft4_nn {
	text-align: center;
	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;
}

.index_fwqy_ft4_fl {
	background: url(../images/img/index_liuyan.jpg) no-repeat center;
	background-size: cover;
	width: 40%;
	max-width: 570px;
	display: inline-block;
	margin-right: 5%;
}

.index_fwqy_ft4_fr {
	width: 40%;
	max-width: 480px;
	display: inline-block;
}

.index_fwqy_ft4_fr li {
	border: 1px solid #ddd;
	overflow: hidden;
	padding: 0 15px;
	margin-bottom: 5%;
}

.index_fwqy_ft4_fr li span {
	font-size: 15px;
	line-height: 45px;
	color: #333;
	width: 55px;
	float: left;
}

.index_fwqy_ft4_fr li input {
	font-size: 15px;
	line-height: 45px;
	color: #333;
	border: 0;
	padding: 0 15px;
	float: left;
	width: calc(100% - 60px);
	outline: none;
}

.index_fwqy_ft4_fr li textarea {
	font-size: 14px;
	line-height: 40px;
	color: #333;
	border: 0;
	padding: 0 15px;
	float: left;
	width: calc(100% - 60px);
	resize: none;
	outline: none;
	font-family: Microsoft YaHei, arial, 宋体, sans-serif;
}

.index_liuyan_tijiao {
	text-align: left;
}

.index_liuyan_tijiao input {
	width: 160px;
	line-height: 45px;
	border: 1px solid #ddd;
	border-radius: 5px;
	text-align: center;
	background: #fafafa;
	color: #999;
	outline: none;
}

.index_liuyan_tijiao input:hover {
	color: #fff;
	border: 1px solid #c6000d;
	background: #c6000d;
	cursor: pointer;
}

.index_fwqy_fb {
	margin-top: 2%;
	position: relative;
	z-index: 30;
}

.index_fwqy_fb li {
	background: #f6f6f6;
	text-align: center;
	width: 25%;
	padding: 1rem 0;
	border-right: 6px solid #fff;
	font-size: 0;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.index_fwqy_fb li.on {
	background: #c6000d;
}

.index_fwqy_fb li:hover {
	background: #c6000d;
}

.index_fwqy_fb li .img {
	width: 40px;
	height: 40px;
	margin-right: 5px;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
}

.index_fwqy_fb li .img1 {
	margin-top: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.index_fwqy_fb li .img img {
	width: 100%;
	height: 100%;
}

.index_fwqy_fb li.on .img1 {
	margin-top: -40px;
}

.index_fwqy_fb li:hover .img1 {
	margin-top: -40px;
}

.index_fwqy_fb li .wz {
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
	color: #666;
	line-height: 40px;
}

.index_fwqy_fb li.on .wz {
	color: #fff;
}

.index_fwqy_fb li:hover .wz {
	color: #fff;
}

@media(max-width:1080px) {
	.index_fwqy_ft_nn:nth-child(1) {
		min-height: 400px;
	}

	.index_fwqy_ft1_fr_ft li h4 {
		font-size: 15px;
	}

	.index_fwqy_ft1_fr_fc {
		font-size: 15px;
	}

	.index_fwqy_ft1_fr_fb a {
		width: 120px;
		line-height: 38px;
	}

	.index_fwqy_ft2 li .wz {
		font-size: 15px;
		margin: 5px 0;
	}

	.index_fwqy_ft3 li .wz h3 {
		font-size: 15px;
	}

	.index_fwqy_ft3 li .wz h4 {
		font-size: 20px;
	}

	.index_fwqy_ft3 li .img {
		width: 55px;
		height: 55px;
	}

	.index_fwqy_fb li .wz {
		font-size: 15px;
	}
}

@media(max-width:991px) {
	.index_fwqy {
		padding: 30px 0;
	}
}

@media(max-width:768px) {
	.index_fwqy_ft1_fl {
		width: 100%;
	}

	.index_fwqy_ft1_fr {
		width: 100%;
		margin-top: 15px;
	}

	.index_fwqy_ft1_fr_ft li h3 {
		font-size: 18px;
	}

	.index_fwqy_ft1_fr_ft li h3 span {
		font-size: 28px;
	}

	.index_fwqy_ft1_fr_fc {
		margin: 15px 0 20px;
	}


	.index_fwqy_ft2 li {
		width: 49%;
		margin-right: 2%;
	}

	.index_fwqy_ft2 li:nth-child(2n) {
		margin-right: 0;
	}

	.index_fwqy_ft2 li:nth-child(n+7) {
		display: none;
	}

	.index_fwqy_ft2 li .wz {
		margin: 10px 0;
	}


	.index_fwqy_ft3 li {
		width: 100%;
		padding: 12% 2%;
		margin-right: 0 !important;
	}

	.index_fwqy_ft3 li:nth-child(1) {
		margin-bottom: 5%;
	}

	.index_fwqy_ft4_fl {
		display: none;
	}

	.index_fwqy_ft4_fr {
		width: 100%;
		margin: 5% 0;
	}

	.index_fwqy_ft_nn {
		position: static;
		opacity: 1;
		height: auto;
		display: none;
	}

	.index_fwqy_ft_nn.on {
		display: block;
	}

	.index_fwqy_ft2 {
		position: static;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	.index_fwqy_ft3 ul {
		position: static;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		padding: 5% 0;
	}

	.index_fwqy_ft4 {
		position: static;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	.index_fwqy_fb {
		margin-top: 20px;
	}

	.index_fwqy_fb li {
		padding: 10px 0;
		border-right: 3px solid #fff;
	}

	.index_fwqy_fb li .img {
		width: 30px;
		height: 30px;
	}

	.index_fwqy_fb li.on .img1 {
		margin-top: -30px;
	}

	.index_fwqy_fb li:hover .img1 {
		margin-top: -30px;
	}
}

@media(max-width:468px) {
	.index_fwqy_ft3 ul {
		padding: 30px 15px;
	}

	.index_fwqy_ft3 li:nth-child(1) {
		margin-bottom: 30px;
	}

	.index_fwqy_ft3 li {
		padding: 30px 15px;
	}

	.index_fwqy_ft3 li .wz h3 {
		font-size: 16px;
	}

	.index_fwqy_ft3 li .wz h4 {
		font-size: 26px;
	}

	.index_fwqy_fb li {
		width: 49%;
		margin: 1% 0;
		margin-right: 2%;
		border-right: 0;
	}

	.index_fwqy_fb li:nth-child(2n) {
		margin-right: 0;
	}
}

/*新闻资讯*/
/*.section4{*/
/*    background: url(../images/img/index_cpzx_bj.jpg) no-repeat center;*/
/*    background-size: cover;*/
/*}*/
.index_xwzx {
	padding: 3% 0;
}

.index_xwzx_ft li {
	width: 30%;
	float: left;
	margin-right: 3.333333333%;
	-moz-box-shadow: 0px 2px 10px #ddd;
	-webkit-box-shadow: 0px 2px 10px #ddd;
	box-shadow: 0px 2px 10px #ddd;
	background: #fff;
}

.index_xwzx_ft li:nth-child(3n) {
	margin-right: 0;
}

.index_xwzx_ft li .img {
	overflow: hidden;
}

.index_xwzx_ft li .img img {
	width: 100%;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.index_xwzx_ft li:hover .img img {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
}

.index_xwzx_ft li .wz {
	padding: 4% 5%;
}

.index_xwzx_ft li .wz h3 {
	font-size: 1.1rem;
	line-height: 2;
	color: #1f1f1f;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.index_xwzx_ft li:hover .wz h3 {
	color: #c6000d;
}

.index_xwzx_ft li .wz h4 {
	font-size: 15px;
	line-height: 2;
	color: #999;
	height: 60px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.index_xwzx_ft_nn_ckgd a {
	display: block;
	width: 160px;
	line-height: 45px;
	border: 1px solid #ddd;
	border-radius: 1px;
	text-align: center;
	background: #fafafa;
	color: #999;
	margin: 0 auto;
	margin-top: 2.5%;
	border-radius: 5px;
}

.index_xwzx_ft_nn_ckgd a:hover {
	color: #fff;
	border: 1px solid #c6000d;
	background: #c6000d;
}

.index_xwzx_fb {
	margin-top: 2.5%;
}

.index_xwzx_fb li {
	background: #f6f6f6;
	text-align: center;
	width: 30%;
	margin-right: 3.333333333%;
	padding: 1rem 0;
	font-size: 0;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.index_xwzx_fb li:nth-child(3n) {
	margin-right: 0;
}

.index_xwzx_fb li.on {
	background: #c6000d;
}

.index_xwzx_fb li:hover {
	background: #c6000d;
}

.index_xwzx_fb li .img {
	width: 40px;
	height: 40px;
	overflow: hidden;
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
}

.index_xwzx_fb li .img1 {
	margin-top: 0;
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100% !important;
}

.index_xwzx_fb li .img2 {
	width: 100%;
	height: 100%;
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100% !important;
}

.index_xwzx_fb li.on .img1 {
	margin-top: -40px;
}

.index_xwzx_fb li:hover .img1 {
	margin-top: -40px;
}

.index_xwzx_fb li .wz {
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
	color: #666;
	line-height: 40px;
}

.index_xwzx_fb li.on .wz {
	color: #fff;
}

.index_xwzx_fb li:hover .wz {
	color: #fff;
}

@media(max-width:1366px) {
	.index_xwzx_ft li .wz h3 {
		font-size: 17px;
	}
}

@media(max-width:1080px) {
	.index_xwzx_fb li .wz {
		font-size: 15px;
	}

	.index_xwzx_ft_nn_ckgd a {
		width: 120px;
		line-height: 38px;
	}
}

@media(max-width:991px) {
	.index_xwzx {
		padding: 30px 0;
	}
}

@media(max-width:768px) {
	.index_xwzx_ft li {
		width: 49%;
		margin-right: 2%;
	}

	.index_xwzx_ft li:nth-child(2n) {
		margin-right: 0;
	}

	.index_xwzx_ft li:nth-child(n+3) {
		display: none;
	}

	.index_xwzx_ft_nn_ckgd a {
		margin-top: 20px;
	}

	.index_xwzx_fb {
		margin-top: 20px;
	}

	.index_xwzx_fb li {
		padding: 10px 0;
		width: 32%;
		margin-right: 2%;
	}

	.index_xwzx_fb li:nth-child(3n) {
		margin-right: 0;
	}

	.index_xwzx_fb li .img {
		width: 30px;
		height: 30px;
	}

	.index_xwzx_fb li:hover .img1 {
		margin-top: -30px;
	}

	.index_xwzx_fb li.on .img1 {
		margin-top: -30px;
	}
}

@media(max-width:468px) {
	.index_xwzx_ft li {
		width: 100%;
		margin-right: 0 !important;
		margin: 8px 0;
	}

	.index_xwzx_ft li .wz {
		padding: 15px;
	}

	.index_xwzx_ft li .wz h3 {
		font-size: 16px;
	}
}









/*底部*/
.footer_tongyong {
	padding: 3% 0 0;
	background: #c6000d;
}

.footer_tongyong_ft {
	overflow: hidden;
}

.footer_tongyong_ft_fl {
	width: 65%;
}

.footer_tongyong_ft_fl ul {
	overflow: hidden;
}

.footer_tongyong_ft_fl li {
	width: 25%;
	padding-right: 10px;
}

.footer_tongyong_ft_fl li h3 {
	font-size: 18px;
	color: #fff;
	line-height: 2;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
}

.footer_tongyong_ft_fl li h3:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 3px;
	background: #fff;
}

.foot_nav_erji {
	margin-top: 15px;
}

.footer_tongyong_ft_fl li a {
	display: block;
	font-size: 16px;
	line-height: 2;
	color: #fff;
}

.footer_tongyong_ft_fr {
	overflow: hidden;
	max-width: 30%;
}

.footer_tongyong_ft_fr h3 {
	font-size: 18px;
	color: #fff;
	line-height: 2;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
}

.footer_tongyong_ft_fr h3:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 3px;
	background: #fff;
}

.footer_tongyong_ft_fr_fc {
	font-size: 16px;
	line-height: 2;
	color: #fff;
	margin: 10px 0;
}

.footer_tongyong_ft_fr_fb {
	float: left;
}

.footer_tongyong_ft_fr_fb img {
	max-width: 110px;
}

.footer_tongyong_ft_fr_fb h4 {
	font-size: 16px;
	line-height: 2;
	color: #fff;
	margin-top: 10px;
	text-align: center;
}

.footer_tongyong_fb {
	border-top: 1px solid rgba(255, 255, 255, .5);
	margin-top: 20px;
	padding: 15px 0;
	font-size: 16px;
	line-height: 2;
	color: #fff;
}

.footer_tongyong_fb a {
	color: #fff;
}

@media(max-width:991px) {
	.footer_tongyong {
		padding: 30px 0 0;
	}

	.footer_tongyong_ft_fl {
		display: none;
	}

	.footer_tongyong_ft_fr {
		max-width: 100%;
		float: none;
	}

	.footer_tongyong_fb {
		font-size: 15px;
	}
}







/* 渐入效果 */
@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(-200px);
        transform: translateX(-200px);
    }
    .sun-ani-down {
        -webkit-transform: translateY(-500200pxpx);
        transform: translateY(-200px);
    }
    .sun-ani-up {
        -webkit-transform: translateY(-200px);
        transform: translateY(200px);
    }
    .sun-ani-right {
        -webkit-transform: translatex(200px);
        transform: translatex(200px);
    }
    .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);
    }
}










/**/
.neiyeshipinzhongxin{
    overflow: hidden;
}
.neiyeshipinzhongxin li{
    width: 49%;
    margin-right: 2%;
    margin-top: 2%;
    float: left;
    display: inline-block;
    vertical-align: bottom;
}
.neiyeshipinzhongxin li:nth-child(2n){
    margin-right: 0;
}
.neiyeshipinzhongxin li:nth-child(1){
    margin-top: 0;
}
.neiyeshipinzhongxin li:nth-child(2){
    margin-top: 0;
}
@media(max-width:768px){
    .neiyeshipinzhongxin li{
        width: 100%;
        margin-top: 15px;
    }
    .neiyeshipinzhongxin li:nth-child(2){
        margin-top: 15px;
    }
}




/*内页导航*/
.nei_cate {
	position: relative;
	margin-top: -30px;
	text-align: center;
	margin-bottom: -30px;
}

.nei_cate .aspg-left-nav {
	font-size: 0;
	margin: 0;
}

.nei_cate .aspg-left-nav>li {
	display: inline-block;
	font-size: 16px;
	color: #4f4f52;
	position: relative;
	margin-right: -1px;
	border-bottom: none;
}

.nei_cate .aspg-left-nav>li>a {
	font-size: 16px;
	color: #4f4f52;
	display: inline-block;
	padding-bottom: 14px;
	position: relative;
	width: 175px;
	height: 55px;
	line-height: 53px;
	border: #dcdcdc 1px solid;
	text-align: center;
	background: #fff;
	padding: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 5px;
}

.nei_cate .aspg-left-nav>li>a::before {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	width: 0;
	height: 3px;
	/* margin-left: 0; */
	background: #c6000d;
	-moz-transition: all 0.6s ease-in-out;
	-webkit-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.nei_cate .aspg-left-nav>li .first-nav-btn {
	display: none;
}

.nei_cate .aspg-left-nav>li.clicked>a:before,
.nei_cate .aspg-left-nav>li:hover>a:before {
	left: 0;
	width: 100%
}

.nei_cate .aspg-left-nav>li>a:hover {
	color: #c6000d;
}

.nei_cate .aspg-left-nav>li .aspg-left-subnav {
	position: absolute;
	width: 100%;
	left: 0;
	top: 55px;
	background: #fff;
	border: 1px solid #eee;
	display: none !important;
	z-index: 99;
}

.nei_cate .aspg-left-nav>li:hover .aspg-left-subnav {
	display: block !important;
}

@media(max-width: 991px) {
	.nei_cate {
		display: none;
	}
}


/**/
.neiye_zhengshulb {
	font-size: 0;
}

.neiye_zhengshulb li {
	display: inline-block;
	vertical-align: bottom;
	width: 23.875%;
	margin-right: 1.5%;
	margin-bottom: 1.5%;
	text-align: center;
	border: 1px solid #eee;
}

.neiye_zhengshulb li:nth-child(4n) {
	margin-right: 0;
}

@media(max-width:768px) {
	.neiye_zhengshulb li {
		width: 49%;
		margin-right: 2%;
		margin-bottom: 2%;
	}

	.neiye_zhengshulb li:nth-child(2n) {
		margin-right: 0;
	}
}

@media(max-width:468px) {
	.neiye_zhengshulb li {
		width: 100%;
		margin-right: 0 !important;
		margin-bottom: 15px;
	}
}

/*下载*/
.ny_xiazailiebiao table{
    width: 100%;
    font-size: 16px;
    line-height: 3;
    text-align: center;
}
.ny_xiazailiebiao table tr:nth-child(1){
    background: #e2e2e2;
}
.ny_xiazailiebiao table tr td{
    padding: 5px;
}
@media(max-width:768px){
    .ny_xiazailiebiao table{
        font-size: 14px;
    }
    .ny_xiazailiebiao table tr td{
      width: 25%;
    }
    .ny_xiazailiebiao table tr td:nth-child(2){
        display: none;
    }
    .aspg-detail-title{
        font-size: 18px;
    }
}



/**/
.weidengluzhuangtai{
    text-align: right;
    font-size: 0;
    margin: 15px 0;
}
.touxiangtupian img{
    width:30px;
    height: auto;
    border-radius: 50%;
}
.touxiangtupian2{
    margin-right: 10px;
}
.touxiangtupian2 img{
    width:40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.weidengluzhuangtai a{
    font-size: 16px;
    line-height: 2;
    color: #666;
    display: inline-block;
    vertical-align: middle;
}
.weidengluzhuangtai a:hover{
    color: #c6000d;
}


/*荣誉证书*/
.ny_rongyuzizhi{
    overflow: hidden;
}
.ny_rongyuzizhi li{
    width: 32%;
    margin-right: 2%;
    margin-top: 2%;
    float: left;
}
.ny_rongyuzizhi li:nth-child(1){
    margin-top: 0;
}
.ny_rongyuzizhi li:nth-child(2){
    margin-top: 0;
}
.ny_rongyuzizhi li:nth-child(3){
    margin-top: 0;
}
.ny_rongyuzizhi li:nth-child(3n){
    margin-right: 0;
}
.ny_rongyuzizhi li .img img{
    width: 100%;
}
@media(max-width:768px){
    .ny_rongyuzizhi li{
        width: 49%;
    }
    .ny_rongyuzizhi li:nth-child(3){
        margin-top: 2%;
    }
    .ny_rongyuzizhi li:nth-child(3n){
        margin-right: 2%;
    }
    .ny_rongyuzizhi li:nth-child(2n){
        margin-right: 0;
    }
}

/*联系我们*/
.asny_lxwm {
	position: relative;
}

.asny_lxwm_fl {
	width: 43%;
	float: left;
}

.asny_lxwm_fl_ft h3 {
	font-size: 2.2rem;
	line-height: 1.5;
	color: #c6000d;
	font-weight: bold;
}

.asny_lxwm_fl_ft h4 {
	font-size: 1.3rem;
	line-height: 2;
	color: #202020;
	font-weight: bold;
}

.asny_lxwm_fl_fc {
	font-size: 18px;
	line-height: 2;
	color: #666;
	margin: 20px 0;
}

.asny_lxwm_fl_fb {
	overflow: hidden;
}

.asny_lxwm_fl_fb_fl {
	width: 40%;
	max-width: 110px;
	float: left;
}

.asny_lxwm_fl_fb_fl img {
	width: 100%;
}

.asny_lxwm_fl_fb_fr {
	width: 40%;
	float: left;
	margin-left: 5%;
}

.asny_lxwm_fl_fb_fr h3 {
	font-size: 18px;
	line-height: 2;
	color: #333;
	font-weight: bold;
}

.asny_lxwm_fl_fb_fr h4 {
	font-size: 17px;
	line-height: 2;
	color: #333;
}

.asny_lxwm_fr {
	width: 53%;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.asny_lxwm1 {
	margin-top: 5%;
}

.asny_lxwm1_ft {
	font-size: 1.7rem;
	line-height: 1.5;
	color: #333;
	text-align: center;
	font-weight: bold;
}

.asny_lxwm1_fb {
	margin-top: 3%;
}

.asny_lxwm1_fb ul {
	overflow: hidden;
}

.asny_lxwm1_fb li {
	width: 32%;
	float: left;
	margin-right: 2%;
	margin-bottom: 15px;
}

.asny_lxwm1_fb li:nth-child(3n) {
	margin-right: 0;
}

.asny_lxwm1_fb li input {
	font-size: 16px;
	line-height: 45px;
	color: #666;
	background: #f5f5f5;
	width: 100%;
	padding: 0 20px !important;
	border: 0;
	border: 1px solid #ced4da;
	outline: none;
}

.asny_lxwm1_fb li.lianxiliuyanneirong {
	width: 100%;
	margin-right: 0;
}

.asny_lxwm1_fb li input::-webkit-input-placeholder {
	color: #666;
}

.asny_lxwm1_fb li textarea {
	font-size: 16px;
	line-height: 45px;
	color: #666;
	background: #f5f5f5;
	width: 100%;
	padding: 0 20px !important;
	border: 0;
	border: 1px solid #ced4da;
	outline: none;
	font-family: 'Microsoft YaHei, arial, 宋体, sans-serif';
}

.asny_lxwm1_fb li textarea::-webkit-input-placeholder {
	color: #666;
}

.lianxinyliuyan_tijiao {
	text-align: center;
}

.lianxinyliuyan_tijiao input {
	width: 150px;
	font-size: 16px;
	cursor: pointer;
	line-height: 40px;
	color: #fff;
	background: #c6000d;
	outline: none;
	border: 0;
	margin: 0 auto;
	border-radius: 4px;
}

/*地图*/
.map-box {
	height: 100%;
}

.contact-map {
	height: 100%;
}

.amap-logo img {
	display: none;
}

.amap-copyright {
	opacity: 0;
}

@media(max-width:1200px) {
	.asny_lxwm_fl_ft h3 {
		font-size: 26px;
	}

	.asny_lxwm_fl_ft h4 {
		font-size: 20px;
	}

	.asny_lxwm_fl_fc {
		font-size: 16px;
		margin:10px 0;
	}

	.asny_lxwm1_ft {
		font-size: 22px;
	}

	.asny_lxwm_fl_fb_fr h3 {
		font-size: 16px;
	}

	.asny_lxwm_fl_fb_fr h4 {
		font-size: 15px;
	}
}

@media(max-width:768px) {
	.asny_lxwm_fl {
		width: 100%;
	}

	.asny_lxwm_fr {
		width: 100%;
		margin-top: 15px;
		position: static;
		height: 300px;
	}
}

@media(max-width:468px) {
	.asny_lxwm_fl_ft h3 {
		font-size: 22px;
	}

	.asny_lxwm_fl_ft h4 {
		font-size: 18px;
	}

	.asny_lxwm1_ft {
		font-size: 18px;
	}

	.asny_lxwm_fl_fb_fl {
		width: 100%;
	}

	.asny_lxwm_fl_fb_fr {
		width: 100%;
		margin-top: 10px;
		margin-left: 0;
	}

	.asny_lxwm1_fb li {
		width: 100%;
	}

	.asny_lxwm1 {
		margin-top: 20px;
	}

	.asny_lxwm1_fb {
		margin-top: 15px;
	}
}
/*公司简介*/
.ny_about_1{
    padding-top: 5%;
}
.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 #c6000d;
	-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: 7rem;
	line-height: 1;
	font-family: 'Arial';
	font-weight: bold;
	color: transparent;
	text-align: left;
	text-indent: 10px;
	-webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
}

.ny_about_1_fb_fr_fc {
	font-size: 16px;
	line-height: 1.8;
	color: #4c4c4c;
	margin-top: 4%;
}

.ny_about_2 {
	padding: 4% 0;
	background: #f7f8fa;
	margin-top: 4%;
}

.ny_about_2_ft h3 {
	font-size: 2rem;
	line-height: 1.5;
	color: #333;
}

.ny_about_2_ft h4 {
	font-size: 1.4rem;
	line-height: 1.5;
	color: #666;
	margin-top: .5%;
}

.ny_about_2_fb {
	margin-top: 3.5%;
}

.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;
}

.ny_about_2_fb li:nth-child(4n) {
	margin-right: 0;
}

.ny_about_2_fb li:nth-child(n+5) {
	margin-top: 2%;
}

.ny_about_2_fb li .img {
	overflow: hidden;
}

.ny_about_2_fb li .img img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ny_about_2_fb li:hover .img img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
@media(max-width:1280px){
	.ny_about_2_ft h4 {
		font-size: 18px;
	}
}

@media(max-width:991px) {
	.ny_about_1 {
		padding-top: 4%;
	}

	.ny_about_1_fb_fr {
		width: 100%;
	}

	.ny_about_1_fb_fr_ft h3 {
		font-size: 24px;
		padding-bottom: 10px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 65px;
		text-align: left;
	}

	.ny_about_1_fb_fr_fc {
		margin-top: 5px;
	}

	.ny_about_1_fb_fl {
		width: 100%;
		margin-top: 15px;
	}

	.ny_about_2_ft h3 {
		font-size: 24px;
	}

	.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 {
		padding-top: 25px;
	}

	.ny_about_2 {
		margin-top: 25px;
		padding: 25px 0;
	}

	.ny_about_2_ft h4 {
		font-size: 17px;
	}

	.ny_about_2_fb{
		margin-top: 15px;
	}
}

@media(max-width:468px) {
	.ny_about_1_fb_fr_ft h3 {
		padding-bottom: 5px;
		font-size: 22px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 6.5rem;
	}

	.ny_about_2_ft h3{
		font-size: 22px;
	}
}