.main-title.Link{
    background-image: url(../../images/common/Links/main_title.png);
}
.links-list {
    margin: 60px -10px;
}
.links-list .item {
    width: 25%;
    padding: 0 10px;
}
.links-list .item:nth-child(4n+1) {
    clear: left;
}
.links-list .box {
    max-width: 260px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.links-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.links-list .pic {
    position: relative;
    overflow: hidden;
    border: 1px solid #47A38A;
    margin-bottom: 10px;
    outline: 0px solid #47A38A;
    transition: all .1s ease;
}
.links-list .box:hover .pic {
    outline: 3px solid #47A38A;
}
.links-list .name{
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .3s ease;
}
.links-list .box:hover .name{
    color: #47A38A;
}
.links-list .url{
    color: #929292;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .3s ease;
}
.links-list .box:hover .url{
    color: #47A38A;
    text-decoration: underline;
}
.links-list + .btn-box {
    padding-top: 30px;
}
@media screen and (max-width: 960px) {
    .links-list .item {
        width: 33.33%;
    }
    .links-list .item:nth-child(4n+1) {
        clear: none;
    }
    .links-list .item:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 660px) {
    .links-list .item {
        width: 50%;
    }
    .links-list .item:nth-child(3n+1) {
        clear: none;
    }
    .links-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 430px) {
    .links-list .item {
        width: 100%;
    }
}