@charset "utf-8";
/*轮播*/
.i_banner{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.i_banner .swiper-container{
	width: 100%;
	height: 100%;
	display: block;
}
.i_banner .swiper-slide{
	position: relative;
}
.i_banner .swiper-slide > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.i_banner .swiper-button-prev,
.i_banner .swiper-button-next{
	width: 50px;
	height: 50px;
    background: rgba(255, 255, 255, .8);
    margin-top:-25px;
}
.i_banner .swiper-button-prev{
	left:3%;
}
.i_banner .swiper-button-next{
	right:3%;
}
.i_banner .swiper-button-prev:after,
.i_banner .swiper-button-next:after{
	font-size: 1.375rem;
	color: #000;
}
.i_banner .swiper-pagination{
	width: 100%;
	bottom: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.i_banner .swiper-pagination .swiper-pagination-bullet{
	width: 14px;
	height: 14px;
	margin:0 6px;
	border-radius: 50%;
	background: #a7a7a7;
	position: relative;
}
@media (max-width: 1280px) {
	.i_banner .swiper-button-prev,
	.i_banner .swiper-button-next{
		width: 40px;
		height: 40px;
	    margin-top:-20px;
	}
	.i_banner .swiper-button-prev:after,
	.i_banner .swiper-button-next:after{
		font-size: 1rem;
	}
	.i_banner .swiper-pagination{
		bottom: 20px;
	}
}
@media (max-width: 992px) {

}
@media (max-width: 750px) {
    .i_banner .swiper-button-prev,
	.i_banner .swiper-button-next{
		width: 24px;
		height: 24px;
	    margin-top:-12px;
	}
	.i_banner .swiper-button-prev:after,
	.i_banner .swiper-button-next:after{
		font-size: .675rem;
	}
	.i_banner .swiper-pagination{
		bottom: 10px;
	}
	.i_banner .swiper-pagination .swiper-pagination-bullet{
		width: 8px;
		height: 8px;
		margin:0 4px;
	}
}

.i_title{
    text-align: center;
}
.i_title.left{
    text-align: left;
}
.i_title h1{
	font-size: 60px;
	line-height: 60px;
	font-weight: 500;
	color: rgba(0, 0, 0, .1);
}
.i_title.white h1{
    color: rgba(245, 245, 245, 0.3);
}
.i_title h2{
	font-size: 36px;
	line-height: 36px;
	margin-top: -25px;
}
.i_title.white h2{
	color: #fff;
}
@media (max-width: 1280px) {
	.i_title h1{
		font-size: 48px;
		line-height: 48px;
	}
	.i_title h2{
		font-size: 28px;
		line-height: 28px;
	}
}
@media (max-width: 992px){
    .i_title h1{
		font-size: 42px;
		line-height: 42px;
	}
	.i_title h2{
		font-size: 24px;
		line-height: 24px;
	}
}
@media (max-width: 750px){
    .i_title h1{
		font-size: 32px;
		line-height: 32px;
	}
	.i_title h2{
		font-size: 20px;
		line-height: 20px;
		margin-top: -14px;
	}
}

.i_box1{
    padding:80px 0;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.i_box1 .left{
	width: 48%;
}
.i_box1 .left .title{
	position: relative;
	padding-bottom: 20px;
}
.i_box1 .left .title h1{
	font-size: 48px;
	line-height: 48px;
	color: #c7c7c7;
}
.i_box1 .left .title h2{
	font-size: 30px;
	line-height: 30px;
}
.i_box1 .left .title:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 1px;
	background: #d81324;
}
.i_box1 .left .content{
	margin-top: 60px;
}
.i_box1 .right{
	width: 48%;
}
.i_box1 .right ul{
	display: flex;
	flex-wrap: wrap;
}
.i_box1 .right li{
	width: 33.33333333%;
	background-color: #e6e6e6;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding:30px;
	text-align: center;
}
.i_box1 .right li:nth-child(2n){
	background: #f1efef;
}
.i_box1 .right .image{
	margin-bottom: 10px;
}
.i_box1 .right .image img{
	filter: brightness(0);
	transition: all 400ms cubic-bezier(.77, 0, .175, 1);
}
.i_box1 .right li:hover .image img{
	filter: none;
}
@media (max-width: 1280px) {
    .i_box1{
    	padding:8% 0;
    	flex-direction: column;
    }
    .i_box1 .left,
    .i_box1 .right{
    	width: 100%;
    }
    .i_box1 .left .title{
		padding-bottom: 10px;
	}
	.i_box1 .left .title h1{
		font-size: 42px;
		line-height: 42px;
	}
	.i_box1 .left .title h2{
		font-size: 28px;
		line-height: 28px;
	}
    .i_box1 .left .content{
		margin-top: 6%;
	}
    .i_box1 .right{
    	margin-top: 6%;
    }
    .i_box1 .right li{
    	padding:3%;
    }
    .i_box1 .right .image{
    	margin-bottom: 0;
    }
}
@media (max-width: 992px){
    .i_box1 .left .title h1{
		font-size: 36px;
		line-height: 36px;
	}
	.i_box1 .left .title h2{
		font-size: 24px;
		line-height: 24px;
	}
}
@media (max-width: 750px){
    .i_box1 .left .title h1{
		font-size: 30px;
		line-height: 30px;
	}
	.i_box1 .left .title h2{
		font-size: 20px;
	}
	.i_box1 .right li{
		width: 100%;
	}
}

.i_box2{
	width: 100%;
	background: url(../images/abtbg.jpg) no-repeat center top;
	background-size: cover;
	padding:80px 0;
	overflow: hidden;
}
.i_box2 .list ul{
	display: flex;
	justify-content: space-between;
}
.i_box2 .list li{
	margin-top: 60px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.i_box2 .list .number{
	width: 200px;
	height: 200px;
	border:10px #d81324 solid;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.i_box2 .list .number .counter{
	font-size: 48px;
}
.i_box2 .list .word{
    margin-top: 30px;
}
@media (max-width: 1280px) {
    .i_box2{
    	padding:8% 0;
    }
	.i_box2 .list ul{
		flex-wrap: wrap;
	}
	.i_box2 .list li{
		width: 49%;
		margin-top: 6%;
	}
	.i_box2 .list .word{
		margin-top: 3%;
	}
}
@media (max-width: 992px){
    
}
@media (max-width: 750px){
    .i_box2 .list li{
		width: 100%;
	}
}

.i_box3{
	padding:80px 0;
	overflow: hidden;
}
.i_box3 .list{
	margin-top: 60px;
}
.i_box3 .list .image{
	border:1px #eee solid;
	margin-bottom: 20px;
}
.i_box3 .list .image img{
	width: 100%;
}
.i_box3 .list .word{
	color: #ffffff;
    background-color: #666666;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 600;
    transition: all 400ms cubic-bezier(.77, 0, .175, 1);
}
.i_box3 .list li:hover .word{
	background: #d81324;
}
@media (max-width: 1280px) {
    .i_box3{
    	padding:8% 0;
    }
    .i_box3 .list{
		margin-top: 6%;
	}
}
@media (max-width: 992px){
    
}
@media (max-width: 750px){
    .i_box3 .list .word{
	    padding-top: 10px;
	    padding-bottom: 10px;
	}
}

.i_box4{
	width: 100%;
	background: url(../images/news.jpg) no-repeat center top;
	background-size: cover;
	padding:80px 0;
	overflow: hidden;
}
.i_box4 .list{
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.i_box4 .list .swiper-button-prev,
.i_box4 .list .swiper-button-next{
	position: static;
}
.i_box4 .list .swiper-button-prev:after,
.i_box4 .list .swiper-button-next:after{
	color: #fff;
	font-size: 24px;
	font-weight: 800;
}
.i_box4 .list .swiper-container{
	width: calc(100% - 80px);
}
.i_box4 .list a{
	display: block;
	background: #fff;
	padding:20px;
}
.i_box4 .list .image{
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}
.i_box4 .list .image img{
	width: 100%;
	display: block;
	transform: scale(1.1);
	-webkit-transition:all 400ms linear;
    -moz-transition:all 400ms linear;
    -o-transition:all 400ms linear;
    transition:all 400ms linear;
}
.i_box4 .list .image:before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top:0;
	background: rgba(0, 0, 0, .4);
	opacity: 0;
	transition: all 900ms cubic-bezier(.77, 0, .175, 1);
	z-index: 1;
}
.i_box4 .list .image .mask{
	position: absolute;
	bottom: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: all 900ms cubic-bezier(.77, 0, .175, 1);
	color: #fff;
	z-index: 2;
	padding:20px;
}
.i_box4 .list a:hover .image img{
	transform: scale(1);
}
.i_box4 .list a:hover .image:before{
	opacity: 1;
}
.i_box4 .list a:hover .image .mask{
	transform: translateY(0);
    opacity: 1;
}
.i_box4 .list .word{
	font-weight: 600;
	font-size: 20px;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
@media (max-width: 1280px) {
    .i_box4{
    	padding:8% 0;
    }
    .i_box4 .list{
		margin-top: 6%;
	}
	.i_box4 .list a{
		padding:10px;
	}
	.i_box4 .list .image{
		margin-bottom: 10px;
	}
	.i_box4 .list .word{
		font-size: 16px;
	}
}
@media (max-width: 992px){
    
}
@media (max-width: 750px){
    .i_box4 .list .swiper-container{
		width: calc(100% - 60px);
	}
	.i_box4 .list .word{
		font-size: 14px;
	}
}

.i_box5{
	width: 100%;
	background: url(../images/contact.jpg) no-repeat center top;
	background-size: cover;
	padding:80px 0;
	color: #ffffff;
	overflow: hidden;
}
.i_box5 .wrap{
	display: flex;
	flex-direction: column;
}
.i_box5 .list{
	margin-top: 40px;
}
.i_box5 .list li{
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.i_box5 .list em{
	font-size: 18px;
	margin-right: 10px;
}
.i_box5 .code{
	margin-top: 40px;
}
@media (max-width: 1280px) {
    .i_box5{
    	padding:8% 0;
    }
    .i_box5 .list{
		margin-top: 4%;
	}
	.i_box5 .list li{
		margin-top: 5px;
	}
	.i_box5 .code{
		margin-top: 4%;
	}
}
@media (max-width: 992px){
    
}
@media (max-width: 750px){
    
}