/* banner图 */
.banner {
  width: 100%;
  position: relative;
}

.banner ul li {
  position: relative;
}

.banner img {
  width: 100%;
}

.banner .point {
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .point li {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  border-radius: 10px;
  background: #c0c0c0;
  float: left;
  color: transparent;
  cursor: pointer;
}
.banner .point li.on {
  background-color: #63615e;
}
.banner .slides li img {
  width: 100%;
}


.home-section {
  padding: 50px 0 0;
  position: relative;
  z-index: 2;
}
/* solution */
.home-solution-list {
  width: 96%;
  margin: auto;
  display: none;
}
.home-solution-list .li {
  width: 49.5%;
  position: relative;
}
.home-solution-list ul {
  width: 49%;
}
.home-solution-list li {
  width: 48%;
  margin-bottom: 3%;
}
.home-solution-list li a,
.home-solution-list .li a {
  display: block;
  width: 100%;
  position: relative;
}
.home-solution-list img {
  width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.home-solution-list li:hover img,
.home-solution-list .li:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.home-solution-list .li-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 15px;
  background-color: rgba(0,0,0,0.5);
}
.home-solution-list .li-text h3 {
  font-size: 2.8rem;
  font-weight: normal;
  margin-bottom: 5px;
}
.home-solution-list .li-text p {
  font-size: 1.8rem;
}

/* 视频 */
.home-video {
  margin-top: 50px;
  background: url(../images/gg-bg.jpg);
  padding: 120px 0 100px;
}
.home-video .home-section-caption {
  color: #fff;
}
.home-video .home-section-caption a {
  display: flex;
  width: 200px;
  height: 50px;
  margin: auto;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.home-video .home-section-caption a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e83421;
  top: 0;
  left: -120%;
  z-index: 1;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.home-video .home-section-caption a:hover::before {
  left: 0;
}
.home-video .home-section-caption a::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/icon.png) -390px 0;
  position: relative;
  z-index: 3;
}
.home-video .home-section-caption a span {
  position: relative;
  z-index: 3;
}
.video-full-screen {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 10;
  text-align: center;
}
.video-full-screen .close {
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/icon.png) -444px -210px;
  position: absolute;
  right: 10%;
  top: 10%;
  cursor: pointer;
}
.video-full-screen video {
  max-width: 70%;
}

