.links-list {
    margin: 20px 40px 0;
}
.links-list .item {
    width: calc(100% / 5);
    padding: 0 15px;
}
.links-list .item:nth-child(5n+1) {
    clear: left;
}
.links-list .box {
    margin: 0 auto 40px;
    position: relative;
}
.links-list .item a.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;
    margin-bottom: 15px;
    display: block;
    border-radius: 10px;
}
.links-list .name {
    position: relative;
    box-sizing: border-box;
    color: #333;
    font-size: 22px;
    font-weight: 500;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    padding-left: 50px;
    height: 40px;
}
.links-list .name:before {
    content: "";
    width: 40px;
    height: 40px;
    background: #F0F0F0;
    border-radius: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .3s ease;
}
.links-list .name:after {
    content: "";
    position: absolute;
    left: 12px;
    top: 11px;
    width: 16px;
    height: 16px;
    background: url(../../images/common/links/links-icon.svg) no-repeat;
    background-size: contain;
    z-index:0;
    transition: all .3s ease;
}
.links-list .box:hover .name {
    color: #11ADB8;
}
.links-list .box:hover .name:before {
    background: #11ADB8;
}
.links-list .box:hover .name:after {
    filter: brightness(0) invert(1); 
}
/*----- rwd -----*/
@media screen and (max-width: 1000px) {
    .links-list {
        margin: 0 30px;
    }
    .links-list .item {
        width: 25%;
        padding: 0 15px;
    }
    .links-list .item:nth-child(5n+1) {
        clear: unset;
    }
    .links-list .item:nth-child(4n+1) {
        clear: left;
    }
    .links-list .name{
        font-size: 17px;
    }
}
@media screen and (max-width: 760px) {
    .links-list {
        margin: 0 -10px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .links-list .item {
        width: 50%;
        padding: 0 10px;
    }
    .links-list .item:nth-child(4n+1) {
        clear: unset;
    }
    .links-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 480px) {
    .links-list {
        max-width: 239px;
    }
    .links-list .item {
        width: 100%;
        padding: 0 10px;
    }
}