.table thead tr th, .table tbody tr td {
    vertical-align: middle;
    /*text-align: center;*/
    white-space: nowrap;/*规定段落的文本不进行换行*/
    overflow: hidden;/*超出隐藏*/
    text-overflow: ellipsis;/*隐藏的字符用省略号表示  IE*/
    -moz-text-overflow: ellipsis;/*隐藏的字符用省略号表示  火狐*/
}

table {
    table-layout:fixed;/*table的内部布局固定大小，才可以通过td的width控制宽度*/
    word-wrap:break-word; /*允许长单词换到下一行*/
}

/* 空数据提示 */
.empty-data-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty-data-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.empty-data-content img {
    width: 130px;
    height: 170px;
}
.empty-data-title {
    font-size: 25px;
    font-family: ArialMT-, ArialMT;
    font-weight: normal;
    color: #000000;
    margin-top: 15px;
}
.empty-data-desc {
    font-size: 18px;
    font-family: ArialMT-, ArialMT;
    font-weight: normal;
    color: #727272;
    margin-top: 5px;
}
