header{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    left: 0;
}
.top{
    padding: 30px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	transition:.3s;
}
.head{
	background:rgba(0,0,0,.9);
}
.head .top{
	padding: 15px 45px;
}
.menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
	position:relative;
}
.nav-menu{
    margin-right: 55px;	
}
.nav-menu ul{
    display: flex;
    justify-content: space-between;
}
.nav-menu li>a{
    display: block;
    line-height: 68px;
    height: 70px;
    color: #fff;
    font-size: 16px;
    padding: 0px 35px;
    letter-spacing: 2px;
    /* font-family:Rajdhani-SemiBold; */
    border-radius: 3px;
	transition:.3s;
	position:relative;
}
.head .nav-menu li>a{
	line-height: 38px;
    height: 40px;
}
.nav-menu li:last-child{
	display:none;
}
.nav-menu li:last-child a:before{
	content:"";
	background-repeat: no-repeat;
    background-image: url(../images/all-m.gif);
	background-position: 0 -800px !important;
    width: 22px;
    height: 16px;
	margin-right:10px;
	left:15px;
	top:50%;
	margin-top:-8px;
	position:absolute;
}
.nav-menu li:last-child a{
	padding-left:50px;
	text-transform:uppercase;
}
.nav-menu li.active>a,.nav-menu li:hover>a{
    color:#de2725;
}
.nav-menu li .tmenu{
	position:absolute;
	top:100%;
	left:0;
	z-index:9;
	padding-top:15px;
	display:none;
}
.nav-menu li:hover .tmenu{
	display:block;
}
.nav-menu li dl{
	background:#fff;
	display:flex;
	flex-wrap:wrap;
	padding:20px;
	box-shadow:0px 10px 10px rgba(0,0,0,.1);
	position:relative;
}
.nav-menu li dl:before{
	content:"";
	position:absolute;
	border-bottom:10px #fff solid;
	border-left:10px transparent solid;
	border-right:10px transparent solid;
	left:23%;
	bottom:100%;
}
.head .nav-menu li dl:before{
	left:30%;
}
.nav-menu li dd{
	width:33.3333333333333333%;
	display:flex;
	padding:0px 10px 15px;
}
.nav-menu li dd i{
	width:90px;
}
.nav-menu li dd section{
	width:calc(100% - 90px);
	padding-left:20px;
	padding-top:10px;
}
.nav-menu li dd p{
	border-bottom:2px solid #ed1d24;
	font-size:15px;
	/* font-family:MaisonNeue-Book; */
	padding:5px 0;
}
.nav-menu li dd p a{
	color:#333;
	display:block;
	min-height:40px;
	line-height:20px;
}
.nav-menu li dd span{
	display:block;
	padding:10px 0px 0px;
}
.nav-menu li dd span a{
	display:block;
	font-size:14px;
	color:#666;
	/* font-family:MaisonNeue-Light; */
	line-height:15px;
	padding:5px 0px;
}
.nav-menu li dd span a:hover{
	color:#f00;
	text-decoration:underline;
}
@media (max-width:1440px) {
	.top{
		padding: 20px 45px;
	}
	.head .top{
		padding: 10px 45px;
	}
	.logo img{
		height:35px;
		width:auto;
	}
	.nav-menu{
		margin-right: 35px;	
	}
	.nav-menu li>a{
		line-height: 58px;
		height: 60px;
		font-size: 14px;
		padding: 0px 20px;
	}
	.head .nav-menu li>a{
		line-height: 30px;
		height: 32px;
	}
	.nav-menu li dl{
		padding:20px;
	}
	.nav-menu li dl:before{
		left:20.5%;
	}
	.head .nav-menu li dl:before{
		left:29%;
	}
	.nav-menu li dd i{
		width:80px;
	}
	.nav-menu li dd section{
		width:calc(100% - 80px);
		padding-left:15px;
	}
	.nav-menu li dd p{
		font-size:14px;
	}
	.nav-menu li dd p a{
		min-height:36px;
		line-height:18px;
	}
	.nav-menu li dd span a{
		font-size:13px;
		line-height:13px;
	}
}
.nav-logo{
	display:none;
	width:25px;
}
.nav-logo i{
	padding:2px 0px;
	display:block;
}
.nav-logo i:after{
	content:"";
	display:block;
	height:2px;
	background:#fff;
}
@media (max-width:992px) {
	.top{
		padding: 10px 15px;
	}
	.head .top{
		padding: 10px 15px;
	}
	.logo img{
		height:25px;
		width:auto;
	}
	.nav-logo{
		display:block;
	}
	.nav-menu li:last-child{
		display:block;
	}
	.menu{
		position:fixed;
		width:100%;
		height:100%;
		top:0;
		right:0;
		background:rgba(0,0,0,.8);
		display:flex;
		justify-content:flex-end;
		opacity:0;
		transition:opacity .3s,transform 0s .3s;
		z-index:-1;
		transform:scale(0);
	}
	.menu-show{
		transform:scale(1);
		transition:opacity .3s,transform 0s 0s;
		opacity:1;
		z-index:999;
	}
	.nav-menu{
		width:70%;
		position:relative;
		height:100%;
		background:#fff;
		margin:0;
		right:-100%;
		display:block;
		transition:.3s;
	}
	.menu-show .nav-menu{
		right:0;
	}
	.nav-menu ul{
		display:block;
	}
	.nav-menu ul li a{
		line-height:46px;
		height:48px;
		color:#333;
		font-size:14px;
		padding:0px 15px;
		border-bottom:1px solid rgba(0,0,0,.1);
	}
	.head .nav-menu li>a{
		line-height:46px;
		height:48px;
	}
}
.function{
    display: flex;
    align-items: center;
	position:relative;
}
.head .function{
	display:none;
}
.sousuo form{
    width: 210px;
    height: 31px;
    background: transparent;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.sousuo form button{
    width: 70px;
    border: 0;
    color: #fff;
    /* font-family:Rajdhani-SemiBold; */
    background: transparent;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: right;
}
.sousuo form input{
    width: 140px;
    height: 30px;
    line-height: 20px;
    padding: 5px 0px;
    color: #fff;
    font-size: 16px;
    outline: none;
    background: transparent;
    /* font-family:Rajdhani-SemiBold; */
    border: 0;
}
.bigmenu{
    width: 50px;
    height: 50px;
    border-radius: 3px;
    background: #ed1d24 url(../images/mupic.png) center no-repeat;
	background-size:40% auto;
    cursor: pointer;
    margin-left: 35px;
}
.function ol{
	position:absolute;
	right:0;
	top:100%;
	padding:10px 0px;
	display:none;
}
.function .bigmenu:hover ol{
	display:block;
}
.function ol b{
    background-repeat: no-repeat;
    background-image: url(../images/all-m.gif);
    width: 22px;
    height: 16px;
	margin-right:10px;
}
.function ol .country-sp {
    background-position: 0 -800px !important;
}
.function ol .country-en {
    background-position: 0 -256px !important;
}
.function ol li{
	background:#fff;
}
.function ol li:first-child{
	padding:10px 0px 0px;
}
.function ol li:last-child{
	padding:0px 0px 10px;
}
.function ol a{
	display:flex;
	align-items:center;
	line-height:32px;
	color:#333;
	padding:0px 15px;
	transition:.3s;
}
.function ol a:hover{
	color:#f00;
}
@media (max-width:1440px) {
	.sousuo form{
		width: 180px;
	}
	.sousuo form button{
		width: 60px;
		font-size: 14px;
		padding:0;
	}
	.sousuo form input{
		width: 120px;
		font-size: 14px;
	}
	.bigmenu{
		width: 55px;
		height: 55px;
		margin-left: 25px;
	}
}
.banner .swiper-slide{
	overflow:hidden;
}
.banner .swiper-slide img{
	width:100%;
}
.banner .swiper-slide-active img{
	animation: scalee 2.5s linear;
	-webkit-animation: scalee 2.5s linear;
}
@keyframes scalee{
	from {transform:scale(1.2);}
	to {transform:scale(1);}
}
@-webkit-keyframes scalee{
	from {transform:scale(1.2);}
	to {transform:scale(1);}
}
.banner .swiper-button{
    width: 171px;
    height: 61px;
    top: auto;
    bottom: 46px;
    margin: 0;
}
.banner .swiper-button:after{
    display: none;
}
.banner .swiper-button-next{
    background: url(../images/bnrjt.png) center no-repeat;
    right: 35px;
}
.banner .swiper-button-prev{
    background: url(../images/bnljt.png) center no-repeat;
    left: 35px;
}
.banner .swiper-pagination{
	bottom:30px;
}
.banner .swiper-pagination span{
	width:10px;
	height:10px;
	background:#fff;
	opacity:1;
	margin:0px 5px 2px !important;
}
.banner .swiper-pagination span.swiper-pagination-bullet-active{
	background:none;
	border:2px solid #fff;
	width:14px;
	height:14px;
	margin:2px 5px 0 !important;
}
@media (max-width:1440px) {
	.banner .swiper-button{
		width: 140px;
	}
	.banner .swiper-button-next{
		background-size:100% auto;
	}
	.banner .swiper-button-prev{
		background-size:100% auto;
	}
}
@media (max-width:992px) {
	.function{
		display:none;
	}
	.banner .swiper-button{
		width: 60px;
		bottom:10px;
		height:30px;
	}
	.banner .swiper-button-next{
		right:15px;
	}
	.banner .swiper-button-prev{
		left:15px;
	}
}
.title{
    display: flex;
    align-items: center;
}
.title span{
    position: relative;
    padding-right: 32px;
    margin-right: 20px;
}
.title span:after{
    content: "";
    position: absolute;
    width: 2px;
    height: 80%;
    top: 10%;
    right: -1px;
    background: rgba(255, 255, 255, .1);
}
.title h3{
    font-size: 46px;
    color: #fff;
    line-height: 50px;
    /* font-family:rajdhani-bold; */
    text-align: right;
}
.title p{
    font-size: 16px;
    color: #ed1d24;
    line-height: 24px;
    /* font-family:Rajdhani-SemiBold; */
    letter-spacing: 3px;
}
@media (max-width:1440px) {
	.title span{
		padding-right: 22px;
		margin-right: 15px;
	}
	.title h3{
		font-size: 36px;
		line-height: 40px;
	}
	.title p{
		font-size: 14px;
		line-height: 22px;
	}
}
@media (max-width:992px) {
	.title span{
		padding-right: 10px;
		margin-right: 15px;
	}
	.title h3{
		font-size: 22px;
		line-height: 24px;
	}
	.title p{
		font-size: 12px;
		line-height: 18px;
	}
}
.product{
    background: url(../images/pdbg.jpg) center no-repeat;
    background-size: cover;
    padding: 40px 0px 100px;
}
.product .title{
    justify-content: center;
}
.product ul{
    display: flex;
    flex-wrap: wrap;
    margin-right: -3px;
    margin-left: -3px;
    margin-top: 55px;
}
.product ul li{
    width: 33.3333333333333333%;
    padding: 3px;
}
.product li a{
    display: block;
    background-color: #9f221d;
	position:relative;
}
.product li a p{
	width:100%;
	padding: 30px 15px;
	color: #fff;
    font-size: 26px;
    line-height: 30px;
    /* font-family:rajdhani-bold; */
	transition:.3s;
	position:relative;
	text-align: center;
	z-index:6;
}
.product li a img{
    width: 100%;
}
.product li a:after{
	content:"";
	position:absolute;
	width:20%;
	height:100%;
	left:0;
	top:0;
	z-index:3;
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.6),rgba(102,102,102,.5));
    background-image: linear-gradient(left,rgba(0,0,0,.6),rgba(102,102,102,.5));
	transition:.3s;
	opacity:0;
}
.product li:nth-child(even) a:after{
	background-image: -webkit-linear-gradient(left,rgba(102,102,102,.5),rgba(0,0,0,.6));
	background-image: linear-gradient(left,rgba(102,102,102,.5),rgba(0,0,0,.6));
}
.product li a:hover:after{
	width:100%;
	opacity:1;
}
.product li:nth-child(even) a{
    background-color: #1c1c1c;
}
@media (max-width:1440px) {
	.product{
		padding: 30px 0px 50px;
	}
	.product ul{
		margin-top: 35px;
	}
	.product li a p{
		font-size: 20px;
		line-height: 28px;
	}
}
@media (max-width:992px) {
	.product{
		padding: 15px 0px 20px;
	}
	.product ul{
		margin-top: 15px;
	}
	.product ul li{
		width:50%;
	}
	.product li a p{
		font-size: 14px;
		line-height: 18px;
		padding: 15px 5px;
		height: 36px;
	}
}
.tese{
    background: url(../images/tsbg.jpg) center no-repeat;
    background-size: cover;
    padding: 80px 0px 120px;
}
.tese dl{
    display: flex;
    justify-content: space-between;
    margin: 45px 0px 0px;
}
.tese dl dt{
    border: 1px solid rgba(255, 255, 255, .2);
    width: 50%;
    background: #000000;
}
.tese dt span{
    display: none;
}
.tese dt span.on{
    display: block;
}
.tese dt p{
    color: #fff;
    font-size: 22px;
    /* font-family:Rajdhani-SemiBold; */
    line-height: 30px;
    text-align: center;
    margin: 0px 0px 27px;
}
.tese dt a{
    display: block;
    width: 195px;
    height: 54px;
    color: #fff;
    background: #e61c23 url(../images/mjt.png) right 20px center no-repeat;
    font-size: 14px;
    /* font-family:Rajdhani-SemiBold; */
    line-height: 54px;
	transition:.3s;
    padding: 0px 35px;
}
.tese dt a:hover{
	background: #990000 url(../images/mjt.png) right 30px center no-repeat;
}
.tese dd{
    width: 35%;
}
.tese ul{
    display: flex;
    flex-wrap: wrap;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 1px solid rgba(255, 255, 255, .2);
}
.tese ul li{
    width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    border-right: 1px solid rgba(255, 255, 255, .2);
    padding: 15px;
    cursor: pointer;
}
.tese li.on{
    background: #000 url(../images/pdbk.png) center no-repeat;
    background-size: 88% auto;
}
@media (max-width:1440px) {
	.tese{
		padding: 50px 0px 80px;
	}
	.tese dl{
		margin: 30px 0px 0px;
	}
	.tese dl dt{
		width: 50.7%;
	}
	.tese dt p{
		font-size: 18px;
		line-height: 24px;
		margin: 0px 0px 15px;
	}
	.tese dt a{
		width: 180px;
		height: 50px;
		line-height: 50px;
		padding: 0px 30px;
	}
	.tese ul li{
		padding: 10px;
	}
}
@media (max-width:992px) {
	.tese{
		padding: 20px 0px;
	}
	.tese .title span{
		max-width:120px;
	}
	.tese dl{
		margin: 15px 0px 0px;
	}
	.tese dl dt{
		width: 53%;
	}
	.tese dd{
		width:44.4%;
	}
	.tese dt p{
		font-size: 14px;
		line-height: 20px;
		margin: 0px 0px 10px;
	}
	.tese dt a{
		width: 100%;
		height: 40px;
		line-height: 40px;
		padding: 0px 20px;
		position:static;
	}
	.tese ul li{
		padding: 10px;
	}
}
.bujian{
    background: url(../images/bjbg.jpg) center no-repeat;
    background-size: cover;
    padding: 90px 0px 210px;
}
.bujian .butit{
    float: left;
    width: 46%;
}
.bujian .title{
    display: block;
}
.bujian .title h3{
    text-align: left;
    margin: 30px 0px 110px;
}
.bujian .butit a{
    display: block;
    width: 195px;
    height: 54px;
    color: #fff;
    background: #e61c23 url(../images/mjt.png) right 20px center no-repeat;
    font-size: 14px;
    /* font-family:Rajdhani-SemiBold; */
    line-height: 54px;
    padding: 0px 35px;
	transition:.3s;
}
.bujian .butit a:hover{
	background: #990000 url(../images/mjt.png) right 30px center no-repeat;
}
.bujian .butext{
    float: right;
    width: 50%;
}
.bujian section{
    color: #fff;
    font-size: 18px;
    line-height: 29px;
    /* font-family:MaisonNeue-Book; */
}
.bujian ul{
    display: flex;
    justify-content: space-between;
    margin: 75px 0px 0px;
    max-width: 560px;
}
.bujian ul p{
    text-align: center;
    font-size: 16px;
    color: #fff;
    line-height: 32px;
    /* font-family:Rajdhani-SemiBold; */
    margin: 5px 0px 0px;
}
@media (max-width:1440px) {
	.bujian{
		padding: 70px 0px 150px;
	}
	.bujian .title h3{
		margin: 20px 0px 60px;
	}
	.bujian .butit a{
		width: 180px;
		height: 50px;
		line-height: 50px;
		padding: 0px 25px;
	}
	.bujian section{
		font-size: 16px;
		line-height: 26px;
	}
	.bujian ul{
		margin: 35px 0px 0px;
		max-width: 500px;
	}
	.bujian ul p{
		font-size: 14px;
		line-height: 28px;
		text-align:center;
	}
}
@media (max-width:992px) {
	.bujian{
		padding: 20px 0px;
	}
	.bujian .butit{
		float: none;
		width: 100%;
	}
	.bujian .butext{
		float: none;
		width: 100%;
	}
	.bujian .title h3{
		margin: 10px 0px;
	}
	.bujian .butit a{
		width: 140px;
		height: 36px;
		line-height: 36px;
		padding: 0px 15px;
		font-size:12px;
	}
	.bujian section{
		font-size: 14px;
		line-height: 22px;
		margin:15px 0px 0px;
	}
	.bujian ul{
		margin: 10px 0px 0px;
		max-width: 100%;
	}
	.bujian ul li{
		width:26%;
	}
	.bujian ul li img{
		max-width:60%;
	}
	.bujian ul p{
		font-size: 12px;
		line-height: 22px;
		text-align:center;
	}
}
.news{
    padding: 30px 0px 45px;
}
.nstit{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nstit p{
    font-size: 16px;
    line-height: 18px;
    color: #000;
    letter-spacing: 2px;
    /* font-family:Rajdhani-SemiBold; */
}
.nstit h3{
    font-size: 48px;
    color: #000;
    line-height: 50px;
    /* font-family:rajdhani-bold; */
    margin: 6px 0px 0px;
}
.nstit a{
    display: block;
    width: 195px;
    height: 54px;
    color: #fff;
    background: #e61c23 url(../images/mjt.png) right 20px center no-repeat;
    font-size: 14px;
    /* font-family:Rajdhani-SemiBold; */
    line-height: 54px;
	transition:.3s;
    padding: 0px 35px;
}
.nstit a:hover{
	background: #990000 url(../images/mjt.png) right 30px center no-repeat;
}
@media (max-width:1440px) {
	.nstit p{
		font-size: 14px;
	}
	.nstit h3{
		font-size: 38px;
		line-height: 40px;
		margin: 5px 0px 0px;
	}
	.nstit a{
		width: 180px;
		height: 50px;
		line-height: 50px;
		padding: 0px 25px;
	}
}
@media (max-width:992px) {
	.nstit p{
		font-size: 14px;
	}
	.nstit h3{
		font-size: 18px;
		line-height: 20px;
	}
	.nstit a{
		width: 140px;
		height: 36px;
		line-height: 36px;
		padding: 0px 15px;
		font-size:12px;
	}
}
.news ul{
    margin: 45px -15px 0px;
    display: flex;
}
.news ul li{
    width:33.3333333333333%;
    padding: 0px 15px;
}
.news li i{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0px 30px;
	overflow:hidden;
	height: 310px;
}
.news li i img{
	transition:1s;
	transform:scale(1);
}
.news li a:hover i img{
	transform:scale(1.2);
}
.news li p{
    font-size: 16px;
    line-height: 20px;
    color: #ed1d24;
    /* font-family:MaisonNeue-Book; */
}
.news li h4{
    font-size: 22px;
    line-height: 30px;
    color: #000;
    /* font-family:rajdhani-bold; */
    margin: 0px 0px 11px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.news li section{
    font-size: 16px;
    line-height: 28px;
    color: rgba(0, 0, 0, .6);
    /* font-family:MaisonNeue-Book; */
    margin: 0px 0px 20px;
}
.news li span{
    font-size: 14px;
    /* font-family:rajdhani-bold; */
    color: #000;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}
.news li span img{
    margin-left: 15px;
	transition:.5s;
}
.news li a:hover span img{
    margin-left: 35px;
}
@media (max-width:1440px) {
	.news ul{
		margin: 30px -10px 0px;
	}
	.news ul li{
		padding: 0px 10px;
	}
	.news li i{
		margin: 0px 0px 20px;
		height: 110px;
	}
	.news li p{
		font-size: 14px;
		line-height: 18px;
	}
	.news li h4{
		font-size: 18px;
		line-height: 22px;
		margin: 0px 0px 10px;
	}
	.news li section{
		font-size: 14px;
		line-height: 24px;
		margin: 0px 0px 15px;
	}
}
@media (max-width:992px) {
	.news{
		padding:15px 0px;
	}
	.news ul{
		margin: 15px -5px 0px;
		flex-wrap:wrap;
	}
	.news ul li{
		padding: 0px 5px;
		width:50%;
	}
	.news ul li:last-child{
		display:none;
	}
	.news li i{
		margin: 0px 0px 10px;
	}
	.news li p{
		font-size: 12px;
		line-height: 12px;
	}
	.news li h4{
		font-size: 14px;
		line-height: 16px;
		margin: 5px 0px;
	}
	.news li section{
		font-size: 12px;
		line-height: 16px;
		margin: 0px 0px 10px;
	}
	.news li span{
		display:none;
	}
}
footer{
    background: #0d0d0d;
    padding: 50px 0px 0px;
}
.bottom{
    display: flex;
    justify-content: space-between;
    padding-bottom: 65px;
}
.bottom dt{
    padding-bottom: 25px;
}
.bottom dt a{
    color: #000;
    font-size: 20px;
    line-height: 24px;
    /* font-family:rajdhani-bold; */
    color: #fff;
}
.bottom dd a{
    font-size: 14px;
    line-height: 28px;
    color: rgba(255, 255, 255, .6);
    /* font-family:MaisonNeue-Book; */
	transition:.3s;
}
.bottom dd a:hover{
	color:#ed1d24;
}
.bottom dl section{
    display: flex;
}
.bottom ul li{
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, .6);
    /* font-family:MaisonNeue-Book; */
    padding: 12px 0px 12px 38px;
    position:relative;
}
.bottom ul li:before{
	content:"";
	position:absolute;
	width:24px;
	height:24px;
	background-repeat: no-repeat;
    background-position: center;
	left:0;
	top:10px;
}
.bottom ul li:hover:before{
	animation: dou .3s linear;
	-webkit-animation: dou .3s linear;
}
@keyframes dou{
	0% {transform:rotate(0);}
	25% {transform:rotate(30deg);}
	50% {transform:rotate(0deg);}
	75% {transform:rotate(-30deg);}
	100% {transform:rotate(0deg);}
}
@-webkit-keyframes dou{
	0% {transform:rotate(0);}
	25% {transform:rotate(30deg);}
	50% {transform:rotate(0deg);}
	75% {transform:rotate(-30deg);}
	100% {transform:rotate(0deg);}
}
.bottom ul li.gs:before{
    background-image: url(../images/gz.png);
}
.bottom ul li.dz:before{
    background-image: url(../images/dz.png);
}
.bottom ul li.dh:before{
    background-image: url(../images/dh.png);
}
.bottom ul li.yx:before{
    background-image: url(../images/yx.png);
}
.copy{
    background: #000000;
    padding: 25px 0px;
}
.copy section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 28px;
    color: rgba(255, 255, 255, .4);
    /* font-family:MaisonNeue-Book; */
}
.copy section a{
    color: rgba(255, 255, 255, .4);
    margin-left: 35px;
}
.copy section a:nth-of-type(1){
    margin-left: 0;
}
@media (max-width:992px) {
	footer{
		padding: 0px 0px 0px;
	}
	.bottom{
		display:none;
	}
	.copy{
		padding: 15px 0px;
	}
	.copy section{
		display: block;
		font-size: 14px;
		line-height: 20px;
		text-align:center;
	}
	.copy span{
		display:block;
	}
	.copy span:last-child a{
		margin-left:15px;
	}
	.copy section a:nth-of-type(1){
		margin-left: 0;
	}
	.copy span:last-child a img{
		width:22px;
	}
}
.ibanner img{
	width:100%;
}
.iabout{
	background:#9f221d;
	padding:50px 0px;
}
.iabout h1{
	/* font-family:Rajdhani-SemiBold; */
	font-size:30px;
	color:#fff;
	line-height:30px;
	text-transform:uppercase;
	text-align:center;
}
.iabout section{
	color:#fff;
	font-size:18px;
	/* font-family:MaisonNeue-Book; */
	
	line-height:34px;
	margin:25px 0px 50px;
}
.iabout ul{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin:30px 0px 0px;
}
.iabout ul li{
	width:24.5%;
}
.iabout li span{
	display:block;
	position:relative;
}
.iabout li h5{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	color:#fff;
	font-size:16px;
	line-height:26px;
	/* font-family:MaisonNeue-Book; */
	padding:50px 25px;
}
@media (max-width:1440px) {
	.iabout{
		padding:30px 0px;
	}
	.iabout h1{
		font-size:28px;
		line-height:28px;
	}
	.iabout section{
		font-size:16px;
		line-height:30px;
		margin:15px 0px 30px;
	}
	.iabout ul{
		margin:25px 0px 0px;
	}
	.iabout li h5{
		font-size:14px;
		line-height:24px;
		padding:35px 20px;
	}
}
@media (max-width:992px) {
	.iabout{
		padding:15px 0px;
	}
	.iabout h1{
		font-size:18px;
		line-height:20px;
	}
	.iabout section{
		font-size:14px;
		line-height:22px;
		margin:15px 0px;
	}
	.iabout ul{
		margin:15px 0px 0px;
	}
	.iabout ul li{
		width:49%;
		margin-bottom:8px;
	}
	.iabout li h5{
		font-size:13px;
		line-height:18px;
		padding:15px 10px;
	}
}
.ititle{
	text-align:center;
}
.ititle h2{
	font-size:40px;
	line-height:44px;
	/* font-family:Rajdhani-SemiBold; */
}
.ititle h2:after{
	content:"";
	width:100px;
	height:3px;
	background:#fff;
	margin:15px auto 0;
	display:block;
}
.shebei{
	padding:50px 0px 80px;
	background:url(../images/sbbg.jpg) center no-repeat;
	background-size:cover;
}
.shebei .ititle{
	color:#fff;
}
.shebei .swiper{
	margin:40px 0px 0px;
	padding:55px 0px;
}
.shebei .swiper .swiper-slide{
	background:#000;
	transition:.3s;
}
.shebei .swiper .swiper-slide img{
	opacity:.4;
}
.shebei .swiper .swiper-slide-active{
	z-index:9;
	transform:scale(1.3);
}
.shebei .swiper .swiper-slide-active img{
	opacity:1;
}
.shebei .swiper .swiper-button{
	width:18.4%;
	height:100%;
	top:0;
	margin-top:0;
}
.shebei .swiper .swiper-button:after{
	color:#fff;
}
@media (max-width:1440px) {
	.ititle h2{
		font-size:30px;
		line-height:34px;
	}
	.ititle h2:after{
		margin:10px auto 0;
	}
}
@media (max-width:992px) {
	.ititle h2{
		font-size:20px;
		line-height:24px;
	}
	.ititle h2:after{
		width:80px;
		height:2px;
		margin:10px auto 0;
	}
	.shebei{
		padding:20px 0px;
	}
	.shebei .swiper{
		margin:20px 0px 0px;
		padding:0px 0px;
	}
}
.iproduct{
	background:#f2f2f2;
	padding:0px 0px 60px;
}
.ipdout{
	display:flex;
	justify-content:space-between;
}
.iproduct .pdlanmu{
	position:relative;
	z-index:9;
	margin-top:-80px;
	width:25%;
}
.iproduct .ipdlist{
	width:73%;
}
.iproduct .ipdcont{
	width:73%;
}
.iproduct .pdlanmu h2{
	color:#fff;
	font-size:40px;
	height:80px;
	line-height:80px;
	text-align:center;
	background:#9f221d;
	box-shadow:0px -10px 10px rgba(0,0,0,.1);
	/* font-family:Rajdhani-SemiBold; */
}
.iproduct .pdlanmu li>a{
	display:block;
	padding:0px 20px;
	color:#333;
	line-height:50px;
	font-size:15px;
	/* font-family:MaisonNeue-Book; */
	background:#fff;
	transition:.3s;
	margin-top:2px;
}
.iproduct .pdlanmu li>a:hover,.iproduct .pdlanmu li.on>a{
	color:#fff;
	background:#9f221d;
}
.iproduct .pdlanmu li dl{
	display:none;
}
.iproduct .pdlanmu li.on dl{
	display:block;
}
.iproduct .pdlanmu li dd{
	padding:2px 0px 1px;
}
.iproduct .pdlanmu li dd a{
	display:block;
	padding:0px 40px;
	font-size:14px;
	background:rgba(0,0,0,.02);
	/* font-family:MaisonNeue-Light; */
	line-height:37px;
	color:#666;
	transition:.3s;
}
.iproduct .pdlanmu li dd.on a,.iproduct .pdlanmu li dd a:hover{
	background:#9f221d;
	color:#fff;
}
.pdlanmu h3{
	line-height:60px;
	text-align:center;
	color:#fff;
	font-size:24px;
	background:#9f221d;
	margin:30px 0px 0px;
}
.pdlanmu>dl{
	background:#fff;
	padding:15px;
}
.pdlanmu>dl dd{
	margin-bottom:15px;
}
.pdlanmu>dl a{
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.pdlanmu>dl i{
	width:70px;
	border:1px solid rgba(0,0,0,.1);
}
.pdlanmu>dl p{
	width:calc(100% - 85px);
	color:#333;
	font-size:14px;
	line-height:20px;
}
@media (max-width:1440px) {
	.iproduct{
		padding:0px 0px 40px;
	}
	.iproduct .pdlanmu{
		margin-top:-70px;
		width:23%;
	}
	.iproduct .ipdlist{
		width:75%;
	}
	.iproduct .ipdcont{
		width:75%;
	}
	.iproduct .pdlanmu h2{
		font-size:30px;
		height:70px;
		line-height:70px;
	}
	.iproduct .pdlanmu li>a{
		padding:0px 15px;
		line-height:46px;
		font-size:14px;
	}
	.iproduct .pdlanmu dd a{
		padding:0px 20px;
		font-size:13px;
		line-height:30px;
	}
}
@media (max-width:992px) {
	.iproduct{
		padding:15px 0px;
	}
	.ipdout{
		flex-wrap:wrap;
	}
	.iproduct .pdlanmu{
		margin-top:0px;
		width:100%;
	}
	.iproduct .ipdlist{
		width:100%;
	}
	.iproduct .ipdcont{
		width:100%;
	}
	.iproduct .pdlanmu h2{
		font-size:20px;
		height:50px;
		line-height:50px;
	}
	.iproduct .pdlanmu li>a{
		line-height:42px;
	}
	.pdlanmu h3{
		display:none;
	}
	.pdlanmu>dl{
		display:none;
	}
}
.ipdlist{
	padding-top:30px;
}
.ipdlist li{
	margin-bottom:30px;
}
.ipdlist li a{
	display:block;
	background:#fff;
	text-align:center;
	font-size:16px;
	/* font-family:MaisonNeue-Book; */
	line-height:30px;
	color:#333;
	padding:10px 10px 25px;
}
.ipdlist li i{
	display:block;
}
.ipdlist li p{
	margin:10px 0px;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
}
.ipdlist li span{
	display:block;
	width:50%;
	color:#fff;
	font-size:14px;
	line-height:36px;
	background:#1c1c1c;
	margin:0 auto;
}
@media (max-width:1440px) {
	.ipdlist{
		padding-top:25px;
	}
	.ipdlist ul{
		margin-right:-10px;
		margin-left:-10px;
	}
	.ipdlist li{
		margin-bottom:20px;
		padding-right:10px;
		padding-left:10px;
	}
	.ipdlist li a{
		font-size:14px;
		line-height:22px;
	}
	.ipdlist li span{
		font-size:12px;
		line-height:30px;
	}
}
@media (max-width:992px) {
	.ipdlist{
		padding-top:15px;
	}
	.ipdlist ul{
		margin-right:-7px;
		margin-left:-7px;
	}
	.ipdlist li{
		margin-bottom:14px;
		padding-right:7px;
		padding-left:7px;
	}
	.ipdlist li a p{
		text-overflow:ellipsis;
		overflow:hidden;
		white-space:nowrap;
	}
	.ipdlist li span{
		width:70%;
	}
}
.page_list{
    display: flex;
    justify-content: flex-end;
}
.page_list a{
    width: 41px;
    height: 41px;
    border-radius: 50%;
    color: #666;
    /* font-family:MaisonNeue-Book; */
    font-size: 16px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    transition: .3s;
}
.page_list a.prev:after{
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(135deg);
}
.page_list a.next:after{
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(-45deg);
    margin-right: 5px;
}
.page_list a:hover,.page_list a.on{
    background: #de2725;
    color: #fff;
}
.page_list a.prev:hover:after,.page_list a.next:hover:after{
    border-color: #fff;
}
@media (max-width:992px) {
	.page_list a{
		width: 30px;
		height: 30px;
		font-size: 13px;
		margin-left: 5px;
	}
	.page_list a.prev:after{
		width: 8px;
		height: 8px;
	}
	.page_list a.next:after{
		width: 8px;
		height: 8px;
	}
}
.ipdcont{
	margin:30px 0px 50px;
	background:#fff;
	padding:20px;
}
.iproductsd{
    display: flex;
    justify-content: space-between;
}
.ipsdimg{
    width: 46%;
    position: relative;
}
.ipsdtext{
    width: 50%;
    padding: 20px;
    background: #fff;
}
.box{
    width:100%;
    background: #fff;
	border:1px solid #ddd;
	padding:15px;
}
.box .jqzoom{
    width: 100%;
    height: auto;
}
.zoomDiv{
    z-index:999;
    position:absolute;
    top:0px;
    left:0px;
    width:400px !important;
    height:400px !important;
    background:#ffffff;
    border:1px solid #eee;
    display:none;
    text-align:center;
    overflow:hidden;
}
.zoomDiv img{
    max-width: none;
    width: 300%;
}
.zoomMask{
    position:absolute;
    background:rgba(0,0,0,.2) url("../images/mask.png") repeat scroll 0 0;
    cursor:move;
    z-index:1;
    width: 200px !important;
    height: 200px !important;
}
.ipsdimg ul{
    display: flex;
	margin-right:-3px;
	margin-left:-3px;
    margin-top: 10px;
}
.ipsdimg ul li{
    width: 25%;
	padding:0px 3px;
}
.ipsdimg li i{
    display: block;
    cursor: pointer;
    background: #fff;
}
.ipsdimg li img{
	border:1px solid #ddd;
}
.ipsdimg li.on img{
    border:1px solid #9f221d;
}
.ipsdtext>h1{
    color: #333333;
    font-size: 21px;
    line-height: 25px;
    /* font-family:MaisonNeue-Book; */
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 10px;
}
.ipsdtext section{
    font-size: 15px;
    line-height: 26px;
    color: #999;
   /* font-family:MaisonNeue-Light; */
    margin: 15px 0px;
	max-height:316px;
	overflow-y:auto;
	padding-right:10px;
}
/* 设置滚动条的样式 */
.ipsdtext section::-webkit-scrollbar {
	width:7px;
}
/* 滚动槽 */
.ipsdtext section::-webkit-scrollbar-track {
	border-radius:5px;
	background:rgba(0,0,0,0.08);
}
/* 滚动条滑块 */
.ipsdtext section::-webkit-scrollbar-thumb {
	border-radius:5px;
	background:rgba(0,0,0,0.2);
}
.ipsdtext section::-webkit-scrollbar-thumb:window-inactive {
	background:rgba(0,0,0,0.5);
}
.ipsdtext>dl{
    display: flex;
    justify-content: space-between;
}
.ipsdtext>dl dd{
    width: 43%;
}
.ipsdtext>dl dd a{
    display: block;
    color: #fff;
    background: #0086e0 url(../images/qian.png) left 20px center no-repeat;
    height: 60px;
    line-height: 60px;
    padding-left: 70px;
    font-size: 14px;
    /* font-family:Sofia-Regular; */
}
.ipsdtext>dl dt{
    width: 53%;
    font-weight: normal;
}
.ipsdtext>dl dt a{
    display: block;
    color: #0086e0;
    background: url(../images/lun.png) left 20px center no-repeat;
    height: 60px;
    line-height: 56px;
    padding-left: 70px;
    font-size: 14px;
    /* font-family:Sofia-Regular; */
    border: 2px solid #0086e0;
}
.ipddeil{
	margin:0px 0px 30px;
}
.ipddeil dl{
	display:flex;
}
.ipddeil dl dd{
	padding:0px 30px;
	line-height:34px;
	font-size:16px;
	border:1px solid rgba(0,0,0,.8);
	font-weight:bold;
	margin-right:10px;
	cursor:pointer;
}
.ipddeil dl dd.on{
	background:#c52720;
	color:#fff;
	border:1px solid #c52720;
}
.ipddeild{
	margin:25px 0px 0px;
}
.ipddeild section{
	display:none;
	font-size: 16px;
    line-height: 28px;
    color: #666;
}
.ipddeild section.on{
	display:block;
}
.xqmore {
	margin-top:30px;
	width:206px;
	height:52px;
}
.xqmore span {
	display:block;
	width:206px;
	height:52px;
	/* font-family:MaisonNeue-Book; */
	line-height:52px;
	font-size:18px;
	background-color:#9f221d;
	color:#FFFFFF;
	text-align:center;
	cursor:pointer;
}
@media (max-width:1440px) {
	.ipsdtext>h1{
		font-size: 20px;
		line-height: 24px;
	}
	.ipsdtext section{
		font-size: 13px;
		line-height: 24px;
	}
	.xqmore {
		margin-top:20px;
		width:206px;
		height:42px;
	}
	.xqmore span {
		height:42px;
		line-height:42px;
		font-size:14px;
	}
}
@media (max-width:992px) {
	.ipdcont{
		margin:15px 0px;
		padding:0px;
	}
	.iproductsd{
		flex-wrap:wrap;
		padding:15px;
	}
	.ipsdimg{
		width: 100%;
	}
	.ipsdtext{
		width: 100%;
		padding: 20px 0 0;
	}
	.zoomDiv{
		display:none !important;
	}
	.zoomMask{
		display:none;
	}
	.ipsdtext>h1{
		font-size: 20px;
		line-height: 20px;
	}
	.ipsdtext section{
		font-size: 13px;
		line-height: 24px;
		margin: 10px 0px;
	}
	.ipddeil{
		margin:0px 0px 20px;
	}
	.ipddeil dl{
		justify-content:space-between;
	}
	.ipddeil dl dd{
		padding:0px 0px;
		line-height:30px;
		width:48%;
		font-size:14px;
		margin-right:0px;
		text-align:center;
	}
	.ipddeild{
		margin:15px 0px 0px;
	}
	.ipddeild section{
		font-size: 14px;
		line-height: 24px;
	}
	.xqmore {
		margin-top:15px;
		width:160px;
		height:38px;
	}
	.xqmore span {
		width:160px;
		height:38px;
		line-height:38px;
		font-size:14px;
	}
}
.ipsdcont{
    background: #fff;
    padding: 20px 0px 70px;
    margin: 5px 0px 0px;
}
.ipsdcont>h2{
    font-size: 22px;
    color: #33393d;
    line-height: 22px;
    /* font-family:Rajdhani-SemiBold; */
    border-left: 3px solid #0086e0;
    padding-left: 15px;
    margin: 0px 0px 25px;
}
.ipsdcont>ul{
    margin-top: 30px;
}
.ipsdcont>ul a{
    display: block;
    border: 1px solid rgba(0, 0, 0, .1);
    text-align: center;
    padding: 0px 0px 30px;
}
.ipsdcont>ul h5{
    font-size: 16px;
    color: #33393d;
    line-height: 20px;
    padding: 5px;
    /* font-family:MaisonNeue-Book;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap; */
}
.ipsdcont>ul p{
    color: #0086e0;
    font-size: 14px;
    line-height: 20px;
    /* font-family:MaisonNeue-Book; */
    margin: 5px 0px 0px;
}
.hanshu {
	color:rgba(37,40,45,.6);
	font-size:14px;
	line-height:32px;
	margin-top:20px;
	/* font-family:MaisonNeue-Book; */
}
.hslan {
	line-height:36px;
	color:#363747;
	font-size:20px;
	border-bottom:1px solid #e4e5e5;
	margin-bottom:14px;
	/* font-family:MaisonNeue-Book; */
}
@media (max-width:1440px) {
	.ipsdcont{
		padding: 20px 0px 40px;
		margin: 25px 0px 0px;
	}
	.ipsdcont>h2{
		font-size: 20px;
		margin: 0px 0px 20px;
	}
	.ipsdcont>ul{
		margin-top: 20px;
	}
	.ipsdcont>ul h5{
		font-size: 14px;
		line-height: 24px;
	}
	.ipsdcont>ul p{
		font-size: 12px;
	}
	.hanshu {
		line-height:26px;
		margin-top:15px;
	}
	.hslan {
		line-height:26px;
		font-size:16px;
		margin-bottom:10px;
	}
}
@media (max-width:992px) {
	.ipsdcont{
		padding: 10px 15px 15px;
		margin: 0px 0px 0px;
	}
	.ipsdcont>h1{
		font-size: 18px;
		line-height: 30px;
		margin: 0px 0px 15px;
	}
	.ipsdcont>ul{
		margin-top: 15px;
		margin-right:-5px;
		margin-left:-5px;
	}
	.ipsdcont>ul li{
		padding:0px 5px;
		margin-bottom:10px;
	}
	.ipsdcont>ul a{
		padding: 0px 0px 15px;
	}
	.ipsdcont>ul h5{
		font-size: 14px;
		line-height: 20px;
		text-overflow:ellipsis;
		overflow:hidden;
		white-space:nowrap;
	}
	.ipsdcont>ul p{
		font-size: 12px;
		line-height: 16px;
	}
}
.fankui{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .6);
    display: none;
}
.fkcont{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fkcont form{
    overflow: hidden;
    max-width: 80%;
    width: 900px;
    border-radius: 5px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
}
.fkcont form .fktit{
    background: #fff;
    padding: 30px 30px 10px;
}
.fkcont form .fkwhite{
    background: #fff;
    padding: 1px 30px 30px;
}
.fkcont form h1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding: 0px 0px 20px;
}
.fkcont form h1 p{
    font-size: 19px;
    line-height: 24px;
    color: #000;
	/* font-family:MaisonNeue-Book; */
}
.fkcont form h1 b{
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(../images/gb.png) center no-repeat;
}
.fkcont dl{
    margin: 15px 0px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.fkcont dl dd{
    width: 49%;
    margin-bottom: 15px;
}
.fkcont dl dd.pi{
    display: none;
    position: relative;
}
.fkcont dl dd p{
    position: absolute;
    top: 0;
    right: 0;
    width: 170px;
    text-align: center;
    height: 100%;
    color: #0086e0;
    line-height: 50px;
    /* font-family:MaisonNeue-Light; */
    font-size: 14px;
    z-index: 3;
    cursor: pointer;
}
.fkcont dl dd input{
    width: 100%;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, .06);
    line-height: 20px;
    padding: 15px;
    border-radius: 3px;
    font-size: 14px;
    color: #515050;
    /* font-family:MaisonNeue-Light; */
}
.fkcont dl dd textarea{
    width: 100%;
    font-size: 14px;
    color: #515050;
    /* font-family:MaisonNeue-Light; */
    border: 1px solid rgba(0, 0, 0, .06);
    line-height: 20px;
    padding: 15px;
    border-radius: 3px;
    resize: none;
}
.fkcont dl dd:nth-of-type(3),.fkcont dl dd:nth-of-type(4){
    width: 100%;
}
.fkcont span{
    display: flex;
    justify-content: flex-end;
    padding: 33px 40px;
    background: #f2f2f2;
}
.fkcont form button{
    width: 165px;
    height: 48px;
    color: #fff;
    border: 0;
    background: #0086e0;
    font-size: 18px;
    /* font-family:MaisonNeue-Book; */
}
.iapplica{
	padding:50px;
	line-height:34px;
	font-size:16px;
	/* font-family:MaisonNeue-Book; */
}
@media (max-width:992px) {
	.iapplica{
		padding:15px 0;
		line-height:24px;
		font-size:14px;
	}
}
.ipage{
    padding: 50px 0px;
    background: #f2f2f2;
}
.inews dl{
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .02);
}
.inews dl dt{
    width: 48.5%;
}
.inews dl dd{
    width: 49%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    padding: 25px 35px 25px 0px;
}
.inews dl h5{
    color: #303032;
    font-size: 14px;
    line-height: 22px;
    /* font-family:MaisonNeue-Light; */
    width: 100%;
}
.inews dl h3{
    width: 100%;
}
.inews dl h3 a{
    font-size: 21px;
    line-height: 24px;
	/* font-family:MaisonNeue-Book; */
    color: #de2725;
}
.inews dl section{
    color: #676767;
    font-size: 15px;
    width: 100%;
    line-height: 34px;
	/* font-family:MaisonNeue-Light; */
}
.inews dl h4 a{
    width: 172px;
    height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 8px 0px 20px;
    border-radius: 23px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .1);
}
.inews dl h4 p{
    font-size: 16px;
    color: #de2725;
    line-height: 46px;
	/* font-family:MaisonNeue-Light; */
}
.inews dl h4 i{
    width: 30px;
    height: 30px;
    background: #de2725;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.inews dl h4 i:after{
    content: "";
    border-left: 6px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}
