.scenery-list {
    margin: 0 -20px -76px;
}
.scenery-list .item {
    width: 33.33%;
    padding: 0 20px;
}
.scenery-list .item a {
    max-width: 390px;
    margin: 0 auto 76px;
    background: #5A6259;
    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;
}
.scenery-list .item a:hover {
    background: #AAB1A9;
}
.scenery-list .pic {
    position: relative;
}
.scenery-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;
}
.scenery-list a:hover .pic:before {
    opacity: 1;
}
.scenery-list .pic img {
    width: 100%;
}
.scenery-list .title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 15px;
    min-height: 28px;
}
.scenery-list a:hover .title {
    color: #192B18;
}

.scenery-detail .title {
    background: url(../images/scenery/title.png) no-repeat 25px 0;
    padding: 0 25px 6px 65px;
    color: #F7F7F7;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px dashed #416D3F;
    letter-spacing: 2px;
    margin-bottom: 40px;
}
.scenery-detail .editor {
    max-width: 1100px;
    margin: 0 auto;
}

@media screen and (max-width: 1320px) {
    .scenery-list {
        margin: 0 -10px -36px;
    }
    .scenery-list .item {
        padding: 0 10px;
    }
    .scenery-list .item a {
        margin-bottom: 36px;
    }
}
@media screen and (max-width: 1190px) {
    .scenery-detail .title {
        background-position: 0 0;
        padding: 0 0 6px 40px;
    }
}
@media screen and (max-width: 980px) {
    .scenery-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 520px) {
    .scenery-list .item {
        float: none;
        width: auto;
    }
}