/* news */
.home-news .news-list {
  width: 45%;
}
.home-news .news-list ul li {
  margin-bottom: 23px;
}
.home-news .news-list ul li:last-child {
  margin-bottom: 0;
}
.home-news .news-list ul li a {
  display: flex;
  color: #333;
}
.home-news .news-list ul li .li-date {
  border: 2px solid #999;
  border-radius: 10px;
  padding: 5px 12px;
  flex-shrink: 0;
}
.home-news .news-list ul li .li-date span {
  display: block;
  font-size: 2rem;
  text-align: center;
}
.home-news .news-list ul li .li-date .day {
  font-size: 3.6rem;
}
.home-news .news-list ul li .li-text {
  padding-left: 20px;
}
.home-news .news-list ul li h3 {
  font-size: 2.2rem;
  margin-bottom: 5px;
  font-weight: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.home-news .news-list ul li p {
  font-size: 1.6rem;
  height: 56px;
  overflow: hidden;
}
.home-news .news-list ul li:hover .li-date {
  background-color: #e83421;
  color: #fff;
  border-color: #e83421;
}
.home-news .news-list ul li:hover h3 {
  color: #e83421;
}
.home-news .news-sort {
  width: 21%;
}
.home-news .news-sort ul li {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}
.home-news .news-sort ul li:last-child {
  margin-bottom: 0;
}
.home-news .news-sort ul li p,
.home-news .news-sort ul li span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.home-news .news-sort ul li p {
  font-size: 2.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

}
.home-news .news-sort ul li span {
  width: 50%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 2rem;
  color: #fff;
  background-color: #e83421;
  bottom: 200%;
  right: 0;
  margin: auto;
  border-radius: 8px;
}
.home-news .news-sort ul li:hover span {
  bottom: 0;
}
.home-news .news-sort ul li:hover p {
  top: 100%;
}
.home-news .news-sort img {
  width: 100%;
}
/* partner */
.home-partner {
  background-color: #f5f5f5;
  margin-top: 50px;
}
.home-partner-list {
  overflow: hidden;
  padding-bottom: 40px;
}
.home-partner-list ul li {
  width: 14.3%;
  padding: 0 5px;
}
.home-partner-list ul li img {
  width: 100%;
}

/* 新增 */
.home-machine{
	height: 950px;
	background: url(../images/pro-bg.jpg) no-repeat center;
}
.home-machine-list li img{
	border: none;
	vertical-align: middle;
	display: initial;
}
.pron-ku{
	height: 260px;
	line-height: 260px;
}
.pron-more a{
	display: block;
	width: 320px;
	height: 80px;
	text-align: center;
	line-height: 80px;
	background: #e83421;
	margin: auto;
	color: #fff;
	margin-top: 80px;
	font-size: 26px;
}

/* 首页服务 */
.home-service{
	padding-top: 0;
}
.home-servicenew{
	height: 390px;
	background: url(../images/service-index.png) no-repeat center;
}
.home-servicenew2{
	
	background: url(../images/shipinanquan1.jpg) no-repeat center;
}
.slideBox{
	position: relative;
}
.slideBox .prev,
.slideBox .next{ position:absolute; left:3%; top:50%; margin-top:-25px; display:block; width:32px; height:40px; background:url(../images/slider-arrow.png) -110px 5px no-repeat; filter:alpha(opacity=50);opacity:0.5;   }
.slideBox .next{ left:auto; right:3%; background-position:8px 5px; }
.slideBox .prev:hover,
.slideBox .next:hover{ filter:alpha(opacity=100);opacity:1;  }
.slideBox .prevStop{ display:none;  }
.slideBox .nextStop{ display:none;  }

.servicenew-con span{
	display: block;
	font-size: 60px;
	color: #fff;
	padding-top: 100px;
}
.servicenew-a{
	float: right;
}
.home-servicenew2 span{
	text-align: right;
}
.servicenew-con p{
	font-size: 24px;
	color: #000;
	line-height: 44px;
	margin: 36px 0 60px 0;
}
.servicenew-con a{
	display: block;
	width: 200px;
	height: 60px;
	background: #e83421;
	text-align: center;
	font-size: 20px;
	color: #fff;
	line-height: 60px;
}

/* 新增 */
.section-news {
	padding: 80px 0 0 0;
	display: none;
}

.section-news .inner-wrap {
	width: calc(100% - 100px);
	max-width: 1400px;
	margin: 0 auto;
}

.section-news .tit-area {
	position: relative;
	font-size: 60px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 5rem;
}

.section-news .tit-area span {
	display: inline-block;
	width: 100%;
	text-align: center;
}

.section-news .icon_arrow_r {
	display: block;
	width: 38px;
	height: 16px;
	background: url('../images/red-arrow.svg') no-repeat 0 center;
	background-size: 100% auto;
	position: absolute;
	right: 0;
	bottom: -6rem;
	padding: 15px 0;
}

.section-news .read-more {
	font-size: 16px;
	color: #0064D9;
	text-align: center;
	margin-top: 7px;
}

.section-news .solution-wrap {
	overflow: hidden;
}

.section-news .article {
	position: relative;
	float: left;
	width: calc(20.4% - 20px);
	height: 520px;
	background-size: auto 520px !important;
	background-position: center center;
	background-repeat: no-repeat;
	text-align: center;
	color: #fff;
	background-repeat: no-repeat;
	transition-duration: 1s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	/*background-repeat: no-repeat;*/
}

.section-news .article.on,
.section-news .article:hover {
	width: 55.7%;
	text-align: left;
	background-position: 0 !important;
	display: block;
}

.section-news .article.solution1 {
	margin-top: 31px;
	background: url(../images/solution.jpg) no-repeat center;
}

.section-news .article.solution2 {
	background: url(../images/solution2.jpg) no-repeat center;
}

.section-news .article.solution3 {
	background: url(../images/sulution3.jpg) no-repeat center;
	margin-top: 71px;
}
.section-news .article .inner {
	position: relative;
	margin: 7px;
}

.section-news .article::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 0;
	opacity: 1;
	transition-duration: .3s;
}

