@charset 'utf-8';
.news-list {
    margin: 0 -15px;
}
.news-list .item {
    width: 25%;
    padding: 0 15px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 320px;
    margin: 0 auto 50px;
    overflow: hidden;
    background: #000;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}
.news-list .pic:before{
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    position: absolute;
    background:rgba(0,0,0,0.75);
    transition: all .6s ease;
    left: 0;
    top: 0;
    bottom:0;
}
.news-list .box:hover .pic:before{
    width: 100%
}
/*.news-list .pic img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.news-list .box:hover .pic img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}*/
.news-list .txt {
}
.news-list .date {
    display: block;
    background: url(../../images/common/news/date.png);
    width: 147px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    font-family: '新細明體', sans-serif;
    font-size: 16px;
    font-style: italic;
    margin: -20px auto 20px;
    padding-top: 9px;
    position: relative;
    z-index: 2;
    transition: all .6s ease;

}
.news-list .name {
    font-family: 微軟正黑體;
    color: #E5A755;
    font-size: 20px;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 46px;
    margin-bottom: 3px;
    position: relative;
}
.news-list .border{
    display: block;
    margin-bottom: 22px;
    position: relative;
}
.news-list .border:after {
    content: '';
    width: 0;
    height: 1px;
    background: #E5A755;
    position: absolute;
    top: calc(100% + 8px);
    left: 100%;
    transition: left .6s cubic-bezier(.25,.1,.25,1),width .3s cubic-bezier(.25,.1,.25,1) .3s
}
.news-list a:hover .border:after {
        width: 17px;
        left: 0;
        transition: width .6s cubic-bezier(.25,.1,.25,1)
    }
.news-list .description {
     font-family: 微軟正黑體;
    color: #636567;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 41px;
    transition: all .6s ease;
}
.news-list .box:hover .date{
    background: url(../../images/common/news/date_hover.png);
}
.news-list .box:hover .description {
    color: #FFFFFF;
}

.news-detail {
    padding: 0 6% 60px;
}
.news-detail .date {
    display: block;
    background: url(../../images/common/news/date.png);
    width: 147px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    font-family: '新細明體', sans-serif;
    font-size: 16px;
    font-style: italic;
    margin: -20px auto 20px;
    padding-top: 9px;
    position: relative;
    z-index: 2;
    transition: all .6s ease;
}
.news-detail .title {
    font-family: 微軟正黑體;
    color: #E5A755;
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    line-height: 1.2;
}
.news-detail .title:after {
    content: '';
    display: block;
    border-top: 1px solid #E5A755;
    width: 60px;
    margin: 45px auto 30px;
}

@media screen and (max-width: 1200px) {
    .news-list {
        margin: 0 -7px;
    }
    .news-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 1000px) {
    .news-list {
        max-width: 800px;
        margin: 0 auto;
    }
    .news-list .item {
        width: 50%;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
    .news-detail {
        padding: 0 4% 45px;
    }
}
@media screen and (max-width: 767px) {
    .news-list {
        margin: 0 -7px;
    }
    .news-list .box {
        margin-bottom: 30px;
    }
    .news-detail {
        padding: 0 15px 30px;
    }
}
@media screen and (max-width: 500px) {
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}