/*------------ 共用 ------------*/
.content-top {
    margin: 0 0 30px;
}
/*------------ /共用 ------------*/
/*------------ list ------------*/
.news-list {
    margin: 0 -20px;
}
.news-list .item {
    width: calc(100% / 4);
    padding: 0 20px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .item+.item {
    border-left: 1px solid #eee;
}
.news-list .box {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto 40px;
}
.news-list .item .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;
    max-width: 220px;
    margin: 0 auto;
}
.news-list .date {
    display: block;
    text-align: center;
    padding: 20px 0 10px;
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
    font-family: 'Marcellus', serif;
}
.news-list .date:before {
    content: "(";
    padding-right: 20px;
}
.news-list .date::after {
    content: ")";
    padding-left: 20px;
}
.news-list .name {
    text-align: center;
    color: #333;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0 0 5px;
    height: 28px;
    line-height: 28px;
    transition: all 0.3s ease;
}
.news-list .box:hover .name {
    color: #878787;
}
.news-list .description {
    text-align: center;
    color: #888;
    font-size: 14px;
    letter-spacing: 1.1px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 22px;
    line-height: 22px;
}
/*------------ /list ------------*/
/*------------ content ------------*/
.news-detail .title {
    text-align: center;
    color: #333;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 1px;
    margin: 0 0 20px;
}
.news-detail .date {
    display: block;
    text-align: center;
    padding: 0 0 10px;
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
    font-family: 'Marcellus', serif;
}
.news-detail .date::before {
    content: "(";
    padding-right: 20px;
}
.news-detail .date::after {
    content: ")";
    padding-left: 20px;
}
.news-detail .editor {
    position: relative;
    box-sizing: border-box;
}
/*------------ /content ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1000px) {
    /*list*/
    .news-list {
        margin: 0 -15px;
    }
    .news-list .item {
        width: 50%;
        padding: 0 15px;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
    .news-list .name {
        font-size: 16px;
        height: 25px;
        line-height: 25px;
    }
    .news-list .date:before {
        padding-right: 10px;
    }
    .news-list .date::after {
        padding-left: 10px;
    }
    /*/list*/
    /*content*/
    .news-detail .title {
        font-size: 18px;
    }
    /*/content*/
}