.section-news .article.on::before,
.section-news .article:hover::before {
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.section-news .article .inner {
	position: relative;
	margin: 7px;
}

.section-news .article .tit {
	line-height: 1.5;
	font-size: 34px;
	transition-duration: .1s;
	transition-delay: .1s;
	color: #FFFFFF;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	padding-left: 2px;
}

.section-news .article .time {
	margin-top: 30px;
	font-size: 16px;
	color: #E0E0E0;
	padding-left: 2px;
}

.section-news .article .desc {
	line-height: 2;
	font-size: 1.4rem;
	color: #FFFFFF;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	padding-left: 2px;
}

.section-news .article .btn-more {
	display: inline-block;
	margin-top: 30px;
	font-size: 16px;
	margin-left: 2px;
	border-radius: 10px;
	width: 140px;
	height: 46px;
	text-align: center;
	line-height: 46px;
}

.section-news .article .btn-more em {
	font-style: normal;
}

.section-news .article .time,
.section-news .article .desc {
	display: none;
}

.section-news .article .btn-more {
	color: rgba(0, 0, 0, 0);
	background: rgba(0, 0, 0, 0);
	transition-delay: .5s;
}

.section-news .article.on .btn-more {
	transition-delay: .5s;
	color: #fff;
	background-color: #e83421;
}

.section-news .article.on .time,
.section-news .article.on .desc {
	display: block;
}

.section-news .article+.article {
	margin-left: 20px;
}

.section-news .over-line {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	padding-left: 2px;
}

.section-news .article .inner {
	/*opacity: 0;*/
	display: none;
	width: 680px;
	margin: 70px 40px 0;
}

.section-news .article .normal {
	/*opacity: 1;*/
	display: block;
	width: 90%;
	max-width: 220px;
	margin: 0 auto;
}

.section-news .article.on .inner {
	/*opacity: 1;*/
	display: block;
	transition-delay: .2s;
	transition: all .2s;
}

.section-news .article.on .normal {
	/*opacity: 0;*/
	display: none;
}

.section-news .word-div {
	margin-right: 7px;
}

.section-news .moreImg {
	width: 6px;
}
.tit-area-dre{
	font-size: 20px;
	color: #666;
	text-align: center;
	font-weight: normal;
	padding-top: 30px;
}
.ipro{
	padding: 70px 0;
}
.ipro-tit span{
	font-size: 60px;
	font-weight: bold;
	position: relative;
	padding-left: 50px;
}
.ipro-tit span::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 6px;
	width: 20px;
	height: 50px;
	background: #e83421;
}
.ipro-tit ul{
	float: right;
	padding-top: 20px;
}
.ipro-tit ul li{
	display: inline-block;
	font-size: 20px;
	color: #000;
	border-bottom: 4px solid #dcdcdc;
	padding-bottom: 10px;
	margin-left: 40px;
	cursor: pointer;
}
.ipro-tit ul li.active{
	color: #e83421;
	border-color: #e83421;
}
.ipro-tit{
	margin-bottom: 70px;
	overflow: hidden;
}

.ipro-main{
	display: none;
}
.ipro-main-all .ipro-main:first-child{
	display: block;
}
.ipro-main-block{
	display: block;
}
.ipro-main li{
	width: 32%;
	box-shadow: 0 0 5px #ddd;
	padding: 30px;
	border-radius: 5px;
}
.ipro-main li img{
	width: 100%;
}
.ipro-main li h3{
	font-size: 22px;
	color: #000;
	margin: 30px 0;
	line-height: 30px;
	height: 30px;
	overflow: hidden;
	text-align: center;
	font-weight: normal;
}
.ipro-main li span{
	display: block;
	text-align: center;
	font-size: 16px;
	color: #1E90FF;
}
.iabout{
	background: #f5f5f5;
	padding-bottom: 70px;
}
.iabout-l, .iabout-r{
	float: left;
	width: 48%;
}
.iabout-l{
	margin-right: 4%;
	padding-top: 53px;
}
.iabout-main{
	overflow: hidden;
	margin-bottom: 70px;
}
.iabout-l p{
	font-size: 16px;
	color: #646464;
	line-height: 30px;
	margin-bottom: 70px;
}
.iabout-l p span{
	font-size: 20px;
	font-weight: bold;
	color: #000;
}
.iabout-l ul li{
	overflow: hidden;
	margin-bottom: 35px;
	font-size: 20px;
	color: #000;
}
.iabout-l ul li span{
	float: left;
	width: 55px;
}
.iabout-l a{
	display: block;
	width: 180px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	color: #fff;
	background: #e83421;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid #e83421;
}
.iabout-l a:hover{
	background: none;
	color: #e83421;
}
.iabout-btm dl dt{
	width: 170px;
	height: 170px;
	border-radius: 50%;
	border: 1px solid #e5e5e5;
}
.iabout-btm dl dt img{
	height: 45px;
	margin: 30px 0 0 30px;
}
.iabout-btm dl dt span{
	display: block;
	text-align: center;
	font-size: 54px;
	color: #000;
	font-weight: bold;
	margin-top: 10px;
}
.iabout-btm dl dd{
	font-size: 20px;
	color: #666;
}
.news-list2{
	background: #f0f0f0;
	padding: 25px 25px 1px 25px;
	width: 32%;
}
.news-list2 ul li h3{
	font-size: 18px;
	color: #333;
	line-height: 30px;
	height: 60px;
	overflow: hidden;
	margin-bottom: 10px;
}
.news-list2 ul li span{
	color: #666;
	font-size: 14px;
}
.news-list2 ul li{
	margin-bottom: 20px;
}
.news-list2 ul li:hover h3{
	color: #e83421;
}
.news-mbtm{
	padding: 48px 0;
	text-align: center;
	width: 100%;
}
.news-mbtm a{
	display: inline-block;
	width: 170px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border: 1px solid #e83421;
	color: #fff;
	border-radius: 5px;
	margin: 0 10px ;
	font-size: 16px;
	background: #e83421;
}
.news-mbtm a:hover{
	color: #e83421;
	border: 1px solid #e83421;
	background: none;
}

