/*------------ link ------------*/
.links-list {
    margin: 0 -15px;
}
.links-list li {
    width: 25%;
    padding: 0 15px 50px;
}
.links-list li:nth-child(4n+1) {
    clear: left;
}
.links-list li .box {
    margin: 0 auto;
    max-width: 330px;
    box-sizing: border-box;
    transition: all .2s;
}
.links-list li .box .cover{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    font-size: 0;
}
.links-list li .pic {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}
.links-list li .pic a:before {
    content: "";
    border-radius: 10px;
    position: absolute;
    display: block;
    border: 2px solid #8DC220;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 200;
    transition: all .2s;
    opacity: 0;
}
.links-list li .box:hover .pic a:before {
    transition: all .2s;
    opacity: 1;
}
.links-list li .cover,
.links-list li .cover:after {
    position: absolute;
    display: block;
    transition: all .2s;
    opacity: 0;
}
.links-list li .cover {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    z-index: 100;
    border-radius: 10px;
}
.links-list li .cover:after {
    content: "\e1027";
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    color: #000000;
    top: 0%;
    left: 50%;
    margin: -12px 0 0 -12px;
}
.links-list li .box:hover .cover,
.links-list li .box:hover .cover:after {
    transition: all .2s;
    opacity: 1;
}
.links-list li .box:hover .cover:after {
    top: 50%;
}
.links-list li .pic img {
    position: relative;
    z-index: 10;
}
.links-list li .name {
    font-size: 15px;
    line-height: 1.2;
    color: #999999;
    text-align: center;
    margin: 15px 0 0;
}
.links-list li .name i {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #8DC220;
    font-size: 12px;
    color: #8DC220;
    text-align: center;
    line-height: 13px;
    box-sizing: border-box;
    margin: 0 10px 2px 0;
}
/*------------ rwd ------------*/
@media screen and (max-width:1280px) {
    .links-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .links-list li:nth-child(4n+1) {
        clear: none;
    }
    .links-list li:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 900px) {
    .links-list li {
        width: 50%;
    }
    .links-list li:nth-child(3n+1) {
        clear: none;
    }
    .links-list li:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 500px) {
    .links-list {
        margin: 0;
    }
    .links-list li {
        width: 100%;
        padding: 0 0 50px;
    }
}
