.data-table {
    max-height: 1270px;
    overflow-y: auto;
}

.data-table::-webkit-scrollbar {
    width: 10px;
}

.data-table::-webkit-scrollbar-track {
    background-color: transparent;
    opacity: 0.2;
}

.data-table::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 5px;
}

.data-table table {
    border-bottom: 1px dashed #c0c1c0;
    text-align: center;
    table-layout: fixed;
}

.data-table table th {
    border-bottom: 4px solid #0062d1;
    height: 60px;
    line-height: 60px;
    background-color: #EFF8FE;
    color: #0062d1;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.data-table table td {
    word-wrap: break-word;
    border-left: 1px dashed #c0c1c0;
    border-top: 1px dashed #c0c1c0;
    height: 120px;
    font-weight: normal;
    font-size: 16px;
    color: #333;
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
}

.data-table table tr td:first-child {
    border-left: 1px solid transparent
}

.data-table table tr td:nth-child(2) {
    width: calc(100% - 595px);
}

.data-table table tr td:nth-child(2n+1) {
    position: relative;
    background-color: rgb(243, 243, 243)
}

.data-table table tr:hover td:nth-child(2n+1) {
    background-color: #fff;
}

.data-table table tr:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.data-table table tr:hover .table-index {
    display: none;
}

.down-icon {
    display: none;
}

.down-icon img {
    width: 32px;
    height: 38px;
}

.data-table table tr:hover .down-icon {
    display: inline-block;
}

.data-table table tr td .btnbg {
    margin-top: 5px;
    display: inline-block;
    width: 53px;
    height: 21px;
    line-height: 21px;
    text-align: center;
    background-image: url(../images/btnbox.png);
    background-size: 100% 100%;
    font-size: 14px;
    color: #fff;
    margin: 0 5px;
}

.data-table table tr td em {
    font-weight: bold;
    color: rgb(179, 20, 20);
}

.data-table table tr td .file-box {
    display: block;
}

.data-table table tr td .file-box li {
    padding: 5px 0;
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: #999;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.data-table table tr td .file-box li:hover {
    color: #c40605;
}