.news-list {
    margin: 0 -20px;
}
.news-list .item {
    width: 25%;
    padding: 0 20px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 320px;
    margin: 0 auto 25px;
    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 .txt {
    position: relative;
    padding: 20px 12px;
    border:solid #CDCDCD;
    border-width: 0 2px 2px;
    background: #FFFFFF;
}
.news-list .date:before,
.news-header .date:before{
    content: 'DATE';
    display: inline-block;
    width: 60px;
    height: 25px;
    line-height: 25px;
    background: #C8493D;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;
    margin-right: 7px;
    margin-top: -3px;

}
.news-list .date ,
.news-header .date{
    display: block;
    font-family: EB Garamond;
    
    font-size: 15px;
    color: #C7483D;
    letter-spacing: 1px;
}

.news-list .name {
    color: #444444;
    font-size: 18px;
    font-weight: bold;
    font-family: Noto Serif TC;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 10px;
    transition: all .6s ease;
}
.news-list .box:hover .name{
    color: #C8493D;
}
.news-list .description {
    color: #858585;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 57px;
    margin-bottom: 15px;
}
.news-list .more {
    display: block;
    border:solid 1px #444444;
    border-radius: 5px;
    font-size: 17px;
    color: #333333;
    background: #fff;
    position: absolute;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr ;
    right: -10px;
    top: -10px;
    width: 32px;
    height: 87px;
    line-height: 30px;
    text-align: center;
    z-index: 2;
    transition: all .6s ease;
    display: none;
}
.news-list .more:before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 0;
    background: #CD6156;
    transition: all .6s ease;
    z-index: -2;
}
.news-list .box:hover .more {
    border-color: #993031;
    color: #FFFFFF;

}
.news-list .box:hover .more:before{
    height: 100%;
}
.news-header {
    max-width: 1000px;
    margin: 0 auto;
}

.news-header .title {
    color: #333;
    font-family: Noto Serif TC;
    font-weight: bold;
    font-size: 23px;
    line-height: 1.6;
    text-align: left;
    margin: 5px 0 15px;
}
.news-detail {
    padding: 28px 0;
    margin: 0px auto 0;
    max-width: 1000px ;
    border-top: solid 1px #A3514F;
}

@media screen and (max-width: 1300px) {
    .news-list {
        margin: 0 -7px;
    }
    .news-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 1000px) {
    .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 .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}