.content {
    max-width: none;
}
.links-list {
    margin: 0px -10px 0;
    margin-bottom: 50px;
}
.links-list .item {
    width: 25%;
    padding: 0 10px;
}
.links-list .item a {
    margin: 30px auto 0;
    max-width: 230px;
    
}
.links-list .pic {
    margin-bottom: 6px;
    position: relative;
    border: solid 1px #ddd;
}
.links-list a:hover .pic:before{
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 0;
    top: 0;
}
.links-list a:hover .pic:after{
    content: '';
    background: url(../images/links/links_icon.png);
    display: block;
    width: 36px;
    height: 36px;
    margin: auto auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}
.links-list .title {
    color: #5c8f0f;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    max-height: 25px;
}
.links-list .item a:hover .title{color: #000;}
.links-list .txt {
    color: #666666;
    font-size: 14px;
    overflow: hidden;
    position: relative;
    max-height: 50px;
}




@media screen and (max-width: 767px) {
    .links-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 480px) {
    .links-list .item {
        width: 100%;
        margin: 0 auto;
        float: none;
    }
}