.links-list {
    margin: 0 -7px;
}

.links-list .item {
    width: 25%;
    padding: 0 7px;
}

.links-list .item:nth-child(4n+1) {
    clear: left;
}

.links-list .box {
    max-width: 260px;
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
}

.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: 4px solid #EEEEEE;
    border-radius: 5px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.links-list .box:hover .pic {
    border-color: #634F4A;
}

.links-list .name {
    color: #60370A;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 24px;
}


@media screen and (max-width: 1000px) {
    .links-list {
        max-width: 800px;
        margin: 0 auto;
    }
    .links-list .item {
        width: 50%;
    }
    .links-list .item:nth-child(4n+1) {
        clear: none;
    }
    .links-list .item:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 767px) {
    .links-list {
        margin: 0 -7px;
    }
}

@media screen and (max-width: 400px) {
    .links-list .item {
        width: 100%;
    }
    .links-list .item:nth-child(n) {
        clear: none;
    }
}