/* zc-detail-table.css
 * 详情页（*_detail*.jsp / *_deco.jsp 中的详情展示区）专用表格样式。
 * 从 custom/zc-easyui.css 中抽取并独立成文件，用于与全局定制样式区分维护。
 * 由 res/include/easyui-resources.jspf 统一加载（项目定制样式段，最后加载以覆盖官方主题）。
 * 详情页统一使用 <table class="detailTable"> 渲染字段键值。
 */

/* 详情表格容器 */
.detailTable {
    width: 100%;
    border: none;
}

/* 表头单元格（行内 th 与独立 th） */
.detailTable tr th {
    border: 1px solid #e7eaec;
    padding: 10px;
    text-align: center;
    width: 100px;
}

.detailTable th {
    border: 1px solid #e7eaec;
    padding: 10px;
    text-align: right;
    width: 100px;
}

/* 数据单元格 */
.detailTable tr td {
    border: 1px solid #e7eaec;
    padding: 5px;
    background: #fff;
    width: auto;
}

/* 详情表格内文本 / 选择输入控件最小宽度 */
.detailTable input[type="text"] {
    min-width: 180px;
}

.detailTable input[type="select"] {
    min-width: 180px;
}

/* 详情表格内下拉选择框样式 */
.detailTable select {
    position: relative;
    border: 1px solid #f6c1bc;
    background-color: #fff;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    height: 25px;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    -moz-border-radius: 0px 0px 0px 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
}
