.app-con .t-con1 .body-data .data-update{
    width: 65px;
    height: 26px;
    background-color: white;
    border: 1px solid #DE3730;
    border-radius: 5px;
    cursor: pointer;
}
.app-con .t-con1 .body-data .data-update:hover{
    background-color: #DE3730;
    color: white;
}
.file-field tr:hover{
    background-color: #3c9cd81c;
}
.app-con .t-con1 .body-data .data-statistics{
    width: 70px;
    height: 26px;
    /*background-color: #fff200;*/
    /*border: 1px solid #e1deaf;*/
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    background-color: white;
    border: 1px solid #fff200;
}
.app-con .t-con1 .body-data .data-statistics:hover{
    background-color: #fff200;
    color: white;
}
.statistics-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background: #f0f0f0;
}
.statistics-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}