* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f1f2f3;
  color: #333;
}

.tool-wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 1560px;
  min-width: 1240px;
  margin: 25px auto;
  color: #333;
}

.header {
  text-align: center;
}

.header h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1a73e8;
}

.text-center {
  text-align: center;
  margin-bottom: 5px;
  color: #7a7a7a;
}

.search-box {
  margin: 25px 0;
  display: flex;
  justify-content: center;
}

.search-box input {
  width: 60%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  font-size: 16px;
  outline: none;
}

.search-box button {
  padding: 12px 40px;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 16px;
}

.search-box button:hover {
  background-color: #0d62c9;
}

#province-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 20px 0;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#province-list li {
  margin: 5px;
}

#province-list li a {
  display: block;
  padding: 8px 15px;
  background-color: #f1f2f3;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

#province-list li a:hover {
  background-color: #1a73e8;
  color: white;
}

.table-scroll {
  overflow-x: auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

#school-table {
  width: 100%;
  border-collapse: collapse;
}

#school-table th,
#school-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

#school-table th {
  background-color: #f8f9fa;
  font-weight: bold;
  position: sticky;
  top: 0;
}

#school-table .td-tit{
  text-align: center;
  font-weight: 700;
  color: #0d62c9;
  font-size: 18px;
}
#school-table tr:hover {
  background-color: #f5f5f5;
}

.footer {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer p {
  margin-top: 10px;
  color: #666;
}

.notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
}

.filter-tabs {
  display: flex;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.filter-tabs button {
  flex: 1;
  padding: 12px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
}

.filter-tabs button:hover {
  background-color: #f1f2f3;
}

.filter-tabs button.active {
  background-color: #1a73e8;
  color: white;
}
