/*------------ download ------------*/

.download-list {
    margin: 0 -9px;
}

.download-list li {
    width: 25%;
    padding: 0 9px 40px;
}

.download-list li:nth-child(4n+1) {
    clear: left;
}

.download-list li .box {
    display: block;
    max-width: 310px;
    margin: 0 auto;
    border-width: 5px 0;
    padding: 60px 15px 50px;
    box-sizing: border-box;
    position: relative;
}
.download-list li .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.download-list .pic {
    position: relative;
    max-width: 220px;
    margin: 0 auto;
}

.download-list .pic img {
    border-radius: 50%;
    overflow: hidden;
}

.download-list .pic a:after {
    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;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 10px;
    font-size: 21px;
    text-align: center;
    line-height: 50px;
    z-index: 100;
}

.download-list .pic a:before {
    content: "";
    display: block;
    transition: all .2s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: 15;
    opacity: 0;
}

.download-list li .text {
    max-width: 260px;
    margin: 0 auto;
    position: relative;
}

.download-list li .name a {
    line-height: 1.5;
    font-size: 16px;
    font-weight: bold;
    height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0 0 0;
}

/*------------ rwd ------------*/

@media screen and (max-width:960px) {
    .download-list li {
        width: 50%;
    }
    .download-list li:nth-child(3n+1) {
        clear: none;
    }
    .download-list li:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width:480px) {
    .download-list {
        margin: 0;
    }
    .download-list li {
        width: 100%;
        padding: 0 0 40px;
    }
}