/* -------- link -------- */
.link-list {
    margin: 20px -20px 0;
}
.link-list li {
    width: 25%;
    text-align: center;
    padding: 0 20px;
    margin: 0 auto 40px;
    border-left: 1px solid #e5e5e5;
}
.link-list li .box {
    position: relative;
}
.link-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 30;
    font-size: 0;
}
.link-list li:nth-child(4n+1) {
    clear: left;
    border: 0;
}
.link-list li .box {
    margin: 0 auto;
    max-width: 300px;
}
.link-list li .pic {
    position: relative;
    box-sizing: border-box;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 10px;
}
.link-list li .pic:before,
.link-list li .pic:after {
    content: "";
    position: absolute;
    display: block;
    transition: all .5s ease;
    opacity: 0;
}
.link-list li .pic:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.5);
    z-index: 11;
}
.link-list li .pic:after {
    content: "\e1113";
    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: 15px;
    color: #fff;
    width: 32px;
    height: 32px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    line-height: 32px;
    z-index: 11;
    top: 0%;
    left: 50%;
    margin: -16px 0 0 -16px;
    transform: rotate(90deg);
    transition: all .5s ease;
}
.link-list li .box:hover .pic:before,
.link-list li .box:hover .pic:after {
    transition: all .5s ease;
    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: #444;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: normal;
    margin: 5px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .5s ease;
}
.link-list li .box:hover .name {
    color: #A33037;
}
/* -------- rwd -------- */
@media screen and (max-width: 1100px) {
    .link-list {
        margin: 0 -15px;
    }
    .link-list li {
        padding: 0 15px;
        margin: 0 auto 30px;
    }
    .link-list li .name {
        font-size: 16px;
    }
    .link-list li .pic {
        border-radius: 5px;
    }
}
@media screen and (max-width: 900px) {
    .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:nth-child(4n+1) {
        border-left: 1px solid #e5e5e5;
    }
    .link-list li:nth-child(3n+1) {
        border: 0;
    }
}
@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;
    }
    .link-list li:nth-child(3n+1) {
        border: 0;
    }
    .link-list li:nth-child(n+1) {
        border-left: 1px solid #e5e5e5;
    }
}
@media screen and (max-width: 400px) {
    .link-list {
        margin: 0;
    }
    .link-list li {
        width: 100%;
        margin: 0 0 20px;
    }
    .link-list li:nth-child(n+1) {
        border-left: 0;
    }
}