.rela-main{
	display: block;
}
.ipro-main li h3{
	height: 60px;
}
.ipro-main li h3 strong{
	font-weight: normal;
}









@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1200px) {
}

@media screen and (min-width:992px) and (max-width:1199px) {
}
@media screen and (max-width: 992px) {
}

@media screen and (min-width:768px) and (max-width:992px) {
}

@media screen and (max-width:1024px) {
	.home-solution-list li, .home-solution-list ul, .home-solution-list .li{
		width: 100%;
	}
	.home-solution-list .li{
		margin-bottom: 3%;
	}
	.home-machine-list li{
		width: 48%;
	}
	
}

@media screen and (max-width: 640px) {
}
@media screen and (max-width: 480px) {
}

@media screen and (max-width: 414px) {
}

@media screen and (max-width: 360px) {
}


/* 手机端 */
@media screen and (max-width:1024px) {
	.section-news .tit-area{
		margin-bottom: 0;
	}
	.home-solution-list .li-text{
		position: initial;
		background: #fff;
		color: #333;
	}
	.home-solution-list .li, .home-solution-list ul, .home-solution-list li, .home-news .news-first, .home-news .news-list, .home-news .news-sort{
		width: 100%;
	}
	.home-section-caption p{
		display: none;
	}
	.pron-more a{
		margin-left: 0;
	}
	.home-solution-list li, .li-img{
		margin-bottom: 2px;
	}
	.home-section-caption h2, .about-video h2, .culture-top h2, .culture-btm h2{
		font-size: 30px;
		margin-bottom: 30px;
	}
	.home-machine-list li{
		width: 48%;
	}
	.pron-ku{
		height: auto;
		line-height: initial;
	}
	.pron-more a{
		position: initial;
		margin: 30px auto;
	}
	.home-machine{
		height: auto;
		padding-bottom: 0px;
	}
	.home-news .news-list ul li .li-date{
		display: none;
	}
	.home-news .news-sort ul li{
		margin-bottom: 26px;
	}
	.news-list2{
		width: 100%;
	}
	.tit-area p{
		font-size: 24px;
	}
	.tit-area-dre{
		font-size: 16px;
	}
	.section-news{
		padding-top: 30px;
	}
	.ipro-tit span{
		font-size: 24px;
	}
	.ipro-tit span::before{
		height: 28px;
		top: 0;
	}
	.ipro-tit ul li{
		margin-bottom: 20px;
	}
	
	.ipro-tit{
		margin-bottom: 20px;
	}
	.ipro-main li{
		width: 100%;
	}
	.iabout-l, .iabout-r{
		width: 100%;
	}
	.iabout-l{
		margin-right: 0;
	}
	.iabout .tit-area{
		margin-bottom: 0;
	}
	.iabout-l p{
		margin-bottom: 20px;
	}
	.iabout-l ul li{
		font-size: 16px;
		margin-bottom: 20px;
	}
	.iabout-l{
		padding-top: 20px;
	}
	.iabout-r{
		margin-top: 20px;
	}
	.iabout-r img{
		width: 100%;
	}
	.iabout-btm li{
		width: 49%;
		margin-bottom: 20px;
	}
	.iabout-btm dl dt span{
		font-size: 30px;
	}
	.iabout-btm dl dd{
		font-size: 16px;
		margin-top: 20px;
		text-align: center;
	}
	.news-mbtm{
		padding: 20px 0;
	}
	.news-mbtm a{
		width: 40%;
	}
	.home-servicenew{
		height: 250px;
	}
	.servicenew-con span{
		padding-top: 48px;
	}
	.home-servicenew2{
		background-size: cover;
	}
	.servicenew-con a{
		height: 40px;
		line-height: 40px;
		width: 150px;
		font-size: 16px;
		margin-top: 20px;
	}
	.servicenew-con span{
		font-size: 24px;
		color: #fff;
	}
	.ipro-tit ul li{
		font-size: 16px;
		width: 29%;
		margin-left: 10px;
	}
	.ipro-main li h3{
		font-size: 16px;
		height: 60px;
	}
	.news-list2 ul li h3{
		font-size: 16px;
	}
	.section-news .solution-wrap{
		display: none;
	}
	.home-solution-list{
		display: block;
	}
	.home-solution-list .li-text h3, .home-machine-list li p {
	    font-size: 1.8rem;
	}
	.home-solution-list .li-text p{
		font-size: 1.4rem;
	}
	.section-news .inner-wrap{
		width: auto;
		padding: 0 15px;
	}
	.section-news .icon_arrow_r{
		display: none;
	}
}
