.link-list {
    max-width: 1100px;
    margin: 0 auto;
}
.link-list li {
    width: 33.33%;
}
.link-list li a {
    max-width: 325px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.link-list .pic {
    height: 142px;
    position: relative;
    margin-bottom: 8px;
}
.link-list .pic:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: 4px solid #FF732F;
}
.link-list a:hover .pic:before {
    background: rgba(0,0,0,0.80) url(../images/links/hover.png) no-repeat 50% 50%;
}
.link-list .link-name {
    font-size: 14px;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 16px;
}
.link-list a:hover .link-name {
    color: #FF722E;
}
.link-list .link-url {
    color: #aaa;
    font-size: 13px;
    min-height: 22px;
}
.link-list a:hover .link-url {
    text-decoration: underline;
}

@media screen and (max-width: 1080px) {
    .link-list {
        max-width: 720px;
    }
    .link-list li {
        width: 50%;
    }
}
@media screen and (max-width: 730px) {
    .link-list li {
        float: none;
        width: auto;
    }
    .link-list .pic {
        height: auto;
    }
    .link-list .link-name,
    .link-list .link-url {
        min-height: 0;
    }
}