@charset "utf-8";
/*列表通用 index、news*/
.news-list .item .box{
    transition: all .3s ease;
    top: 0;
}
.news-list .pic{
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.news-list .date{
    color: #777;
    font-family: 'EB Garamond', serif;
}
.news-list .item .name{
    color: #3D3432;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.5;
    margin: 0 0 10px;
    font-family: 'Noto Serif TC', serif;
}
.news-list .box:hover .name{
    color: #231815;
}
.news-list .item .description{
    color: #555555;
    letter-spacing: 1.5px;
    line-height: 1.6;
}
/*type1*/
.news-list .btn.more{
    background: transparent;
    color: #271D1A;
    border: 1px solid rgba(35, 24, 21, 0.2);
    border-width: 1px 0;
    font-size: 16px;
    letter-spacing: 4px;
    border-radius: 0;
    font-family: 'Noto Serif TC', serif;
    text-align: left;
    padding-left: 8px;
}
.news-list .btn.more::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(35, 24, 21, 1);
    transition: all .5s ease;
}
.news-list .btn.more::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(35, 24, 21, 1);
    transition: all .5s ease;
}
.news-list .box:hover .btn.more:before,
.news-list .box:hover .btn.more:after {
    width: 100%;
}
.news-list .box:hover .btn.more{
    color: #271D1A;
    border-width: 1px 0;
    background: transparent;
}
.news-list .btn.more i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 5px;
    height: 5px;
    transition: all .5s ease;
}
.news-list .btn.more i::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -2.5px;
    margin-left: -2.5px;
    border: 1px solid #231815;
    border-width: 1px 1px 0 0;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    transition: all .3s ease;
}
.news-list .box:hover .btn.more i {
    right: 2px;
}
/*/type1*/
/*type2*/
.news-list.type2 .item {
    border-bottom: 1px solid #ddd;
}
.news-list.type2 .date {
    font-weight: normal;
}
.news-list.type2 .date .month,
.news-list.type2 .date .years {
    font-size: 18px;
    font-weight: normal;
}
/*/type2*/
/*type3*/
.news-list.type3 {
    margin: 0;
}
.news-list.type3 .item {
    border-left: 0;
    border-right: solid #ddd 1px;
}
.news-list.type3 .item:nth-of-type(3n){
    border-right: 0;
}
.news-list.type3:before {
    display: none;
}
.news-list.type3 .date{
    font-weight: normal;
}
.news-list.type3 .day,
.news-list .date .month,
.news-list .date .years{
    font-size: 18px;
    line-height: 2;
    margin: 0;
    font-weight: normal;
}
/*/type3*/
/*type4*/
.news-list.type4 {
    margin: 0 -10px;
}
.news-list.type4 .item {
    padding: 0 10px;
    margin-bottom: 40px;
}
.news-list.type4 .item .box{
    border: none;
    display: flex;
    flex-direction: column-reverse;
}
.news-list.type4 .pic {
    margin: 0 auto;
}
.news-list.type4 .txt {
    padding: 0 0 15px;
    min-height: unset;
}
.news-list.type4 .item .date {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 10px;
    padding: 0 0 0 calc(100% - 85px);
    width: fit-content;
    height: auto;
    border-radius: 0;
    color: #777;
    font-weight: normal;
    background: transparent;
    font-family: 'EB Garamond', serif;
    transition: all .3s ease;
    line-height: 1;
}
.news-list.type4 .item .date::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: calc(100% - 95px);
    height: 0.5px;
    background: rgba(35, 24, 21, 0.2);
    transition: all .3s ease;
}
.news-list.type4 .item .date::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0;
    height: 0.5px;
    background: #231815;
    transition: all .3s ease;
}
.news-list.type4 .item .box:hover .date::after{
    width: calc(100% - 95px);
}
.news-list.type4 .item .box:hover .date{
    color: #231815;
}
.news-list.type4 .item .date .day{
    display: inline;
    width: auto;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0;
    font-size: 17px;
    order: 3;
}
.news-list.type4 .date .day:before {
    content: '-';
}
.news-list.type4 .date .month {
    font-weight: normal;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0;
    font-size: 17px;
    order: 2;
}
.news-list.type4 .date .month:before {
    content: '-';
}
.news-list.type4 .date .years {
    font-weight: normal;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0;
    font-size: 17px;
    order: 1;
}
.news-list.type4 .item .description{
    display: none;
}
/*!列表通用 index、news*/
/*瀑布流*/
.masonry-list .item:nth-child(n),
.has-side .masonry-list .item:nth-child(n){
    clear: none!important;
}
/*!瀑布流*/
/*------------ detail-main ------------*/
.news-header{
    display: flex;
    flex-wrap: wrap;
}
.share_box{
    width: 100%;
    order: 3;
    text-align: left;
    margin: 15px 0;
}
.news-date{
    display: flex;
    color: #777;
    font-size: 18px;
    font-weight: normal;
    line-height: 26px;
    margin: 0 0 10px;
    font-family: 'EB Garamond', serif;
}
.news-date .day{
    order:3;
}
.news-date .month{
    order:2;
}
.news-date .month:before,.news-date .day:before{
    content: '-';
    display: inline-block;
}
.news-title{
    width: 100%;
    border: 1px solid #ddd;
    border-width: 1px 0;
    color: #231815;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 8px 0;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    font-family: 'EB Garamond', 'Noto Serif TC', serif;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1280px){
    .news-title {
        font-size: 18px;
    }
}
@media screen and (max-width: 1000px){
    .news-list .item .txt{
        padding: 0 5px 15px 5px;
    }
    .news-list.type4 .item .name{
        margin: 0;
    }
    .news-title {
        font-size: 16px;
    }
}
