/*------------ links ------------*/
.links-list {
    max-width: 1240px;
    margin: 60px auto 0;
}
.links-list .box{
    position: relative;
}
.links-list .box .cover{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    font-size: 0;
    z-index: 30;
}
.links-list .item {
    width: 20%;
    padding: 0 20px 50px;
}
.links-list .item:nth-child(5n+1) {
    clear: left;
}
.links-list .pic {
    border: 1px solid #B0B65A;
    max-width: 210px;
    margin: 0 auto 5px;
}
.links-list .name {
    height: 20px;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.links-list .box:hover .pic{
    opacity: .7;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1440px) {
    .links-list {
        max-width: 800px;
    }
    .links-list .item {
        width: calc((100% / 3) - 0.1px);
        text-align: center;
    }
    .links-list .item:nth-child(3n+1) {
        clear: left;
    }
    .links-list .item:nth-child(5n+1) {
        clear: none;
    }
}
@media screen and (max-width: 767px) {
    .links-list .item {
        padding: 0 10px 50px;
    }
}
@media screen and (max-width: 600px) {
    .links-list .item {
        width: 100%;
    }
}
