.link-list {
    max-width: 1440px;
    margin: 0 auto;
}
.link-list li {
    width: 25%;
	margin: 0px auto;
}
.link-list li a {
    max-width: 330px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.link-list .pic {
    height: auto;
    position: relative;
    margin-bottom: 8px;
	margin-left: 4px;
	margin-right: 4px;
}
.link-list .pic:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.link-list a:hover .pic:before {
    background: rgba(0,0,0,0.65) url(../images/links/hover.png) no-repeat 50% 50%;
    border: 3px solid #1755d0;

}
.link-list .link-name {
    font-size: 15px;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
	text-align: center;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.link-list a:hover .link-name {
    color: #0F42AC;
}
.link-list .link-url {
    color: #aaa;
    font-size: 13px;
}
.link-list a:hover .link-url {
    text-decoration: underline;
}

@media screen and (max-width: 1400px) {
    .link-list {
        max-width: 720px;
		margin-bottom: 40px;
    }
    .link-list li {
        width: 50%;
		margin: 0px 0%;
    }
}
@media screen and (max-width: 730px) {
    .link-list li {
        float: none;
        width: auto;
    }
    .link-list .pic {
        height: auto;
    }
}