.content {
    max-width: 1280px;
}
.news-list {
    margin: 0 -7px;
}
.news-list .item {
    width: 25%;
    padding: 0 7px;
}
.news-list .box {
    max-width: 270px;
    margin: 0 auto 80px;
    position: relative;
    background: url('../images/news/box_bg.png');
}
.news-list .box:after {
    content: " ";
    background: url(../images/news/more.png) no-repeat;
    display: block;
    width: 54px;
    height: 54px;
    position: absolute;
    left: 50%;
    top: 100%;
    margin: -27px 0 0 -27px;
}
.news-list .box:hover:after {
    background-position: 0 100%;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}
.news-list .pic:before {
    content: '';
    display: block;
    background: rgba(255,255,255,0.5);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.news-list .box:hover .pic:before {
    opacity: 1;
    height: 100%;
}
.news-list .pic:after {
    content: '';
    display: block;
    background: url('../images/news/pic_cover.png') 0 100% repeat-x;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 120px;
}
.news-list .txt {
    padding: 0 20px 45px;
}
.news-list .date {
    display: block;
    position: relative;
    color: #B28500;
    font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
    font-size: 16px;
    line-height: 1.4;
    top: -20px;
    margin-bottom: -10px;
}
.news-list .name {
    color: #6B4F45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    height: 25px;
}
.news-list .description {
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 57px;
}

.news-detail {
    max-width: 1100px;
    margin: 0 auto 50px;
}
.news-detail .date {
    display: block;
    color: #B28500;
    font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
    font-size: 18px;
    text-align: center;
}
.news-detail .title {
    color: #6B4E45;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    max-width: 700px;
    margin: 25px auto 30px;
}
.news-detail .title:after {
    content: '';
    display: block;
    width: 50%;
    max-width: 28px;
    border-bottom: 2px solid #B69C8B;
    margin: 30px auto 0;
}

@media screen and (max-width: 980px) {
    .news-list {
        max-width: 760px;
        margin: 0 auto;
    }
    .news-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 600px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        padding: 0 6px;
    }
    .news-list .box {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 480px) {
    .news-list .item {
        width: 100%;
    }
}