.roll-list{
	padding-bottom: 0px;
}
.news-content{
	width: 100%;
	padding: 30px 0;
}
.news-type{
	width: 100%;
}
.news-type p{
	font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    /* color: #1c18ad; */
    display: inline-block;
    position: relative;
    background-image: linear-gradient(180deg, #02d6ff, #1c18ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    padding-left: 2px;
}
.news-type p span{
	position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(180deg, #02d6ff, #1c18ad);
}
.news-all{
	width: 100%;
	padding-top: 30px;
}
.news-list{
	width: 100%;
	position: relative;
	padding: 10px;
	cursor: pointer;
	display: block;
	margin-bottom: 20px;
	transform: translateY(0px);
	transition: all 0.3s;
	border-bottom: 1px solid #ccc;
}
.news-list:hover{
	box-shadow: 0px 0px 3px #aaa;
	transform: translateY(-5px);
}
.news-list-content{
	position: relative;
	padding-left: 28%;
}
.news-list.no-left-img .news-list-content{
	padding-left: 0%;
}
.news-list.no-left-img .news-list-right{
	padding-left: 0px;
}
.news-list-left{
	position: absolute;
	top: 0;
	left: 0;
	width: 28%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.news-list.no-left-img .news-list-content .news-list-left{
	display: none;
}
.news-list-right{
	width: 100%;
	padding-left: 20px;
}
.news-list-name{
	font-size: 14px;
	font-weight: bold;
	line-height: 24px;
	height: 48px;
	-webkit-line-clamp: 2;
	text-align: justify;
}
.news-list-name span{
	display: inline-block;
	line-height: 24px;
	border: 1px solid #00d7ff;
	color: #00d7ff;
	padding: 0 10px;
	margin-right: 10px;
	font-size: 12px;
}
.news-list-detail{
	line-height: 24px;
	font-size: 12px;
	text-indent: 2em;
	text-align: justify;
	height: 96px;
	-webkit-line-clamp: 4;
}
@media (max-width:1000px){
	.news-list-detail{
		height: 40px;
		line-height: 20px;
		-webkit-line-clamp: 2;
	}
	.news-list-right{
		padding-left: 10px;
	}
	.news-list{
		padding: 10px 0px;
	}
	.news-list:hover{
		box-shadow: none;
		transform: translateY(0px);
	}
	.news-list-left{
		width: 32%;
	}
	.news-list-content{
		padding-left: 32%;
	}
	.news-content{
		padding-top: 20px;
	}
}