/*------------ link ------------*/
.link-list li {
    width: calc(100% / 4);
    text-align: center;
    padding: 0 14px 25px;
}
.link-list li:nth-child(4n+1) {
    clear: left;
}
.link-list li .box {
    display: block;
    position: relative;
}
.link-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:105;
}
.link-list li .pic {
    position: relative;
    border: 1px solid #D7DDE8;
    box-sizing: border-box;
    max-width: 250px;
    padding: 5px;
    margin: 0 auto;
}
.link-list li .pic:before,
.link-list li .pic:after {
    content: "";
    position: absolute;
    display: block;
    transition: all .2s;
    opacity: 0;
}
.link-list li .pic:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: url('../../images/common/bg/bg03.png');
    z-index: 100;
}
.link-list li .pic:after {
    content: "\e1039";
    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: 20px;
    color: #929391;
    width: 45px;
    height: 45px;
    background: #FFFFFF;
    border-radius: 50%;
    line-height: 45px;
    z-index: 150;
    top: 0%;
    left: 50%;
    margin: -22px 0 0 -22px;
}
.link-list li .box:hover .pic:before,
.link-list li .box:hover .pic:after {
    transition: all .2s;
    opacity: 1;
}
.link-list li .box:hover .pic:after {
    top: 50%;
}
.link-list li .pic img {
    position: relative;
    z-index: 10;
}
.link-list li .name {
    color: #777777;
    margin: 5px;
    line-height: 1.6;
    height: 20px;
    font-size:15px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .2s;
}
.link-list li .box:hover .name {
    transition: all .2s;
    color: #9E66A2;
}
/*------------ rwd ------------*/
@media screen and (max-width:1150px) {
    .link-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .link-list li:nth-child(4n+1) {
        clear: none;
    }
    .link-list li:nth-child(3n+1) {
        clear: left;
    }
    .link-list li {
        padding: 0 0 20px;
    }
}
@media screen and (max-width:600px) {
    .link-list li {
        width: 50%;
    }
    .link-list li:nth-child(3n+1) {
        clear: none;
    }
    .link-list li:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width:400px) {
    .link-list {
        margin: 0;
    }
    .link-list li {
        width: 100%;
    }
}
