.download-dropdown {
    margin-bottom: 20px;
    position: relative;
    width: 350px;
}
.download-dropdown:before {
    content: "\f107";
    font-family: 'icon-font' !important;
    color: #666666;
    position: absolute;
    right: 14px;
    top: 12px;
    font-size: 21px;
    transition: all .3s ease;
    line-height: 23px;
    z-index: 3;
}
.download-dropdown .form-control{
    width: 350px;
    min-width: 350px;
    display: inline-block;
    border-radius: 5px;
    height: 49px;
    font-size: 18px;
    color: #666666;
    background: #F6F6F6;
    margin:0;
    padding-right: 40px;
    padding-left: 15px;
    appearance: none;              
    -webkit-appearance: none;     
    -moz-appearance: none;  
    position: relative;   
    z-index: 2;
    cursor: pointer;
    transition: all .3s ease;
}
.download-line{
    height: 1px;
    width: 100%;
    background: #DDDDDD;
    margin-bottom: 30px;
    margin-top: 30px;
}
.download-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 17px;
}
.download-table .thead {
    display: table-header-group;
    background-color: #D4E9EE;
}
.download-table .tbody {
    display: table-row-group;
}
.download-table .tr {
    display: table-row;
    position: relative;
}
.download-table .th,
.download-table .td {
    display: table-cell;
    padding: 20px 30px;
    vertical-align: middle; 
    text-align: center; 
    line-height: 1.6;
    word-break: break-word; 
    border: 1px solid #E7E7E7;
    box-sizing: border-box;
}
.download-table .tr:first-child .th,
.download-table .tr:first-child .td {
    border-top: none;
}
.download-table .tr:last-child .th,
.download-table .tr:last-child .td {
    border-bottom: none;
}
.download-table .tr > .th:last-of-type,
.download-table .tr > .td:last-of-type {
    border-right: none;
}
.download-table .tr > .th:first-of-type,
.download-table .tr > .td:first-of-type {
    border-left: none;
}
.download-table .th {
    text-align: center;
    color: #1F1F1F;
    font-weight: 500;
    padding-top: 25px;
    padding-bottom: 25px;
}
.download-table .tr .td{
    background: #F0F0F0;
}
.download-table .tbody .tr:nth-child(even) .td {
    background-color: #F9F9F9;
}
.download-table .th:nth-child(1),
.download-table .td:nth-child(1) { 
    width: calc(100% - 150px); 
    text-align: left;
}
.download-table .th:nth-child(2),
.download-table .td:nth-child(2) { 
    width: 150px; 
}
.download-table .name {
    white-space: normal;
    width: 100%;
    font-size: 22px;
    color: #1F1F1F;
    font-weight: 500;
    transition: all .3s ease;
}
.download-table .tbody .tr:hover .name {
    color: #11AEB8;
}
.download-icon {
    display: block;
    width: 36px;
    height: 36px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.download-icon:before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url(../../images/common/download/download-icon.png) no-repeat;
    background-size: contain;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s ease;
    opacity: 1;
}
.download-icon:after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url(../../images/common/download/download-icon-hover.png) no-repeat;
    background-size: contain;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s ease;
    opacity: 0;
}
.download-table .tr:hover .download-icon:before{
    opacity: 0;
}
.download-table .tr:hover .download-icon:after{
    opacity: 1;
}
.download-table .cover {
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 80;
}
@media screen and (max-width: 1000px) {
    .download-dropdown {
        margin-bottom: 10px;
        margin-top: 0px;
    }
    .download-dropdown .form-control {
        min-width: unset;
        border-radius: 5px;
        height: 35px;
        font-size: 15px;
    }
    .download-dropdown:before {
        right: 22px;
        top: 6px;
        font-size: 17px;
    }
    .download-table .th:nth-child(1),
    .download-table .td:nth-child(1) { 
        width: calc(100% - 100px); 
    }
    .download-table .th:nth-child(2), .download-table .td:nth-child(2) {
        width: 100px;
    }
    .download-table .name {
        font-size: 18px;
    }
    .download-table .th {
        padding: 10px 15px;
    }
    .download-table .th, .download-table .td {
        padding: 10px 15px;
    }
}
@media screen and (max-width: 400px) {
    .download-dropdown {
        width: 100%;
    }
    .download-dropdown .form-control {
        min-width: 100%;
        width: 100%;
    }
}