.tiyan {
	width: 100%;
	padding-top: 80px;
	padding-bottom: 120px;
	background-color: #f7f7f7;
}
.news{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.news1 {
	width: 427px;
	height: auto;
	background: #EBEBEB;
	/*border: 2px solid #E0E0E0;*/
	padding: 30px;
	transition: all .3s;
	margin-bottom: 60px;
}
.news1:hover{
	box-shadow: #cbcbcb -5px 7px 20px;
}
.news1 h1 {
	font-size: 24px;
	font-weight: 600;
	color: #61110A;
	/*word-break: keep-all;*/
	/*white-space: nowrap;*/
	/*overflow: hidden;*/
	/*text-overflow: ellipsis;*/
	margin-bottom: 20px;
}

.news1 p {
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	line-height: 30px;
	/* 设置文本只显示三行 */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	/* 设置文本超出部分省略 */
	text-overflow: ellipsis;
}
.news1:hover p{
	color: #61110A;
	transition: all .3s;
}
.news2 {
	display: flex;
	align-items: center;
	padding-top: 15px;
}
.news2 img{
	width: 15px;
	height: 15px;
}
.news2 p{
	font-size: 14px;
	font-weight: 400;
	color: #999999;
	margin-left: 10px;
}
.nnn{
	width: 427px;
}

@media screen and (max-width:1400px) {
	.news1{
		width: 30%;
	}
}
@media screen and (max-width:800px) {
	.news1{
		width: 48%;
	}
}
@media screen and (max-width:500px) {
	.news1{
		width: 100%;
		margin-bottom: 20px;
	}
}