#app {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50;
    margin-top: 10px;
}

.even {
    background-color: hsla(0, 0%, 70%, .267)!important;
}

.odd {
    background-color: #fff!important;
}

table {
    width: 100%;
    margin: auto;
    border-collapse: collapse;
}

.container {
    width: 99%;
    height: 650px;
    overflow: auto;
    margin: 0 auto;
}

/* --------------------------- #t2 表格样式 --------------------------- */
#t2 td,
#t2 th {
    height: 30px;
    min-width: 150px;
    border: 1px solid #fff;
    padding: 8px;
}

#t2 thead th {
    height: 40px;
    position: sticky;
    top: 0;
    background-color: #007bff;
    color: white;
}

#t2 td:first-child {
    left: 0;
}

#t2 td:first-child,
#t2 td:nth-child(2) {
    min-width: 70px;
    position: sticky;
    z-index: 1;
    background-color: #f5f5f5;
}

#t2 td:nth-child(2) {
    left: 87px;
}

#t2 th.fixed-column:first-child {
    left: 0;
}

#t2 th.fixed-column:first-child,
#t2 th.fixed-column:nth-child(2) {
    min-width: 70px;
    position: sticky;
    z-index: 2;
    background-color: #007bff;
    color: white;
}

#t2 th.fixed-column:nth-child(2) {
    left: 87px;
}

/* --------------------------- 按钮与输入框样式 --------------------------- */
.tb_btn {
    margin-bottom: 10px;
    margin-top: 10px;
    height: 30px;
}

.tb_btn button {
    margin-left: 12px;
    height: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.tb_btn input {
    margin-left: 12px;
    height: 80%;
    width: 18%;
}

/* --------------------------- 标题样式（已修改，恢复专业蓝） --------------------------- */
.topHead {
    width: 60%; /* 原 30%，改为 60% */
    font-size: 16px; /* 原 12px，改为 16px */
    font-weight: 500; /* 新增：半粗体 */
    background-color: #007bff; /* 恢复专业蓝 */
    color: #fff; /* 保持白色文字 */
    padding: 15px 20px; /* 原 8px，增加内边距 */
    border: none; /* 原 1px solid #fff，移除边框 */
    border-radius: 8px; /* 新增：圆角 */
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2); /* 调整阴影颜色 */
    text-align: left; /* 原 center，改为左对齐 */
    margin: 30px auto; /* 原 0 auto，顶部添加 30px 间距 */
}

/* --------------------------- 媒体查询（响应式调整） --------------------------- */
@media screen and (max-width: 767px) {
    #t1 {
        margin: 0;
    }
    #t1 th {
        min-width: 20px;
    }
    .topHead {
        width: 95%; /* 原 30%，移动端改为 95% */
        font-size: 10px; /* 缩小字体 */
        padding: 10px 15px; /* 调整内边距 */
    }
}

/* --------------------------- #t1 表格样式 --------------------------- */
#t1 td {
    width: 5%;
    height: 20px;
    background-color: #fff;
}