.links-list {
    max-width: 1386px;
    margin: 0 auto;
}
.links-list .item {
    width: 20%;
    margin: 0 auto 30px;
    padding: 0 13px;
}
.links-list .item:nth-child(5n+1) {
    clear: left;
}
.links-list .box {
    max-width: 240px;
    margin: 0 auto ;
    border: 1px solid #C8C8C8;
    padding: 5px;
    overflow: hidden;
}
.links-list .pic{
    position: relative;
}
.links-list .pic:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}
.links-list .box:hover .pic:after {
    background: rgba(0,0,0,0.7);
    transition: all 0.3s;
}
.links-list .name {
    position: absolute;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 28px;
    z-index: 2;
    top: 50%;
    right: 15px;
    left: 15px;
    margin-top: -20px;
}
.links-list .box:hover .name {
    color: #FFED2A;
    transition: all 0.3s;
}

.links-list .btn-group {
    overflow: hidden;
}
.links-list .btn {
    width: 100%;
    line-height: 30px;
    color: #ef907d;
    font-size: 14px;
    padding: 0 12px;
    border-radius: 15px;
}
.links-list .btn:hover{
    color: #fff;
}
.links-list .btn.detail {
    background: #ffe8e3;
}
.links-list .btn.detail:hover {
    background: #ffb9ab;
}
.links-list a:hover .btn.detail {
    background: #ABB315;
}
.links-list .btn .ic {
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 16px;
    border: 1px solid transparent;
    padding: 0px 3px 0px 0;
    vertical-align: middle;
}

@media screen and (max-width: 1200px) {
    .links-list .item {
        width: 25%;
    }
    .links-list .item:nth-child(5n+1) {
        clear: none;
    }
    .links-list .item:nth-child(4n+1) {
        clear: left;
    }
}
@media screen and (max-width: 900px) {
    .links-list {
        max-width: 700px;
    }
    .links-list .item {
        width: 50%;
    }
    .links-list .item:nth-child(3n+1) {
        clear: none;
    }
    .links-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 560px) {
    .links-list {
        margin: 0 -7px;
    }
}
@media screen and (max-width: 460px) {
    .links-list .item {
        width: 100%;

    }
    .links-list {
        margin: 0 auto;
        max-width: 320px;
    }
}