.links-list {
    margin: 0 -25px;
}
.links-list .item {
    width: 50%;
    padding: 0 25px;
}
.links-list .item:nth-child(2n+1) {
    clear: left;
}
.links-list .box {
    margin: 0 auto 50px;
    max-width: 700px;
    position: relative;
    background: #FAFAFA;
    box-shadow: 0px 3px 20px 3px #0000001c;
    display: flex;
    padding: 45px 45px;
}
.links-list .box:before {
    content: "";
    width: 42px;
    height: 42px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #006E9C;
    transition: all .3s ease;
}
.links-list .box:hover:before {
    background: #E59D65;
}
.links-list .box:after {
    content: "";
    background: url(../../images/common/links/links-icon.svg);
    color: #FFF;
    position: absolute;
    right: 12px;
    bottom: 17px;
    width: 20px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
}
.links-list .box .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;
    width: 240px;
}
.links-list .txt {
    width: calc(100% - 240px);
    box-sizing: border-box;
    padding-left: 45px;
}
.links-list .name {
    color: #393939;
    font-size: 18px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 28px;
    position: relative;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    transition: all .3s ease;
}
.links-list .name:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #DCDCDC;
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 15;
    transition: all .3s ease;
}
.links-list .name:after {
    content: '';
    width: 40px;
    height: 1px;
    background: #006E9C;
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 15;
    transition: all .3s ease;
}
.links-list .box:hover .name:after {
    width: 100%;
}
.links-list .description {
    color: #5D5D5D;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    max-height: 135px;
    overflow: hidden;
    transition: all .3s ease;
    line-height: 1.8;
}
@media screen and (max-width: 1260px) {
    .links-list .item {
        width: 33.33%;
    }
    .links-list .item:nth-child(2n+1) {
        clear: unset;
    }
    .links-list .item:nth-child(3n+1) {
        clear: left;
    }
    .links-list {
        margin: 0 -15px;
    }
    .links-list .item {
        padding: 0 15px;
    }
    .links-list .box {
        flex-direction: column;
        padding: 30px 30px;
    }
    .links-list .pic {
        width: 100%;
        margin-bottom: 20px;
    }
    .links-list .txt {
        width: 100%;
        padding-left: 0;
    }
    .links-list .box:before {
        width: 30px;
        height: 30px;
    }
    .links-list .box:after {
        right: 8px;
        bottom: 10px;
        width: 15px;
        height: 10px;
    }
}
@media screen and (max-width: 768px) {
    .links-list {
        margin: 0 -7px;
    }
    .links-list .item {
        padding: 0 7px;
    }
    .links-list .item {
        width: 50%;
    }
    .links-list .item:nth-child(3n+1) {
        clear: unset;
    }
    .links-list .item:nth-child(2n+1) {
        clear: left;
    }
    
}
@media screen and (max-width: 568px) {
    .links-list .item {
        width: 100%;
    }
    .links-list .item:nth-child(n) {
        clear: none;
    }
}