@import url(https://fonts.googleapis.com/css?family=Advent+Pro:700);
.links-list {
    margin: 0 -10px;
}
.links-list .item {
    width: 25%;
    padding: 0 10px;
}
.links-list .item:nth-child(4n+1) {
    
}
.links-list .box {
    max-width: 300px;
    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 .pic figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    font-family: 'Advent Pro', sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    padding: 0 10px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.links-list .item:nth-child(2n+1) .pic figcaption {
    background: rgba(0,16,64,0.75);
    color: #99DAEE;
}
.links-list .item:nth-child(2n) .pic figcaption {
    background: rgba(35,140,0,0.75);
    color: #fff;
}
.links-list .name {
    position: relative;
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 26px;
    margin: 0 0 8px 0;
    transition: all .5s;
}
.links-list .box:hover .name {
    color: #57B7F3;
}
.links-list .url {
    color: #8B8B8B;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: underline;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 15px;
}

@media screen and (max-width: 1200px) {
   
    .links-list .item {
        width: 33.33%;
    }
    .links-list .item:nth-child(4n+1) {
        clear: none;
    }
    .links-list .item:nth-child(3n+1) {
       
    }
}
@media screen and (max-width: 1000px) {
    .links-list .name{
        font-size: 16px;
        margin: 0 0 4px 0;
    }
    
}
@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: 20px;
    }
}
@media screen and (max-width: 530px) {
    .links-list .item {
        width: 100%;
    }
}