.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 30px;
    max-width: 233px;
    text-align: center;
}
.links-list .box:hover {}
.links-list .pic {
    position: relative;
}
.links-list .pic>a:before {
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    top: 100%;
    left: 0;
    right: 0;
}
.links-list .pic>a:after {
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    top: 100%;
    left: 0;
    right: 0;
    width: 0;
}
.links-list .box:hover .pic>a:after {
    width: 100%;
}
.links-list .txt {
    padding: 10px 0px;
}
.links-list .name a {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 28px;
    margin: 0 0 10px 0;
    transition: all .3s ease;
}
.links-list .url {
    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: 1000px) {
    .links-list .box {
        margin-bottom: 10px;
    }
}
@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;
    }
}