.ten_header {
  height: 541px;
  background: url(../images/ten_bg_header.png) no-repeat;
  background-size: 100% 100%;
}
.ten_header .ten_header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 38px;
}
.ten_header .ten_header_top .back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 46px;
  background-color: #e5ecff;
  border-radius: 23px;
  border: solid 1px #ffffff;
  font-size: 20px;
  color: #333;
  transition: all 0.3s;
}
.ten_header .ten_header_top .back:hover {
  transform: translateX(5px);
}
.ten_header .ten_header_title {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
.main {
  margin-top: 30px;
  margin-bottom: 80px;
}
.main .ten_head {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.main .ten_head li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 94px;
  background: url(../images/ten_bg_slide.png) no-repeat;
  background-size: 100% 100%;
  font-size: 30px;
  color: #111;
  cursor: pointer;
}
.main .ten_head li.on {
  height: 108px;
  background: url(../images/ten_bg_slide_on.png) no-repeat;
  background-size: 100% 100%;
  color: #fff;
  padding-bottom: 16px;
}
.main .ten_head .head_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 94px;
  background: url(../images/ten_bg_slide.png) no-repeat;
  background-size: 100% 100%;
  font-size: 30px;
  color: #111;
  cursor: pointer;
}
.main .ten_head .head_item a {
  color: #333;
}
.main .ten_body {
  height: 1207px;
  margin-top: 30px;
  background: url(../images/ten_bg_body.png) no-repeat;
  background-size: 100% 100%;
  padding: 30px;
}
.main .ten_body .classification {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.main .ten_body .classification li {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 25px;
  border: solid 1px #116ff6;
  cursor: pointer;
  font-size: 18px;
  color: #111;
  padding: 8px 20px;
}
.main .ten_body .classification li.active {
  color: #fff;
  background-color: #116ff6;
}
.main .ten_body .ten_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  margin-top: 35px;
  /* 序号列居中 */
  /* 信息事项列靠左对齐，更符合阅读习惯 */
  /* 最后一列单位名称 */
}
.main .ten_body .ten_table thead tr {
  background-color: #f7f7f7;
}
.main .ten_body .ten_table th,
.main .ten_body .ten_table td {
  padding: 19px 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.main .ten_body .ten_table th {
  font-weight: bold;
  color: #333;
  font-size: 20px;
}
.main .ten_body .ten_table td {
  color: #555;
  font-size: 18px;
}
.main .ten_body .ten_table td a {
  color: #555;
}
.main .ten_body .ten_table td a:hover {
  color: #015293;
}
.main .ten_body .ten_table td:first-child,
.main .ten_body .ten_table th:first-child {
  width: 80px;
}
.main .ten_body .ten_table td:nth-child(2) {
  text-align: left;
}
.main .ten_body .ten_table td:last-child,
.main .ten_body .ten_table th:last-child {
  width: 160px;
}
.main .ten_body #paginationContainer {
  margin-top: 60px;
}
.result-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #999;
  font-size: 14px;
}
.result-loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e0e0e0;
  border-top-color: #016bb5;
  border-radius: 50%;
  animation: result-spin 0.8s linear infinite;
}
@keyframes result-spin {
  to {
    transform: rotate(360deg);
  }
}
