/* 所有表格容器的最小和最大高度 */
.fixed-table-container {
    min-height: 100px !important;
    max-height: 100%;
    overflow-y: auto;
}

/* 内容区域可滚动 */
.fixed-table-body {
    overflow-y: auto !important;
    transition: height 0.3s ease;
}

/* 可选：防止水平抖动 */
.fixed-table-body table {
    table-layout: fixed;
    width: 100%;
}

.table-action-img {
    height: calc(100% - 4px);
    width: auto;
    vertical-align: middle;
    max-height: 32px;
}
.imgTd {
	background-color: #eee
}
.clickable {
    cursor: pointer;
}
/* 1. 确保表头“操作”文字居中 */
th.operator-col .th-inner {
    text-align: center !important;
}

/* 2. 单元格内容居中（配合 align: 'center'） */
td.operator-col {
    text-align: center;
}

/* 3. 外层容器：关键！实现“视觉居中 + 内容左对齐” */
.op-container {
    /* 必须 inline-block 才能被 text-align: center 居中 */
    display: inline-block;
    zoom: 1;                  /* IE6/7/8 触发 hasLayout */
    *display: inline;         /* IE6/7 hack */

    /* 宽度设置：推荐固定宽度，适配窄列 */
    width: 90%;

    /* 内部内容左对齐，且不贴边 */
    text-align: left;
    padding-left: 10%;

    /* 防止内容溢出 */
    white-space: nowrap;
    box-sizing: border-box;   /* 虽 IE8 不支持，但现代浏览器可用 */
}

/* 4. 内部内容：按钮和图片水平排列 */
.op-content {
    white-space: nowrap;      /* 防止换行 */
    line-height: 1;           /* 统一垂直对齐基线 */
}

/* 5. 按钮和图片间距 */
.op-content .btn,
.op-content img {
    margin-right: 6px;
}

/* 注意：IE8 不支持 :last-child，此处仅现代浏览器可用 */
/* 如果需兼容 IE8，请在 JS 或 HTML 中控制最后一个元素无 margin */
.op-content .btn:last-child,
.op-content img:last-child {
    margin-right: 0;
}

/* 6. 图片样式 */
.op-content img {
    height: 24px;
    vertical-align: middle;   /* 与按钮垂直居中对齐 */
    cursor: pointer;
    border: 0;                /* 去除默认边框 */
}

/* 7. 按钮样式（可选：统一风格） */
.op-content .btn {
    padding: 3px 8px;         /* 小一点的按钮 */
    font-size: 12px;
    line-height: 1.2;
}
.op-container-detail {
	padding-left: 20%;
}

.para07 {
	background-color: #FFF3CD;
	color: #856404;
	padding: 2px 6px;
	border: 1px solid #FFC107;
	border-radius: 3px;
	font-size: 12px;
	margin-left: 10px;
}
.status-btn {
    display: inline-block;
    padding: 1px 5px;
    background-color: transparent;
    border: 1px solid;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-left: 10px;
}
.mailNoInfo {
	text-align: left;
	color:#63A4EC;
	padding: 15px 10px;
	display: inline-block;
}