.inews ul{
    margin: 50px 0px 0px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    flex-wrap: wrap;
}
@media (max-width:1440px) {
	.inews dl h3 a{
		font-size: 17px;
		line-height: 22px;
	}
	.inews dl section{
		font-size: 14px;
		line-height: 26px;
	}
	.inews dl h4 a{
		width: 160px;
		height: 40px;
		border-radius: 20px;
	}
	.inews dl h4 p{
		font-size: 14px;
		line-height: 40px;
	}
	.inews dl h4 i{
		width: 24px;
		height: 24px;
	}
	.inews ul{
		margin: 30px 0px 0px;
		padding-bottom: 20px;
	}
}
@media (max-width:992px) {
	.inews dl{
		display:none;
	}
}
.inews ul li{
    width: 48.5%;
    margin-bottom: 35px;
}
.inews li a{
    display: block;
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
    padding: 25px 30px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, .02);
}
.inews li h2{
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 30px;
}
.inews li h2 span{
    font-size: 18px;
    line-height: 22px;
    color: #808080;
    /* font-family:MaisonNeue-Light; */
}
.inews li h2 p{
    width: calc(100% - 95px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    color: #23232b;
	/* font-family:MaisonNeue-Book; */
    line-height: 22px;
}
.inews li section{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.inews li section p{
    font-size: 17px;
    line-height: 30px;
    color: #de2725;
    /* font-family:MaisonNeue-Light; */
    text-decoration: underline;
}
.inews li section span{
    display: block;
    width: calc(100% - 100px);
    font-size: 14px;
    line-height: 28px;
    color: #9192a1;
	max-height:56px;
	/* font-family:MaisonNeue-Light; */
	overflow:hidden;
}
@media (max-width:1440px) {
	.inews ul li{
		margin-bottom:25px;
	}
	.inews li a{
		padding: 25px;
	}
	.inews li h2{
		margin: 0px 0px 20px;
	}
	.inews li h2 span{
		font-size: 15px;
		line-height: 20px;
	}
	.inews li h2 p{
		width: calc(100% - 90px);
		font-size: 16px;
	}
	.inews li section p{
		font-size: 15px;
		line-height: 26px;
	}
	.inews li section span{
		width: calc(100% - 95px);
		line-height: 26px;
		max-height:52px;
	}
}
@media (max-width:992px) {
	.ipage{
		padding:15px 0px;
	}
	.inews{
		padding-bottom:20px;
	}
	.inews ul{
		margin:0;
		padding-bottom:10px;
	}
	.inews ul li{
		width:100%;
		margin-bottom:10px;
	}
	.inews li a{
		padding: 15px;
		border-radius:2px;
	}
	.inews li h2{
		display:block;
		margin: 0px 0px 0px;
	}
	.inews li h2 span{
		font-size: 12px;
		line-height: 18px;
	}
	.inews li h2 p{
		width: 100%;
		font-size: 16px;
	}
	.inews li section{
		display:block;
	}
	.inews li section p{
		font-size: 13px;
		line-height: 22px;
	}
	.inews li section span{
		width: 100%;
		line-height: 22px;
		margin:5px 0px;
		max-height:none;
	}
}
.instt{
	font-size:20px;
	text-align:center;
	line-height:20px;
	margin:0px 0px 5px;
	/* font-family:MaisonNeue-Book; */
}
.insct{
	line-height:34px;
	color:#444;
	font-size: 16px;
	padding:20px 0px;
	/* font-family:MaisonNeue-Light; */
}
.instm{
	display:flex;
	justify-content:center;
	align-items:center;
	border-bottom:1px rgba(0,0,0,.15) dashed;
	padding-bottom:5px;
	/* font-family:MaisonNeue-Light; */
}
.instm span{
	color:#777;
	display:flex;
	line-height:30px;
	margin:0px 10px;
	font-size:13px;
	display:flex;
	align-items:center;
}
.instm span i{
	line-height:26px;
	margin-right:5px;
}
@media (max-width:992px) {
	.idan{
		height:350px !important;
	}
	.idan .insbn{
		margin-top:0;
	}
	.inewsd{
		padding:15px 0 30px;
	}
	.instt{
		font-size:15px;
		margin:0px 0px 2px;
	}
	.insct{
		line-height:24px;
		font-size: 13px;
		padding:10px 0px 15px;
	}
	.instm{
		padding-bottom:3px;
	}
	.instm span{
		line-height:20px;
		margin:0px 5px;
		font-size:12px;
	}
	.instm span i{
		line-height:20px;
	}
}
.fanye{
	display:flex;
	justify-content:space-between;
}
.fanye a{
	max-width:50%;
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
	/* font-family:MaisonNeue-Book; */
	font-size:16px;
	line-height:30px;
	color:#000;
}
.fanye a:hover{
	color:#ed6c00;
	text-decoration:underline;
}
@media (max-width:992px) {
	.fanye a{
		font-size:13px;
		line-height:20px;
	}
}
.ifaq{
	padding:50px 0px;
	background:#f2f2f2;
}
.ifaq ul li{
	background:#fff;
	margin-bottom:20px;
	padding:20px 25px 30px;
}
.ifaq dt{
	display:flex;
	font-weight:normal;
	border-bottom:1px solid rgba(0,0,0,.08);
	padding-bottom:10px;
	margin-bottom:10px;
}
.ifaq dt p{
	/* font-family:MaisonNeue-Book; */
	font-size:20px;
	line-height:30px;
	width:30px;
}
.ifaq dt span{
	width:calc(100% - 30px);
	font-size:18px;
	color:#333;
	/* font-family:MaisonNeue-Book; */
	line-height:30px;
}
.ifaq dd{
	display:flex;
}
.ifaq dd>h5{
	/* font-family:MaisonNeue-Book; */
	font-size:20px;
	line-height:30px;
	width:30px;
}
.ifaq dd section{
	width:calc(100% - 30px);
	font-size:16px;
	line-height:24px;
	color:#666;
	/* font-family:MaisonNeue-Light; */
	padding:5px 0px 0px;
}
@media (max-width:992px) {
	.ifaq{
		padding:15px 0px;
	}
	.ifaq ul li{
		margin-bottom:15px;
		padding:15px;
	}
	.ifaq dt{
		padding-bottom:10px;
		margin-bottom:10px;
	}
	.ifaq dt p{
		font-size:16px;
		line-height:20px;
		width:20px;
	}
	.ifaq dt span{
		width:calc(100% - 20px);
		font-size:14px;
		line-height:20px;
	}
	.ifaq dd>h5{
		font-size:16px;
		line-height:20px;
		width:20px;
	}
	.ifaq dd section{
		width:calc(100% - 20px);
		font-size:14px;
		line-height:18px;
		padding:0px 0px 0px;
	}
}
.huise{
	background:#f2f2f2;
}
.icontact{
	padding:50px 0px;
}
.icontact dl{
	display: flex;
	display: -webkit-flex;
	background: #fff;
}
.icontact dl dt{
	width: 60%;
}
.icontact dl dd{
	width: 40%;
	padding: 60px 30px 60px 40px;
}
.icontact dl dt #map{
	width:100%; 
	height:600px;
	border:1px solid rgba();
}
.amap-info-content{
	padding: 15px 20px;
	font-weight: normal;
}
.icontact dl dd ul{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	align-content: space-between;
	-webkit-align-content: space-between;
	height: 100%;
}
.icontact dl dd ul li{
	display: flex;
	display: -webkit-flex;
	width: 100%;
}
.icontact dl dd ul>i{
	display: block;
	height: 1px;
	background: rgba(0,0,0,.08);
	width: 100%;
}
.icontact dl dd ul li i{
	display: block;
	width: 12%;
}
.icontact dl dd ul li section{
	width: 88%;
}
.icontact dl dd ul li section big{
	display: block;
	color: #000000;
	font-size: 20px;
	/* font-family:MaisonNeue-Book; */
	line-height: 35px;
}
.icontact dl dd ul li section>span{
	display: block;
	color: #474a51;
	font-size: 17px;
	/* font-family:MaisonNeue-Light; */
	line-height: 30px;
	margin: 10px 0px 0px;
}
@media (max-width:1440px) {
	.icontact{
		padding:30px 0px;
	}
	.icontact dl dd ul li section big{
		font-size: 18px;
		line-height: 30px;
	}
	.icontact dl dd ul li section>span{
		font-size: 15px;
		line-height: 28px;
	}
}
@media (max-width:992px) {
	.icontact{
		padding:15px 0px;
	}
	.icontact dl{
		flex-wrap:wrap;
	}
	.icontact dl dt{
		width: 100%;
		order:2;
	}
	.icontact dl dd{
		width: 100%;
		order:1;
		padding: 5px 15px;
	}
	.icontact dl dt #map{
		height:350px;
	}
	.icontact dl dd ul li{
		padding:15px 0px;
	}
	.icontact dl dd ul li i{
		display: block;
		width: 10%;
		padding: 5px;
	}
	.icontact dl dd ul li section{
		width: 90%;
		padding-left:5px;
	}
	.icontact dl dd ul li section big{
		font-size: 16px;
	}
	.icontact dl dd ul li section>span{
		font-size: 14px;
		line-height: 20px;
		margin: 0px 0px 0px;
	}
}
.feedback{
	padding:50px 0px;
}
.feedback h1{
	text-align:center;
	font-size:40px;
	/* font-family:Rajdhani-SemiBold; */
	line-height:50px;
}
.feedback form{
	margin:30px 0px 0px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.feedback form span{
	width:48%;
	margin-bottom:20px;
}
.feedback form p{
	font-size:18px;
	/* font-family:MaisonNeue-Book; */
	line-height:22px;
	margin:0px 0px 5px;
}
.feedback form p:after{
	content:"*";
	color:#f00;
	margin-left:5px;
}
.feedback form input{
	width:100%;
	border:0;
	background:rgba(0,0,0,.05);
	line-height:22px;
	padding:20px 15px;
	border-radius:3px;
	/* font-family:MaisonNeue-Light; */
	font-size:16px;
	height:62px;
}
.feedback form section{
	width:100%;
}
.feedback form textarea{
	width:100%;
	border:0;
	background:rgba(0,0,0,.05);
	line-height:22px;
	padding:20px 15px;
	border-radius:3px;
	font-size:16px;
	/* font-family:MaisonNeue-Light; */
	resize:none;
}
.feedback form button{
	width:200px;
	height:60px;
	color:#fff;
	border:0;
	background:#e61c23;
	font-size:18px;
	/* font-family:MaisonNeue-Book; */
	border-radius:3px;
	margin:30px 0px 0px;
}
@media (max-width:992px) {
	.feedback{
		padding:15px 0px;
	}
	.feedback h1{
		font-size:20px;
		line-height:20px;
	}
	.feedback form{
		margin:20px 0px 0px;
	}
	.feedback form span{
		width:48%;
		margin-bottom:15px;
	}
	.feedback form p{
		font-size:14px;
		line-height:20px;
	}
	.feedback form input{
		line-height:20px;
		padding:10px 15px;
		font-size:14px;
		height:42px;
	}
	.feedback form textarea{
		line-height:20px;
		padding:10px 15px;
		font-size:14px;
	}
	.feedback form button{
		width:100%;
		height:50px;
		font-size:14px;
		margin:10px 0px 0px;
	}
}