/* ============================================
   内容区样式
   ============================================ */

.hall {
  padding: 50px 0 80px;
}

.hall * {
  transition: all 0.3s ease;
}

.section_head {
  text-align: center;
  margin-bottom: 44px;
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.section_head img {
  width: auto;
  height: 63px;
}

.section_head h2 {
  font-family: HYYakuHei;
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.36;
  letter-spacing: 0.92px;
  background: linear-gradient(180deg, #3A4460 10.27%, #111721 88.7%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: stretch;
  display: flex;
  justify-content: center;
}

.section-subtitle {
  align-self: stretch;
  color: #121212;
  text-align: center;
  font-family: "PingFang SC";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hall_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(126px, 1fr));
  gap: 16px;
}

.hall_card {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: #eff4ff;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hall_card:hover {
  background: #e2eaff;
}

.hall_card:hover h3 {
  font-size: 28px;
}

.hall_cover {
  width: 100%;
}

.hall_card h3 {
  color: #121212;
  text-align: center;
  font-family: "PingFang SC";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px; /* 121.429% */

}

.hall_card p {
  color: #606682;
  text-align: center;
  font-family: "PingFang SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.375;
}

@media screen and (max-width: 1360px) {
  .hall_card {
    padding: 28px 14px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1359px) {
  .hall_card {
    padding: 20px 14px;
  }

  .hall_card h3 {
    font-size: 24px;
    line-height: 24px;
  }

  .hall_card p {
    font-size: 14px;
  }

  .hall_card:hover h3 {
    font-size: 26px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hall_card {
    padding: 20px 14px;
  }

  .hall_grid {
    gap: 10px;
  }

  .hall_card h3 {
    font-size: 22px;
    line-height: 22px;
  }

  .hall_card p {
    font-size: 11.2px;
  }

  .hall_card:hover h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .section_head {
    gap: 12px;
  }

  .section-subtitle {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .section-subtitle {
    font-size: 14px;
  }

  .section_head h2 {
    font-size: 32px;
  }

  .hall_card {
    padding: 20px 14px;
  }

  .hall_grid {
    gap: 10px;
  }

  .hall_card h3 {
    font-size: 16px;
    line-height: 16px;
  }

  .hall_card:hover h3 {
    font-size: 18px;
  }

  .hall_card p {
    font-size: 11.1px;
  }
}