@import url(https://fonts.googleapis.com/css?family=Advent+Pro:700);
.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: 290px;
    margin: 0 auto 40px;
    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;
}

.links-list .box .pic:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#263796), to(#263796)), -webkit-gradient(linear, left top, left bottom, from(#263796), to(#263796)), -webkit-gradient(linear, right top, left top, from(#263796), to(#263796)), -webkit-gradient(linear, left bottom, left top, from(#263796), to(#263796));
  background-image: -webkit-linear-gradient(left, #263796 0%, #263796 100%), -webkit-linear-gradient(top, #263796 0%, #263796 100%), -webkit-linear-gradient(right, #263796 0%, #263796 100%), -webkit-linear-gradient(bottom, #263796 0%, #263796 100%);
  background-image: -o-linear-gradient(left, #263796 0%, #263796 100%), -o-linear-gradient(top, #263796 0%, #263796 100%), -o-linear-gradient(right, #263796 0%, #263796 100%), -o-linear-gradient(bottom, #263796 0%, #263796 100%);
  background-image: linear-gradient(to right, #263796 0%, #263796 100%), linear-gradient(to bottom, #263796 0%, #263796 100%), linear-gradient(to left, #263796 0%, #263796 100%), linear-gradient(to top, #263796 0%, #263796 100%);
  background-position: left top, right top, right bottom, left bottom;
  background-size: 0 4px, 4px 0, 0 4px, 4px 0;
  background-repeat: no-repeat;
  transition: all .5s ease;
  box-sizing: border-box;
}

.links-list .box:hover .pic:after {
  background-size: 100% 4px, 4px 100%, 100% 4px, 4px 100%;
  transition: all .5s ease;
}

.links-list .name {
    color: #263796;
    font-size: 17px;
    font-weight: bold;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 5px;
}
.links-list .box:hover .name {
}
.links-list .url {
    color: #8B8B8B;
    font-size: 13px;
    line-height: 1.2;
    text-decoration: underline;
/*    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;*/
    height: 15px;
    word-break: break-all;
}

@media screen and (max-width: 1100px) {
    .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: 767px) {
    .links-list .item {
        width: 50%;
    }
    .links-list .item:nth-child(3n+1) {
        clear: none;
    }
    .links-list .item:nth-child(2n+1) {
        clear: left;
    }
    .links-list .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 530px) {
    .links-list .item {
        width: 100%;
    }
}