.download-list {
    margin: 0 -7px;
}
.download-list .item {
    width: 16.66%;
    padding: 0 7px;
}
.download-list .item:nth-child(6n+1) {
    clear: left;
}
.download-list .box {
    max-width: 320px;
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
}
.download-list .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;
    overflow: hidden;
    max-width: 150px;
    margin: 0 auto 8px;
    border: 4px solid #FDD9A2;
    border-radius: 50%;
}
.download-list .box:hover .pic {
    border-color: #FF420D;
}
.download-list .name {
    font-size: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 24px;
}
.download-list .box:hover .name {
    color: #03A1B8;
}
.download-list .name:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    background: #F97D02;
    border-radius: 50%;
    margin: 0 6px 3px 0;
}
@media screen and (max-width: 1000px) {
    .download-list .item {
        width: 25%;
    }
    .download-list .item:nth-child(6n+1) {
        clear: none;
    }
    .download-list .item:nth-child(4n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .download-list .item {
        width: 33.33%;
    }
    .download-list .item:nth-child(4n+1) {
        clear: none;
    }
    .download-list .item:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 480px) {
    .download-list .item {
        width: 50%;
    }
    .download-list .item:nth-child(3n+1) {
        clear: none;
    }
    .download-list .item:nth-child(2n+1) {
        clear: left;
    }
}