.banner h1{
	opacity: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: transform 1s,opacity 1s;
	transition: transform 1s,opacity 1s;
	font-size: 36px;
}
.banner.actived h1{
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}
.banner .inner{
	width: 1200px;
}




.sec1{
	padding: 5% 0;
}
.sec1 .inner{
	width: 1200px;
}
.sec1 ul{
	margin-bottom: 4.9%;
}
.sec1 li {
	padding: 5% 0;
	position: relative;
	border-bottom: 1px solid #ddd;
}
.sec1 li::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 1px;
	background-color: #ff6900;
	-webkit-transition: width 1.5s;
	transition: width 1.5s;
}
.sec1 li:hover::after{
	width: 100%;
}
.sec1 li a{
	width: 100%;
	-webkit-display: flex;
	-webkit-align-items: stretch;
	-webkit-justify-content: flex-start;
	-webkit-flex-direction: row;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-direction: row;
}
.sec1 li .img{
	width: 12%;
	margin-right: 5%;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}
.sec1 li .text-box{
	margin-right: 5%;
	-webkit-display: flex;
	-webkit-align-items: flex-start;
	-webkit-justify-content: space-between;
	-webkit-flex-direction: column;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}
.sec1 li .text-box .flex-box{
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	-webkit-flex-direction: row;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	width: 100%;
}
.sec1 li .text-box h5{
	color: #222;
	font-size: 20px;
	height: 1.1em;
	-webkit-transition: color 0.5s;
	transition: color 0.5s;
}
.sec1 li:hover .text-box h5{
	color: #ff6900;
}
.sec1 li .text-box p{
	font-size: 14px;
	color: #999;
	line-height: 2;
	max-height: 4em;
}
.sec1 li .time{
	width: 160px;
	border-left: 1px solid #ddd;
	-webkit-display: flex;
	-webkit-align-items: flex-end;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;
	-webkit-flex-shrink: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
	flex-shrink: 0;
}
.sec1 li .time h5{
	color: #939393;
	font-size: 34px;
  	font-family: "DIN-Medium";
  	font-weight: normal;
}
.sec1 li .time p{
	color: #939393;
	font-size: 16px;
	margin-bottom: 11.25%;
  	font-family: "DIN-Medium";
}
@media only screen and (max-width:1366px){
	.sec1 li .text-box p{
		line-height: 1.6;
	}
}

@media only screen and (max-width:1023px) {
	.banner h1{
		font-size: 1.5rem;
	}
	.sec1{
		padding: 3rem 0;
	}
	.sec1 ul{
		margin-bottom: 2rem;
	}
	.sec1 li {
		padding: 1rem 0;
	}
	.sec1 li .img{
		width: 16%;
	}
	.sec1 li .text-box{
		margin-right: 5%;
	}
	.sec1 li .text-box h5{
		font-size: 0.75rem;
	}
	.sec1 li .text-box p{
		font-size: 0.5625rem;
		max-height: 1.2em;
		line-height: 1.2;
	}
	.sec1 li .time{
		width: 17%;
	}
	.sec1 li .time h5{
		font-size: 1rem;
	}
	.sec1 li .time p{
		font-size: 0.6875rem;
	}
}