/**!
 * 今日开标
 * date:2024-02-21
 * author: TH;
 */
.container {
    height: 100%;
    overflow: hidden;
}

.search-top {
    height: 32px;
    line-height: 32px;
    margin: 20px 0;
}

.datetime {
    width: 120px;
    height: 32px;
    padding-left: 10px;
    border: 1px solid #20528e;
    border-radius: 3px;
    box-sizing: border-box;
    background: #fff url("../images/subpage/date_ico.png") no-repeat 90px center;
}

.date-box .to {
    margin: 0 12px;
}

.search-box {
    height: 32px;
    border: 1px solid #20528e;
    border-radius: 3px;
    width: 200px;
    overflow: hidden;
}

.search-input {
    width: calc(100% - 32px);
    height: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    background-color: transparent;
}

.search-btn {
    width: 32px;
    height: 100%;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/subpage/query_ico.png');
}

.search-btn:hover {
    background-image: url('../images/subpage/query_icoh.png');
}

.pagerbox {
    height: 40px;
    text-align: center;
}

.table-box {
    height: calc(100% - 72px - 40px - 15px);
    overflow: auto;
}

.table-style {
    table-layout: fixed;
    width: 100%;
}

.table-style tr th {
    color: #fff;
    background-color: #1a79db;
    border: 1px solid #1a79db;
}

.table-style tr td {
    border: 1px solid #c1d5ed;
    background-color: #fff;
}

th,
td {
    height: 40px;
    padding: 0 6px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;

  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏超出容器的文本 */
  text-overflow: ellipsis; /* 当文本超出容器宽度时显示省略号 */
}