@charset "utf-8";
/*------------ list ------------*/
.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 {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto 48px;
}
.news-list li .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;
    box-sizing: border-box;
    overflow: hidden;
}
.news-list .pic img{
    width: 100%;
}
.news-list .txt {
    position: relative;
    box-sizing: border-box;
    margin: 15px 0 0;
    padding: 0 5px;
}
.news-list .name {
    position: relative;
    box-sizing: border-box;
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    margin: 0 0 10px;
    font-family: 'Noto Serif TC', serif;
    transition: all 0.3s ease;
}
.news-list .box:hover .name {
    color: #C0A981;
}
.news-list .date {
    display: block;
    text-align: left;
    margin: 5px 0 10px;
    color: #193B33;
    font-size: 18px;
    line-height: 1;
    margin-right: 50px;
    font-family: 'EB Garamond', serif;
    transition: all 0.3s ease;
}
.news-list .date b {
    color: #193B33;
    font-weight: normal;
    transition: all 0.3s ease;
}
.news-list .box:hover .date,
.news-list .box:hover .date b {
    color: #C0A981;
}
.news-list .description {
    color: #8B8B8B;
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}
.news-list .more {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
    margin: 15px 5px 0;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    background: #193B33;
    font-family: 'EB Garamond', serif;
    transition: all 0.3s ease;
}
.news-list .box:hover .more {
    color: #fff;
    background: #C0A981;
}
/*------------ /list ------------*/
/*------------ content ------------*/
.news-header,
.news-detail {
    max-width: 1280px;
    margin: 0 auto;
}
.news-header .title {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 1.45;
    padding: 0 0 20px;
    margin: 0;
    font-family: 'Noto Serif TC', serif;
}
.news-header .date {
    display: block;
    font-size: 18px;
    color: #193B33;
    max-width: 320px;
    margin: 0 auto 45px;
    text-align: center;
    font-family: 'EB Garamond', serif;
}
.news-header .date:before {
    content: 'DATE';
    display: inline-block;
    margin-right: 20px;
    color: #C0A981;
}
.news-detail {
    padding: 0 60px 45px;
    border-bottom: 1px solid #D6D6D6;
}
.share_box .share-link .btn {
    font-size: 28px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    margin: 2px 0;
}
.share_box .share-link .icon-ic-share-t,
.share_box .share-link .icon-ic-share-linecall,
.share_box .share-link .icon-ic-share-w {
    font-size: 28px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    margin: 2px 0;
    padding: 0;
}
/*------------ /content ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1440px) {
    .news-detail {
        padding: 0 15px 30px;
        margin: 0 -15px;
    }
}
@media screen and (max-width: 1280px) {
    .news-list {
        margin: 0 -15px;
    }
    .news-list .item {
        padding: 0 15px;
    }
}
@media screen and (max-width: 1200px) {
    .news-list .item {
        width: 33.33%;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 1000px) {
    .news-list {
        margin: 0 -10px;
    }
    .news-list .item {
        width: 50%;
        padding: 0 10px;
    }
    .news-list .item:nth-child(3n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
    .news-header .title {
        font-size: 16px;
    }
    .news-list .more{
        display: none;
    }
}