body {
  font-family: Arial, sans-serif;
  padding: 0;
  margin: 0;
  color: #3D3D3D;
  background: #EEF8FF;
  font-weight: 400;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 26px;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0);
  padding: 10px 30px;
  box-sizing: border-box;
}

.container h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}


.top-form {
  display: flex;
  gap: 20px;
  align-items: end;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-section {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.form-section .form-item {
  flex-basis: 48%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.form-section .form-item div {
  display: block;
  margin-bottom: 5px;
}

.form-section input {
  /* width: 100%; */
  flex: 1;
  padding: 5px;
  box-sizing: border-box;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 0.5px solid #00000077;
  line-height: 22px;
  border-radius: 4px;

}

.search button {
  width: 70px;
  height: 34px;
}

/* #search-button {
  width: 70px;
  height: 34px;
  border-radius: 4px;
  box-sizing: border-box;
  border: 0.5px solid #00000074;
} */



table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  table-layout: fixed;
  word-wrap: break-word;
}

th {
  background: #F4F4F4;
  font-weight: 400;
}

td {
  border-bottom: 1px solid #ddd;
}

th,
td {
  padding: 12px 8px;
  text-align: center;
}

.pagination {
  text-align: center;
  padding-top: 15px;
}

.pagination button {
  margin: 0 5px;
  padding: 5px 10px;
}

@media (max-width: 768px) {


  .form-section .form-item {
    flex-basis: 100%;
    display: block;
  }

  .form-section input {
    width: 100%;
  }

  .search {
    min-width: 70px;
    width: 100%;
  }
}


/* Placeholder样式 */
::-webkit-input-placeholder {
  color: #AAA7A7;
  /* 使用浅灰色 */
  font-style: italic;
  /* 使用斜体 */
}

:-ms-input-placeholder {
  color: #AAA7A7;
  /* 使用浅灰色 */
  font-style: italic;
  /* 使用斜体 */
}

::placeholder {
  color: #AAA7A7;
  /* 使用浅灰色 */
  font-style: italic;
  /* 使用斜体 */
}