.detail-banner-out{
	width: 100%;
	height: 300px;
	position: relative;
	display: flex;
	align-items: center;
}
.about-banner-out{
	width: 100%;
	height: 600px;
	position: relative;
	display: flex;
	align-items: center;
}
.about-banner-img{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-ba-mark{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
	z-index: 8;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	gap: 30px;
}
.news-ba-name{
	font-size: 50px;
}
.news-ba-desc{
	font-size: 20px;
}


.news-out{
	width: 1200px;
	margin: 0 auto;
	margin-top: 80px;
}
.news-item{
	display: flex;
	align-items: center;
	gap: 50px;
	border-bottom: 1px solid #eee;
	padding: 20px 0;
}
.news-item:last-child{
	border: none;
}
.news-img-box{
	width: 200px;
	height: 150px;
	border-radius: 10px;
	overflow: hidden;
	display: block;
}
.news-img-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}
.news-img-box img:hover{
	transform: scale(1.1);
}
.news-conten{
	flex: 1;
	display: flex;
	flex-direction: column;
}
.news-img-title{
	font-size: 18px;
	transition: color 0.3s ease;
}
.news-img-desc{
	font-size: 14px;
	margin-top: 20px;
	text-align: justify;
	line-height: 30px;
	transition: color 0.3s ease;
	display: -webkit-box; 
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;

}
.news-conten:hover a{
	color: #ec4200;
}
.out-title{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}
.news-dtl{
	width: 1000px;
	margin: 80px auto;
	
}
.news-d-title{
	font-size: 20px;
	font-weight: bold;
}
.news-d-time{
	font-size: 14px;
	color: #666;
	margin-top: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}
.news-d-info{
	margin-top: 10px;
	text-align: justify;
	line-height: 40px;
}
.news-d-info div{
	text-align: justify;
	line-height: 40px;
}
.news-d-info img{
	max-width: 100%;
	height: auto;
	margin: 10px 0;
}


.page-out{
	width: 1200px;
	margin: 0 auto;
	margin-top: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination{
	display: flex;
	align-items: center;
}
.pagination li{
	display: block;
	width: 30px;
	height: 30px;
	border: 1px solid #eee;
	border-radius: 5px;
	margin: 0 2px;
	user-select: none;
}
.pagination li.active{
	border: 1px solid #ec4200;
	color: #ec4200;
}
.pagination li a, .pagination li span{
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination li a:hover{
	border: 1px solid #ec4200;
	color: #ec4200;
	border-radius: 5px;
}
.pagination li.disabled{
	background: #eee;
}
@media screen and (max-width: 1000px){
	.about-banner-out{
		height: 300px;
	}
	.pro-b-box{
		left: 10%;
	}
	.news-ba-name{
		font-size: 20px;
		margin-bottom: 0;
	}
	.news-ba-desc{
		font-size: 14px;
		text-align: center;
		line-height: 20px;
	}
	.news-ba-mark{
		padding: 0 20px;
	}
	.news-out{
		margin-top: 20px;
		width: calc(100% - 20px);
	}
	.news-img-box{
		width: 100px;
		height: 75px;
	}
	.news-item{
		gap: 10px;
		width: 100%;
		padding: 12px 0;
	}
	.news-img-title{
		font-size: 14px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.news-img-desc{
		font-size: 12px;
		margin-top: 10px;
		line-height: 20px;
	}
	.page-out{
		width: calc(100% - 20px);
		margin-top: 30px;
	}
	.spacedom{
		height: 40px!important;
	}
	.news-dtl{
		width: calc(100% - 20px);
		margin-top: 30px;
	}
	.news-d-title{
		line-height: 22px;
		font-size: 16px;
	}
	.news-d-info{
		line-height: 24px;
		font-size: 14px;
	}
}