table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 8px;
  text-align: left;
  border: 1px solid black;
  border-collapse: collapse; /* 移除表格内边框间的间隙 */
}
th {
  background-color: #b0a5a5;
}
tr {
  white-space: nowrap;
  overflow: hidden; /* 防止内容溢出 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
}

.pageHeader {
  position: relative;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.refreshBtn {
  position: absolute;
  right: 20px;
  top: 12px;
  width: 56px;
  height: 25px;
  line-height: 25px;
  border: 1px solid seagreen;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 400;
  color: blue;
  cursor: pointer;
}
.dataTable {
  padding-top: 10px;
}
