.news-list {
    margin: 0 -6px;
}
.news-list .item {
    width: 25%;
    padding: 0 6px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    /*max-width: 320px;*/
    /*margin: 0 auto 40px;*/
    /*background: #666b8a;*/
    max-width: 248px;
    margin: 10px auto;
}
.news-list .box:hover {
    background: #fff;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 10px;
}
/*.news-list .box:hover .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../images/hover.png') 100% 100% / 24% auto no-repeat;
}*/

.news-list .txt {
    position: relative;
    padding: 15px 20px;
    border-radius: 10px;
}
.news-list .box:hover .txt{
	background: #fff;
}
.news-list .name {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

.news-list .box:hover .description {
    color: #717071;
}
.news-list .description {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 60px;
    margin: 20px 0;
}
.news-list .date {
    display: block;
   /*- border: 1px solid #ccc;-*/
    border-width: 1px 0;
    color: #fff;
	font-weight:bold;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
}
.news-list .box:hover .date {
    border-color: #9c9c9c;
}

.news-detail .date {
    display: block;
    border-width: 1px 0;
    font-size: 15px;
	font-weight: bold;
    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;
    }
    .news-list .item {
        width: 50%;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@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;
    }
}