.download-list {
    margin-bottom: -32px;
}
.download-list li {
    width: 16.66%;
}
.download-list li a {
    width: 210px;
    margin: 0 auto 32px;
    text-align: center;
}
.download-list .pic {
    height: 210px;
    position: relative;
}
.download-list .pic:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    opacity: 0;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
}
.download-list a:hover .pic:before {
    opacity: 0.4;
}
.download-list h3 {
    border-bottom: 1px solid #555;
    font-size: 17px;
    font-weight: bold;
    color: #C09769;
    padding: 12px 0;
    margin-bottom: 16px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.download-list .icon {
    background-image: url(../images/download.png);
    width: 50px;
    height: 50px;
}

@media screen and (max-width: 1360px) {
    .download-list li {
        width: 20%;
    }
}
@media screen and (max-width: 1150px) {
    .download-list li {
        width: 25%;
    }
}
@media screen and (max-width: 920px) {
    .download-list li {
        width: 33.33%;
    }
}
@media screen and (max-width: 700px) {
    .download-list li {
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .download-list li {
        float: none;
        width: auto;
    }
    .download-list h3 {
        white-space: normal;
    }
}