.link-list {
    margin: 0 -36px -76px;
}
.link-list .item {
    width: 25%;
    padding: 0 36px;
}
.link-list .item a {
    max-width: 260px;
    margin: 0 auto 76px;
    background: #284428;
    padding: 10px;
    color: #72AC72;
    font-size: 13px;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
}
.link-list .item a:hover {
    background: #4F864F;
    color: #121F12;
}
.link-list .pic {
    position: relative;
}
.link-list .pic:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0.80) url(../images/links/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;
}
.link-list a:hover .pic:before {
    opacity: 1;
}
.link-list .pic img {
    width: 100%;
}
.link-list .title {
    background: url(../images/links/title.png) no-repeat;
    padding-left: 32px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 10px 0 0;
    min-height: 28px;
}
.link-list .url {
    color: #E5EA76;
    line-height: 32px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 32px;
}
.link-list .discription {
    letter-spacing: 0.35px;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
}

@media screen and (max-width: 1320px) {
    .link-list {
        margin: 0 -10px -36px;
    }
    .link-list .item {
        padding: 0 10px;
    }
    .link-list .item a {
        margin-bottom: 36px;
    }
}
@media screen and (max-width: 980px) {
    .link-list .item {
        width: 33.33%;
    }
}
@media screen and (max-width: 767px) {
    .link-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 520px) {
    .link-list .item {
        float: none;
        width: auto;
    }
}