.download-list {
    max-width: 1100px;
    margin: 0 -5px;
}
.download-list .item {
    width: 25%;
    padding: 0 7px;

}
.download-list .item:nth-child(4n+1) {
    clear: left;
}
.download-list .box {
    max-width: 240px;
    margin: 0 auto 30px;
    
    overflow: hidden;
   
}
.download-list .box .border{
     border:solid 1px #DEE1E9;
     padding: 8px;
}
.download-list .box:hover {
    border-color: #FF732F;
}
.download-list .name {
    color: #485465;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-top: 8px;
}
.download-list .more{
    color: #3099E3;
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: block;
}
.download-list .more:before{
    content: '';
    display: inline-block;
    background: url(../../images/common/download/ic1.png);
    width: 18px;
    height: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 5px;

}
.download-list .more:after,.download-list .box:hover .more:before{
background: url(../../images/common/download/ic2.png);
}
.download-list .box:hover .more{
    color: #FF3F00;
}
@media screen and (max-width: 1000px) {
    .download-list .item {
        width: 33.33%;
    }
    .download-list .item:nth-child(n) {
        clear: none;
    }
    .download-list .item:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .download-list .box{
        margin-bottom: 20px;
    }
    .download-list .item {
        width: 50%;
    }
    .download-list .item:nth-child(n) {
        clear: none;
    }
    .download-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 480px) {
    
}
@media screen and (max-width: 400px) {
    .download-list .item {
        width: 100%;
    }
}