.news-list {
    margin: 0 -12px;
}
.news-list .item {
    width: 25%;
    padding: 0 12px;
}
.news-list .box {
    max-width: 360px;
    margin: 0 auto 30px;
    position: relative;
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}
.news-list .pic:before {
    content: '';
    display: block;
    background: url('../../images/common/news/hover.png') 50% 50% no-repeat rgba(0,0,0,0.75);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
        z-index: 1;
}
.news-list .box:hover .pic:before {
    opacity: 1;
}
.news-list .txt {
    position: relative;
    background: #f0f0f0;
    padding: 15px;
}
.news-list .more{
    display:block;
    font-family: 'Oswald', sans-serif;
    display:flex;
    justify-content: flex-end;
    align-content: center;
    margin-top: 15px;
    transition:all .3s ease;
}
.news-list .box:hover .more{
    color:#f9b700;
}
.news-list .more:after{
    z-index: 1;
    content: "\f054";
    font-size: 12px;
    font-family: 'icon-font'!important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: middle;
    color: #404a5b;
    width: 25px;
    height: 25px;
    line-height: 26px;
    text-align:center;
    border:1px solid #404a5b;
    border-radius: 100%;
    margin-left: 5px;
    transition:all .3s ease;
}
.news-list .box:hover .more:after{
    color:#fff;
    background:#f9b700;
    border-color:#f9b700;
}
.news-list .date {
    float: left;
    color: #fff;
    background: #0E589C;
    font-size: 15px;
    box-sizing: border-box;
    padding:0 10px;
    letter-spacing: 0;
    font-family: 'Oswald', sans-serif;
}

.news-list .name {
    color: #333;
    font-size: 16px;
    letter-spacing: 0;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 27px;
    margin-left: 95px;
    transition:all .3s ease;
}
.news-list .box:hover .name {
    color: #0e589c;
}
.news-list .description {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
    margin-top: 10px;
}
.news-list .box:hover .description {
    text-decoration: underline;
}

.news-detail .title {
    color: #222;
    font-size: 18px;
    text-align: center;
    font-weight: normal;
    margin: 0;
    line-height: 1.5;
}
.news-detail .title:after {
    content: '';
    display: block;
    border-left: 1px solid #0D0F59;
    height: 25px;
    width: 0;
    margin: 10px auto ;

}
.news-detail .date {
    display: block;
    margin: 0 auto 30px;
    color: #0D0F59;
    font-size: 15px;
    letter-spacing: 0;
    width: 134px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border: 1px solid #0D0F59;
    font-family: 'Oswald', sans-serif;
    transition: all .3s ease;
}
.news-detail .editor {
    padding-bottom: 15px;
}
/*----- propaganda -----*/
.news-list.propaganda .date{
    display: none;
}
.news-list.propaganda .name{
    margin-left: 0;
}
.news-detail.propaganda .date{
    display: none;
}
@media screen and (max-width: 1280px) {
    .news-list {
        max-width: 800px;
        margin: 0 auto;
    }
    .news-list .item {
        width: 50%;
        padding: 0 7px;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .news-list {
        margin: 0 -7px;
    }
    .news-detail .editor {
        padding-bottom: 0;
    }
}
@media screen and (max-width: 560px) {
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}