.news-list {
    margin: 0 -10px;
}
.news-list .item {
    width: 25%;
    padding: 0 10px;
}
.news-list .box {
    margin: 0 auto 50px;
    line-height: 1.65;
    background: #FFF;
    border: solid 2px #8Dc21f;
    text-align: left;
    max-width: 270px;
    border-radius: 15px;
}
.news-list .box:hover{
  border-color: #0062A9;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    border-radius: 13px;
}

.news-list .txt {
    padding: 0px 0px 30px;
    background: #FFF;
    position: relative;
    border-radius: 15px;
}
.news-list .date {
    display: block;
    color: #FFF;
    background: #6Ca2D4;
    font-size: 16px;
    padding: 5px 15px;
    box-sizing: border-box;
}
.news-list a:hover .date{
  background: #92C52A;
}
.news-list .name {
    color: #585755;
    font-size: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 29px;
    min-height: 29px;
    margin-bottom: 10px;
    line-height: normal;
    box-sizing: border-box;
    padding: 10px 15px;
}
.news-list .box:hover .name{
  color: #0061A9;
  font-weight: bold;
}
.news-list .description {
    color: #AAA;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.6;
    box-sizing: border-box;
    padding: 0 15px;
    max-height: 64px;
    min-height: 64px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}
.news-list a:hover .description{
  color: #585756;
}
.news-list .more{
    display: block;
    width: 52px;
    height: 51px;
    background: url(../images/news/more.png) no-repeat ;
    position: absolute;
    z-index: 11;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -25px;
    color: #FFF;
    font-size: 12px;
    text-align: center;
    line-height: 51px;
}
.news-list  .box:hover .more{
    background-position: 0 100%;

}

.news-header {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 52px;
    text-align: center;
}
.news-header .date {
    display: block;
    color: #00468C;
    font-size: 16px;
}
.news-header .title {
    line-height: normal;
    color:#585755;
    font-size: 24px;
    font-weight: bold;
    padding:20px  0 10px;
    position: relative;
}
.news-header .title:before{
    content: '';
    display: block;
    background: url(../images/news/news_line.png) no-repeat;
    width: 280px;
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.news-detail {
    padding-bottom: 20px;
}


@media screen and (max-width: 900px) {
    .news-list .item {
        width: 50%;
    }
    .news-header,
    .news-header .date,
    .news-header .title {
        display: block;
    }
}
@media screen and (max-width: 520px) {
    .news-list .item {
        width: 100%;
    }
}
