.links-list {
    margin: 0 -10px;
}
.links-list .item {
    width: 25%;
    padding: 0 10px;
}
.links-list .item:nth-child(4n+1) {
    clear: left;
}
.links-list .box {
    margin: 0 auto 50px;
    max-width: 350px;
    text-align: center;
}
.links-list .box:hover {
}
.links-list .pic {
    position: relative;
    overflow: hidden;
}
.links-list .pic>a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.links-list .box:hover .pic>a:before {
    opacity: 1;
}
.links-list .txt {
    padding: 10px 0px;
}
.links-list .name {
    color: #5F5F5F;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 24px;
    border-bottom: 1px solid #B63437;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
}
.links-list .box:hover .name {
    color: #B63437;
    border-bottom: 1px solid #000000;
}
.links-list .url {
    color: #888;
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 20px;
}


@media screen and (max-width: 1260px) {
    .links-list .item {
        width: 33.33%;
    }
    .links-list .item:nth-child(4n+1) {
        clear: none;
    }
    .links-list .item:nth-child(3n+1) {
        clear: none;
    }
}
@media screen and (max-width: 768px) {
    .links-list {
        margin: 0 -7px;
    }
    .links-list .item {
        padding: 0 7px;
    }
    .links-list .item {
        width: 50%;
    }
    .links-list .item:nth-child(3n+1) {
        clear: none;
    }
    .links-list .item:nth-child(2n+1) {
        clear: none;
    }
}
@media screen and (max-width: 568px) {
    .links-list .item {
        width: 100%;
    }
    .links-list .item:nth-child(n) {
        clear: none;
    }
}