.news-list {
    margin: 0 -6px;
}
.news-list .item {
    width: 100%;
    padding: 0 6px 10px 6px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 100%;
    margin: 0 auto;
}
.news-list .box .txt{
	display:flex;
	height: 30px;
	line-height:30px;
	align-items:center;
}
.news-list .box .txt .class{
	width:25%;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list .box .txt .name{
	width:75%;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list .box .txt .date{
	width:150px;
	min-width:100px;
}
.news-list .box:hover {
    background: #fff7f5;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}
.news-list .box:hover .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../../images/common/news/hover.png') 100% 100% / 24% auto no-repeat;
}

.news-list .txt {
    position: relative;
    padding: 5px 20px;
}
.news-list .name {
    color: #ff8566;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;

}
.news-list .box:hover .name,
.news-list .box:hover .description {
    color: #111;
}
.news-list .description {
    color: #383838;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
    margin: 8px 0 14px;
}
.news-list .date {
    display: block;
    border-width: 1px 0;
    color: #9a9a9a;
    font-size: 14px;
    text-align: center;
}
.news-list .box:hover .date {
    color: #1b2143;
    border-color: #9c9c9c;
}

.news-detail .date {
    display: block;
    border-width: 1px 0;
    color: #8490e0;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
    width: 100%;
}
.news-detail .title {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin: 1px auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #434253;
}

@media screen and (max-width: 850px) {
    .news-list {
        max-width: 720px;
        margin: 0 auto;
    }
   
}
@media screen and (max-width: 767px) {
    .news-list .box {
        margin-bottom: 30px;
    }
	
}
@media screen and (max-width: 580px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
	.news-list .box .txt{
		display:block;
		height:auto;
	}
	.news-list .box .txt .date{
		position:absolute;
		top:5px;
		right:5px;
		width:100px;
	}
	.news-list .box .txt .class{
		width:100%;
		padding-right:120px;
		margin-bottom:5px;
	}
	.news-list .box .txt .name{
		width:100%;
	}
	
	
}