/* 左侧提示框tooltip基本属性 */
.tooltipleft {
    width: 140px;
    height: auto;
    color: #fff;
    background: #2b2b2b;
    position: absolute;
    font-size: 12px;
    text-align: left;
    padding: 2px;
    line-height: 20px;
    visibility: visible;
    border-radius: 10px;
    z-index: 999;
}
/* 绘制小尖角 */
.tooltipleft::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 100%;
    margin-top: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid #2b2b2b;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    
  }

td {
    white-space: nowrap;
    /* 防止内容换行 */
    overflow: hidden;
    /* 隐藏溢出内容 */
    text-overflow: ellipsis;
    /* 当内容过长时使用省略号显示 */
    text-align: left;
    /* 左对齐内容 */
}

table {
    table-layout: auto;
    /* 自动调整列宽 */
    width: 100%;
    /* 设置表格宽度为父容器的100% */
}

th {
    white-space: nowrap;
    text-overflow: ellipsis;
    table-layout: fixed;
    text-align: left;
    /* 左对齐内容 */
}
