.list-table003 table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.list-table003 table tr {
  border-bottom: 1px solid #e8eaee;
}

.list-table003 table tr th,
.list-table003 table tr td {
  padding: 0.2rem;
  font-size: 0.2rem;
  text-align: left;
}

.list-table003 table tr:nth-child(2n+1) {
  background-color: #f9fafb;
}

.list-table003 table tr:first-child {
  background-color: #eff6ff;
}

.list-table003 .search-layer {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  background-color: #f5f7fa;
  border: 1px solid #e8eaee;
  border-radius: 0.04rem;
  margin-bottom: 0.2rem;
}

.list-table003 .search-layer .search-label {
  white-space: nowrap;
}

.list-table003 .search-layer form {
  display: flex;
  flex: 1;
  max-width: 4rem;
}

.list-table003 .search-layer form .search-input {
  flex: 1;
  height: 0.4rem;
  padding: 0 0.15rem;
  border: 1px solid #dcdfe6;
  border-right: none;
  border-radius: 0.04rem 0 0 0.04rem;
  font-size: 0.2rem;
  outline: none;
}

.list-table003 .search-layer form .search-btn {
  height: 0.4rem;
  padding: 0 0.25rem;
  border: none;
  border-radius: 0 0.04rem 0.04rem 0;
  cursor: pointer;
  background-color: var(--ruifox-color-primary-1);
  color: #fff;
  font-size: 0.2rem;
  white-space: nowrap;
}

.list-table003 .search-layer .reset-btn {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  padding: 0 0.15rem;
  height: 0.4rem;
  border: 1px solid #dcdfe6;
  border-radius: 0.04rem;
  background: #fff;
  cursor: pointer;
  font-size: 0.2rem;
  color: #666;
  white-space: nowrap;
}

.list-table003 .search-layer .reset-btn i {
  font-size: 0.2rem;
}

@media (max-width: 1024px) {
  .list-table003 .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .list-table003 .table-wrap table {
    width: auto;
    min-width: 1000px;
  }

  .list-table003 .search-layer {
    flex-wrap: wrap;
  }

  .list-table003 .search-layer form {
    max-width: 100%;
  }
}