.news-list li {
    width: 25%;
}
.news-list li a {
    width: 320px;
    margin: 0 auto 50px;
}
.news-list .pic {
    height: 240px;
    position: relative;
}
.news-list .pic:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 3px solid #fff;
}
.news-list a:hover .pic:before {
    border-color: #A6825B;
    -webkit-box-shadow:inset 1px 1px 10px 0 #303030;
            box-shadow:inset 1px 1px 10px 0 #303030;
}
.news-list .txt {
    padding: 10px 10px 20px;
}
.news-list .date {
    display: block;
    color: #ababab;
    font-weight: bold;
}
.news-list h3 {
    color: #A6825B;
    font-size: 18px;
    font-weight: bold;
    padding: 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list p {
    height: 69px;
    overflow: hidden;
    color: #818181;
}
.news-list a:hover p {
    text-decoration: underline;
}
.news-list .more {
    display: block;
    text-align: center;
    line-height: 33px;
    border: 1px solid #A6825B;
    color: #A6825B;
    -webkit-border-radius: 6px;
            border-radius: 6px;
}
.news-list a:hover .more {
    background: #A6825B;
    color: #fff;
}
.news-title {
    background: #C09769;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 32px;
    padding: 4px;
}
.news-date {
    display: block;
    text-align: center;
    color: #ababab;
    font-weight: bold;
    margin: 1em 0;
}

@media screen and (max-width: 1360px) {
    .news-list li {
        width: 33.33%;
    }
}
@media screen and (max-width: 1040px) {
    .news-list li {
        width: 50%;
    }
}
@media screen and (max-width: 710px) {
    .news-list li {
        float: none;
        width: auto;
    }
    .news-list li a {
        max-width: 320px;
        width: auto;
    }
    .news-list .pic,
    .news-list p {
        height: auto;
    }
    .news-list h3 {
        white-space: normal;
    }
}