.news-list {
    margin: 0 -10px -45px;
}
.news-list .item {
    width: 25%;
    padding: 0 10px;
}
.news-list .item a {
    max-width: 300px;
    margin: 0 auto 45px;
    background: #2F4029;
    padding: 10px;
    color: #ccc;
    text-align: center;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
}
.news-list .item a:hover {
    background: #5A6A4A;
    color: #fff;
}
.news-list .pic {
    position: relative;
}
.news-list .pic:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0.5) url(../images/scenery/hover.png) no-repeat 50% 50%;
    opacity: 0;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
}
.news-list a:hover .pic:before {
    opacity: 1;
}
.news-list .pic img {
    width: 100%;
}
.news-list .title {
    overflow: hidden;
    line-height: 1.6;
    height: 44px;
    margin: 8px 0;
}
.news-list .date {
    color: #B3BA5F;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}
.news-list .date b {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    width: 52px;
    height: 52px;
    line-height: 52px;
    color: #ccc;
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0;
    border: 1px solid #E5EA76;
    background: #182918;
    margin-right: 5px;
    margin-top: -25px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}
.news-list a:hover .date b {
    background: #E5EA76;
    color: #43522B;
}

.news-detail .title {
    background: url(../images/news/title.png) no-repeat 30px 0;
    padding: 2px 30px 10px 74px;
    color: #F7F7F7;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px dashed #416D3F;
    letter-spacing: 2px;
    margin-bottom: 40px;
}
.news-detail .date {
    float: right;
    color: #B2B85F;
    font-size: 13px;
    margin-top: 5px;
    letter-spacing: 1px;
}
.news-detail .editor {
    max-width: 1090px;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .news-detail .title {
        background-position: 0 0;
        padding: 2px 0 10px 44px;
    }
}
@media screen and (max-width: 1100px) {
    .news-list .item {
        width: 33.33%;
    }
}
@media screen and (max-width: 767px) {
    .news-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 520px) {
    .news-list .item {
        float: none;
        width: auto;
    }
}