.ldxx-container {
  margin-top: 50px;
}
.ldxx-container img {
  width: 100%;
}

/* 容器整体样式 */
.query-container {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #fcfcfc;
  padding: 15px 20px;
  margin-top: 40px;
}
.query-container div {
  display: flex;
  align-items: center;
}
.query-container .form {
  width: 70%;
}

.query-label {
  white-space: nowrap;
  color: #cf1c1c;
  margin-right: 10px;
  font-size: 1.8rem;
  margin-left: 20px;
}

.query-input {
  width: 100%;
  flex: 1;
  background: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 1.8rem;
  margin-right: 20px;
}

.query-button {
  width: 180px;
  padding: 8px 0px;
  border: none;
  border-radius: 6px;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.query-button--search {
  background-color: #f7b582; /* 浅橙色 */
  margin-right: 10px;
}

.query-button--search:hover {
  background-color: #e6a270; /* 按钮悬停效果 */
}

.query-button--write {
  background-color: #f08c70; /* 深橙色 */
}

.query-button--write:hover {
  background-color: #d87c63; /* 按钮悬停效果 */
}

.query-input {
  padding: 8px 8px 8px 30px;
  /* 给输入框左侧留空间 */
  background: #ffffff;
  font-size: 1.8rem;
  text-indent: 15px;
}

.query-input:focus {
  border-color: #c21d2f;
  outline: none;
}

/* 提交按钮样式 */
.submit-btn {
  background-color: #c21d2f;
  color: #fff;
  border: none;
  padding: 8px 80px;
  font-size: 1.8rem;
  cursor: pointer;

  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #a01523;
}

/* 表格基础样式 */

.table-container {
  width: 100%;
  min-height: 774px;
  margin: 20px auto;
  overflow-x: auto;
  background-color: #fff;
  font-size: 1.8rem;
}

/* 表格样式 */
.custom-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.custom-table thead {
  background-color: #f8f6f1;
  color: #060606;
}
.custom-table thead th:first-child {
  text-align: left;
}
.custom-table th,
.custom-table td {
  padding: 8px 16px;
  text-align: center;
  position: relative;
  font-weight: normal;
}
.custom-table td {
  padding: 12px 10px;
}
.custom-table td:nth-child(1) {
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 50%;
}
.custom-table td:nth-child(2) {
  width: 20%;
}
.custom-table td:nth-child(3) {
  width: 20%;
}
.custom-table td:nth-child(4) {
  width: 10%;
}
.custom-table td:nth-child(2),
.custom-table td:nth-child(3) {
  font-size: 1.6rem;
  color: #7a7a7a;
}

.custom-table th:not(:first-child) {
  text-indent: 5px;
}

.custom-table td:not(:first-child) {
  text-indent: 0px;
}
thead th:not(:last-child)::after {
  content: ""; /* 生成内容 */
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 7px; /* 模拟右侧空隙 */
  height: 100%;
  background-color: white; /* 覆盖背景颜色 */
}

thead th:last-child {
  width: 50px;
}

/* 状态列样式 */
.status {
  text-align: center;
}

.status.done {
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
}
@media (max-width: 830px) {
  .query-container {
    display: block;
  }
  .query-container .btn {
    margin-top: 15px;
  }
  .query-container .form,
  .query-container .btn {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 500px) {
  .time_ele {
    display: none;
  }
}
