.content-title2{
    margin-bottom: 30px;
}
.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: 254px;
    margin: 0 auto 40px;
}

.news-list .pic {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.news-list .pic img{
      -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
  
}
.news-list .box:hover .pic img{
      -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  
}
.news-list .box .txt:before {
    content: '';
    display: block;
    position: absolute;
    top:0px;
    left: 50%;
    margin-left: -13px;
    width: 26px;
    height: 20px;
    z-index: 2;
    opacity: 0;
    background: url('../../images/common/news/hover.png') no-repeat;
    transition: all .3s ease;

}
.news-list .box:hover .txt:before{
    opacity: 1;
    top: -13px;
}
.news-list .txt {
    position: relative;
    padding: 15px 20px;
    background: #FFFFFF;
    transition: all .3s ease;
    border-radius: 5px;
    margin-top: 10px;

}
.news-list .box:hover .txt{
    background: #FAFAFA;
}
.news-list .name {
    color: #111;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 20px;
    transition: all .3s ease;
}
.news-list .box:hover .name {
    color:#2FB59A;
}
.news-list .description {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
    margin: 5px 0 3px;
}
.news-list .date {
    display: block;
    color: #33C7AA;
    font-size: 12px;
    text-align: left;
    line-height: 30px;
    font-family: Oswald;
    font-weight: 600;
    transition: all .3s ease;
}
.news-list .box:hover .date {
    color: #111111;
}
.news-detail .date {
    display: block;
    color: #33C7AA;
    font-size: 12px;
    text-align: left;
    line-height: 30px;
    font-family: Oswald;
    font-weight: 600;
    transition: all .3s ease;
}
.news-detail .title {
    color: #111;
    font-size: 22px;
    font-weight: bold;
    text-align: left;
   
    margin: 0px auto 30px;
    padding-bottom: 20px;
    border-bottom: solid 1px #D7D7D7;
}

@media screen and (max-width: 1000px) {
    .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;
    }
    .news-detail{
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 767px) {
    .news-list .box {
        margin-bottom: 30px;
    }
    .news-detail .title{
        font-size: 17px;
    }
}
@media screen and (max-width: 580px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}