/*------------ download ------------*/
.download-list {
    margin: 80px -6px 0;
}
.download-list li:nth-child(6n+1) {
    clear: left;
}
.download-list li {
    width: calc(100% / 6);
    padding: 0 6px 35px;
}
.download-list li .box {
    max-width: 146px;
    margin: 0 auto;
    position:relative;
}
.download-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 15;
    font-size: 0;
}
.download-list .pic {
    position: relative;
    border: 10px solid #8E9E21;
}
.download-list .pic:before,
.download-list .pic:after {
    content: "";
    position: absolute;
    transition: all .2s;
    opacity: 0;
}
.download-list .pic:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 33, 10, .5);
    z-index:10;
}
.download-list .pic:after {
    content: "DOWNLOAD";
    font-family: 'Istok Web', sans-serif;
    font-size: 12px;
    color: #D8D7DC;
    font-weight: bold;
    width: 96px;
    line-height: 21px;
    border: 1px solid #D8D7DC;
    border-radius: 5px;
    top: 0;
    left: 50%;
    z-index:11;
    margin: -11px 0 0 -49px;
}
.download-list .box:hover .pic:before,
.download-list .box:hover .pic:after {
    transition: all .2s;
    opacity: 1;
}
.download-list .box:hover .pic:after {
    top: 50%;
}
.download-list li .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #335F1D;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin: 5px 0 0 0;
    transition: all .2s;
}
.download-list li .box:hover .name {
    color: #B97F03;
    text-decoration: underline;
    transition: all .2s;
}
/*------------ rwd ------------*/
@media screen and (max-width:1400px) {
    .download-list {
        max-width: 600px;
        margin: 80px auto 0;
    }
    .download-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .download-list li:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width:1100px) {
    .download-list {
        margin: 0px auto;
    }
}
@media screen and (max-width: 600px) {
    .download-list li {
        width: 50%;
    }
    .download-list li:nth-child(3n+1) {
        clear: none;
    }
    .download-list li:nth-child(2n+1) {
        clear: left;
    }
}