@charset "UTF-8";
@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }

  .bg-body-tertiary {
    background: rgba(0, 0, 0, 0.18);
  }
}

body {
  min-height: 100vh;
}

/* ========== scene 报名场景轮播 ========== */
.scene {
  padding: 4rem 0;
}

.scene .scene-title {
  color: #3d3d3d;
  margin-bottom: 5rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.scene .scene-swiper {
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
}

.scene .scene-swiper .swiper-wrapper {
  align-items: stretch;
}

.scene .scene-swiper .swiper-slide {
  height: auto;
  aspect-ratio: 3/2;
  background: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: transform 0.3s;
}

.scene .scene-swiper .scene-controls .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scene .scene-swiper .scene-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  gap: 1rem;
  margin-top: 1.5rem;
  z-index: 9;
}

.scene .scene-swiper .swiper-pre,
.scene .scene-swiper .swiper-next {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 200;
  transition: background 0.2s;
}

.scene .scene-swiper .swiper-pre:hover,
.scene .scene-swiper .swiper-next:hover {
  background: #003a7a;
  color: #fff;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .scene {
    padding: 0rem 0;
    margin: 0;
  }

  .scene .scene-title {
    margin-bottom: 3rem;
  }

  .scene .scene-swiper {
    padding: 0 1.5rem;
  }

  .scene .scene-swiper .swiper-pre,
  .scene .scene-swiper .swiper-next {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 991.98px) and (min-width: 769px) {
  .scene {
    padding: 0rem 0;
  }

  .scene .scene-title {
    margin-bottom: 2rem;
  }

  .scene .scene-swiper {
    padding: 0 1rem;
  }

  .scene .scene-swiper .swiper-pre,
  .scene .scene-swiper .swiper-next {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 768px) {
  .scene {
    padding: 0 0 2rem 0 !important;
  }

  .scene-title {
    padding: 0rem 0 1rem 0 !important;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .scene {
    padding: 1.5rem 0;
  }

  .scene .scene-title {
    margin-bottom: 1rem;
  }

  .scene .scene-swiper {
    padding: 0 1rem;
  }

  .scene .scene-swiper .swiper-pre,
  .scene .scene-swiper .swiper-next {
    width: 2rem;
    height: 2rem;
  }
}

/* 移动端首页适配 */
@media (max-width: 990.98px) {

  /* 防止导航项文字换行 */
  .nav-link {
    white-space: nowrap;
  }

  .opration-title {
    white-space: nowrap;
  }
}

.banner {
  position: relative;
}

.banner .banner-pagination {
  width: 100%;
  position: absolute;
  top: 40%;
  display: flex;
  justify-content: space-between;
  z-index: 9;
  padding: 0 4rem;
}

.banner .banner-pagination .banner-pre,
.banner .banner-pagination .banner-next {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(35, 79, 115, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 3rem;
  font-weight: 200;
  transition: background 0.2s;
}

.banner .banner-pagination .banner-pre:hover,
.banner .banner-pagination .banner-next:hover {
  background: #003a7a;
  color: #fff;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .banner-pagination {
    padding: 0 2rem;
  }

  .banner-pagination .banner-pre,
  .banner-pagination .banner-next {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 991.98px) {
  .banner-pagination {
    padding: 0 1rem;
  }

  .banner-pagination .banner-pre,
  .banner-pagination .banner-next {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 767.98px) and (min-width: 576px) {
  .banner-pagination {
    padding: 0 0.5rem;
  }

  .banner-pagination .banner-pre,
  .banner-pagination .banner-next {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 575.98px) {

  /* banner在小屏幕上自适应裁剪 */
  .banner {
    overflow: hidden;
  }

  .banner img {
    min-height: 120px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .banner-pagination {
    padding: 0 0.25rem;
    top: 45%;
  }

  .banner-pagination .banner-pre,
  .banner-pagination .banner-next {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(35, 79, 115, 0.2);
  }

  /* 卡片在小屏幕上全宽 */
  .card {
    width: 100% !important;
    max-width: 100%;
  }
}

.business {
  padding: 2rem 0;
}

.business .container {
  max-width: none;
  margin: 0.75rem 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.business .row {
  width: 100%;
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.business .row>* {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  padding-top: 0;
  padding-bottom: 0;
}

.business .business-item {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  /* 背景暗色叠加层，确保白色文字可读 */
}

.business .business-item>img {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.business .business-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.business .business-item a .business-content {
  padding: 4rem 2rem;
}

.business .business-item a .business-content h1 {
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.business .business-item a .business-content h2 {
  font-weight: 400;
  color: #fff;
}

.business .business-item a .business-content .business-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2rem;
  color: #fff;
  transition: gap 0.2s;
}

.business .business-item a .business-content .business-link:hover {
  gap: 0.5rem;
}

.business .business-item a img {
  width: 40%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

@media (max-width: 1700px) and (min-width: 1200px) {
  .business .container {
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .business .row {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .business .row>* {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .business .business-item {
    width: 100%;
    height: 12rem;
    position: relative;
  }

  .business .business-item>img {
    position: absolute;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .business .business-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
  }

  .business .business-item a .business-content {
    padding: 1rem;
  }

  .business .business-item a .business-content h1 {
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .business .business-item a .business-content h2 {
    font-weight: 400;
    color: #fff;
  }

  .business .business-item a .business-content .business-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.5rem;
    color: #fff;
  }

  .business .business-item a img {
    width: 40%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 1200px) {
  .business .container {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .business .row {
    padding: 0.5rem;
  }

  .business .row>* {
    padding: 0.5rem;
  }

  .business .business-item {
    width: 100%;
    position: relative;
  }

  .business .business-item>img {
    position: absolute;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .business .business-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
  }

  .business .business-item a .business-content {
    padding: 1rem;
  }

  .business .business-item a .business-content h1 {
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .business .business-item a .business-content h2 {
    font-weight: 400;
    color: #fff;
  }

  .business .business-item a .business-content .business-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 3rem;
    color: #fff;
  }

  .business .business-item a img {
    height: 100%;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .scene {
    margin-top: 12rem;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .scene {
    margin-top: 0rem;
  }
}

/* 手机端 business 适配 */
@media (max-width: 992px) {
  .scene {
    margin-top: 0rem;
  }

  .business {
    padding: 0rem 0;
    overflow: hidden;
  }

  .business .container {
    margin: 0.5rem 0.5rem;
  }

  .business .row {
    width: 100%;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .business .row>* {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .business .business-item {
    aspect-ratio: auto;
  }

  .business .business-item a .business-content {
    padding: 0.5rem;
  }

  .business .business-item a .business-content h1 {
    margin-bottom: 0.25rem;
  }

  .business .business-item a .business-content h2 {
    margin-top: 1rem;
  }

  .business .business-item a .business-content .business-link {
    margin-top: 3rem;
  }

  .business .business-item a img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media (max-width: 576px) {
  .business a .business-content h2 {
    margin-top: 0.5rem;
  }

  .business a .business-content .business-link {
    margin-top: 1.5rem;
  }

  .business a img {
    width: 28%;
  }
}

/* ========== schedule 招生计划 ========== */
.schedule {
  padding-bottom: 6rem;
  position: relative;
  background: linear-gradient(111deg, #55befc 3%, #0250a3 99%);
}

.schedule .bg {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.schedule .schedule-title {
  text-align: center;
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  font-weight: bold;
  padding: 4.5rem 0;
  color: #fff;
  position: relative;
  z-index: 2;
}

.schedule .container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 96rem;
  position: relative;
  z-index: 2;
}

.schedule .schedule-left {
  flex: 2;
  flex-shrink: 0;
  background: #fff;
  overflow: hidden;
  margin-right: 1rem;
}

.schedule .schedule-left .schedule-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.schedule .schedule-left .schedule-table thead th {
  background: #004da1;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 1rem 1.5rem;
  white-space: nowrap;
  font-size: 1.125rem;
}

.schedule .schedule-left .schedule-table thead th:nth-child(1) {
  width: 26%;
}

.schedule .schedule-left .schedule-table thead th:nth-child(2) {
  width: 14%;
}

.schedule .schedule-left .schedule-table thead th:nth-child(3) {
  width: 14%;
}

.schedule .schedule-left .schedule-table thead th:nth-child(4) {
  width: 20%;
}

.schedule .schedule-left .schedule-table thead th:nth-child(5) {
  width: 26%;
}

.schedule .schedule-left .schedule-table-swiper {
  width: 100%;
  height: 20rem;
  overflow: hidden;
}

.schedule .schedule-left .schedule-table-swiper .swiper-wrapper {
  width: 100%;
}

.schedule .schedule-left .schedule-table-swiper .swiper-slide {
  width: 100%;
  height: auto;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body tbody tr {
  border-bottom: 1px solid #eee;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body tbody tr:last-child {
  border-bottom: none;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body td {
  color: #333;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body td:first-child {
  color: #666;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body td:nth-child(1) {
  width: 26%;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body td:nth-child(2) {
  width: 14%;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body td:nth-child(3) {
  width: 14%;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body td:nth-child(4) {
  width: 20%;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body td:nth-child(5) {
  width: 26%;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body .btn-booking {
  background: #d4811a;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.schedule .schedule-left .schedule-table-swiper .schedule-table-body .btn-booking:hover {
  background: #b86500;
}

.schedule .schedule-right {
  flex: 1;
  flex-shrink: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.schedule .schedule-right .schedule-right__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  z-index: 3;
}

.schedule .schedule-right .schedule-right__badge::before {
  content: "招生进行中";
  position: absolute;
  top: 1rem;
  left: -3rem;
  width: 10rem;
  height: 1.75rem;
  background: #ff5722;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
}

.schedule .schedule-right h1 {
  padding: 2.5rem 0 1.5rem;
  font-size: 1.75rem;
  font-weight: bold;
  color: #333;
  position: relative;
  z-index: 2;
  text-align: center;
}

.schedule .schedule-right form {
  height: 100%;
  padding: 0 2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.schedule .schedule-right input {
  width: 100%;
  height: 2.75rem;
  border: 1px solid #d6d6d6;
  padding: 0 1rem;
  outline: none;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.schedule .schedule-right input:focus {
  border-color: #004da1;
}

.schedule .schedule-right input::-moz-placeholder {
  color: #bbb;
}

.schedule .schedule-right input::placeholder {
  color: #bbb;
}

.schedule .schedule-right button {
  width: 100%;
  height: 2.75rem;
  background: #004da1;
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s;
}

.schedule .schedule-right button:hover {
  background: #003a7a;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .schedule .schedule-title {
    padding: 3rem 0;
  }

  .schedule .schedule-left .schedule-table thead th {
    padding: 0.875rem 1rem;
  }

  .schedule .schedule-left .schedule-table-body td {
    padding: 0.875rem 1rem;
  }

  .schedule .schedule-right h1 {
    padding: 2rem 0 1.25rem;
    font-size: 1.5rem;
  }

  .schedule .schedule-right form {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .schedule .schedule-title {
    padding: 2.5rem 1rem;
  }

  .schedule .container {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .schedule .schedule-left {
    width: 100%;
    overflow-x: auto;
  }

  .schedule .schedule-left .schedule-table,
  .schedule .schedule-left .schedule-table-swiper {
    min-width: 640px;
  }

  .schedule .schedule-left .schedule-table thead th {
    padding: 0.875rem 1rem;
  }

  .schedule .schedule-left .schedule-table-body td {
    padding: 0.75rem 1rem;
  }

  .schedule .schedule-left .btn-booking {
    padding: 0.375rem 0.875rem;
  }

  .schedule .schedule-right {
    width: 100%;
  }

  .schedule .schedule-right h1 {
    padding: 2rem 0 1.25rem;
    font-size: 1.5rem;
  }

  .schedule .schedule-right form {
    padding: 0 1.5rem 1.5rem;
  }

  .schedule .schedule-right input {
    height: 2.5rem;
  }

  .schedule .schedule-right button {
    height: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .schedule .schedule-title {
    padding: 1.5rem 0.75rem;
  }

  .schedule .schedule-right .schedule-right__badge {
    width: 5rem;
    height: 5rem;
  }

  .schedule .schedule-right .schedule-right__badge::before {
    top: 1rem;
    left: -1.75rem;
    width: 8rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }

  .schedule .schedule-right h1 {
    padding: 1.5rem 0 1rem;
    font-size: 1.25rem;
  }

  .schedule .schedule-right form {
    padding: 0 1rem 1rem;
    gap: 0.875rem;
  }

  .schedule .schedule-right input {
    height: 2.25rem;
  }

  .schedule .schedule-right button {
    height: 2.25rem;
  }
}

/* ========== environment 教学环境 ========== */
.environment {
  padding: 4rem 0;
  background: #f5f7fa;
}

.environment .environment-title {
  text-align: center;
  margin-bottom: 5rem;
  margin-top: 3rem;
}

.environment .environment-title h1 {
  color: #3d3d3d;
  font-weight: bold;
  text-align: center;
}

.environment .environment-title p {
  margin: 1rem 0;
  color: #3d3d3d;
  padding: 0 2rem;
}

.environment .environment-swiper {
  width: 100%;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
}

.environment .environment-swiper .swiper-slide {
  background: linear-gradient(135deg, #d0d9e6, #e8ecf1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.environment .environment-swiper .swiper-slide .environment-item {
  width: 100%;
}

.environment .environment-swiper .swiper-slide .environment-item .environment-item-img {
  width: 100%;
  overflow: hidden;
}

.environment .environment-swiper .swiper-slide .environment-item .environment-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.environment .environment-swiper .swiper-slide .environment-item .environment-item-content {
  text-align: center;
  padding: 1.5rem 0;
}

.environment .environment-swiper .env-pagination {
  text-align: center;
  padding-top: 1.5rem;
}

.environment .environment-swiper .env-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.environment .environment-swiper .env-pagination .swiper-pagination-bullet-active {
  background: #004c9f;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .environment .environment-title {
    margin-bottom: 3rem;
    margin-top: 2rem;
  }

  .environment .environment-swiper {
    padding: 0 1.5rem;
  }
}

@media (max-width: 991.98px) and (min-width: 769px) {
  .environment {
    padding: 3rem 0;
  }

  .environment .environment-title {
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
  }

  .environment .environment-title p {
    padding: 0 1rem;
  }

  .environment .environment-swiper {
    padding: 0 1rem;
  }

  .environment .environment-swiper .environment-item-content {
    padding: 1rem 0;
  }
}

@media (max-width: 576px) {
  .environment {
    padding: 2rem 0;
  }

  .environment .environment-title {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
  }

  .environment .environment-swiper {
    padding: 0 1rem;
  }

  .environment .environment-swiper .swiper-slide .environment-item .environment-item-img {
    height: 14rem;
  }
}

.introdution {
  padding: 4rem 0;
  background: #f5f7fa;
}

.introdution .environment-title {
  text-align: center;
  margin-bottom: 6rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.introdution .environment-title h1 {
  color: #3d3d3d;
  font-weight: bold;
  text-align: center;
}

.introdution .environment-title p {
  margin: 1rem 0;
  color: #3d3d3d;
  padding: 0 2rem;
}

.introdution {
  position: relative;
}

.introdution .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}

.introdution .introduction-container {
  display: flex;
  justify-content: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.introdution .introduction-container .introduction-img {
  flex: 1;
  height: 100%;
}

.introdution .introduction-container .introduction-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.introdution .introduction-container .introduction-content {
  flex: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.introdution .introduction-container .introduction-content .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.introdution .introduction-container .introduction-content .content p {
  line-height: 1.5;
  color: #707070;
}

.introdution .introduction-container .introduction-content a {
  margin-top: 2rem;
  width: 8.5rem;
  color: #fff;
  padding: 0.75rem 0rem;
  text-align: center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), #004da1;
  box-shadow: 0px 0.05px 260px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
}

.introdution .introduction-container .introduction-content a:hover {
  background: #003a7a;
  transform: translateY(-1px);
}

/* ========== introdution 响应式 ========== */
/* fade-up entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.introdution .introduction-img,
.introdution .introduction-content {
  animation: fadeUp 0.7s ease both;
}

.introdution .introduction-img {
  animation-delay: 0.1s;
}

.introdution .introduction-content {
  animation-delay: 0.3s;
}

/* Tablet landscape: 992–1199px */
@media (max-width: 1199.98px) {
  .introdution .introduction-container {
    gap: 3rem;
  }

  .introdution .introduction-content .content {
    gap: 1.5rem;
  }
}

/* Tablet portrait: 768–991px */
@media (max-width: 991.98px) {
  .introdution {
    padding: 3rem 0;
  }

  .introdution .environment-title {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  .introdution .introduction-container {
    gap: 2rem;
  }

  .introdution .introduction-content .content {
    gap: 1.25rem;
  }

  .introdution .introduction-content a {
    width: 7.5rem;
    padding: 0.625rem 0;
  }
}

/* Mobile: 576–767px — stack vertically */
@media (max-width: 767.98px) {
  .introdution {
    padding: 2rem 0;
  }

  .introdution .environment-title {
    margin-top: 1.5rem;
  }

  .introdution .environment-title p {
    padding: 0 1rem;
  }

  .introdution .introduction-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .introdution .introduction-img {
    flex: none;
    width: 100%;
    height: auto;
    max-height: 18rem;
    overflow: hidden;
    border-radius: 8px;
  }

  .introdution .introduction-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .introdution .introduction-content {
    flex: none;
    width: 100%;
    min-height: auto;
  }

  .introdution .introduction-content .content {
    gap: 1rem;
  }

  .introdution .introduction-content a {
    margin-top: 1.5rem;
    width: 7rem;
    padding: 0.5rem 0;
  }
}

/* Small mobile: <576px */
@media (max-width: 575.98px) {
  .introdution {
    padding: 1.5rem 0;
  }

  .introdution .environment-title {
    margin-top: 1rem;
  }

  .introdution .environment-title p {
    padding: 0 0.75rem;
  }

  .introdution .introduction-container {
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .introdution .introduction-img {
    max-height: 14rem;
  }

  .introdution .introduction-content a {
    width: 6.5rem;
    padding: 0.4375rem 0;
  }
}

.news-part {
  padding: 8rem 0;
  background: #fff;
}

.news-part .news-part-title {
  text-align: center;
  margin-bottom: 5rem;
}

.news-part .news-part-title h1 {
  color: #3d3d3d;
  font-weight: bold;
  text-align: center;
}

.news-part .news-part-title p {
  margin: 1rem 0;
  color: #3d3d3d;
  padding: 0 2rem;
}

.news-part__title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}

.news-part__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.news-part__more {
  text-align: center;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card__img {
  width: 100%;
  /* height: 13.75rem; */
  overflow: hidden;
  border-radius: 0.5rem;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__img img {
  transform: scale(1.05);
}

.news-card__content {
  padding: 1rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__title {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
}

.news-card__desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* flex: 1; */
  width: 100%;
  word-break: break-all;
  font-size: 15px;
}

.news-card__date {
  color: #999;
  font-size: 15px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #f1f1f1;
  padding: 2rem;
  border-radius: 11px;
}

.news-list__tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background-color: #004da1;
  color: #fff;
  border-radius: 25rem;
  align-self: flex-start;
  margin-bottom: 0.25rem;
}

.news-list__item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eee;
  transition: opacity 0.2s ease;
}

.news-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-list__item:hover {
  opacity: 0.8;
}

.news-list__title {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
}

.news-list__desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  word-break: break-all;
  font-size: 15px;
}

.news-list__date {
  color: #999;
  font-size: 15px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 1.5rem;
  background-color: #004da1;
  color: #fff;
  border: none;
  border-radius: 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-more:hover {
  background-color: rgb(0, 57.4869565217, 120.2);
}

.btn-more__arrow {
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .news-part {
    padding: 5rem 0;
  }

  .news-part .news-part-title {
    margin-bottom: 3rem;
  }

  .news-part__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-part .news-list {
    grid-column: span 2;
    flex-direction: row;
    gap: 1.5rem;
  }

  .news-part .news-list__tag {
    display: none;
  }

  .news-part .news-list__item {
    flex: 1;
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media screen and (max-width: 768px) {
  .news-part {
    padding: 2.5rem 0;
  }

  .news-part .news-part-title {
    margin-bottom: 2rem;
  }

  .news-part .news-part-title p {
    padding: 0 1rem;
  }

  .news-part__title {
    margin-bottom: 1.5rem;
  }

  .news-part__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.875rem;
  }

  .news-part .news-list {
    grid-column: span 1;
    flex-direction: column;
    gap: 1rem;
  }

  .news-part .news-list__tag {
    display: inline-block;
  }

  .news-part .news-list__item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
  }

  .news-part .news-list__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .news-card__img {
    /* height: 11.25rem; */
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .cooperation-part .cooperation-part-title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 991.98px) and (min-width: 769px) {
  .cooperation-part {
    padding: 3rem 0;
  }

  .cooperation-part .cooperation-part-title {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .cooperation-part {
    padding: 2.5rem 0;
  }

  .cooperation-part .cooperation-part-title {
    margin-bottom: 2rem;
  }
}

.cooperation-part {
  padding: 4rem 0;
  background: #fff;
  position: relative;
}

.cooperation-part .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.cooperation-part .cooperation-part-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.cooperation-part .cooperation-part-title h1 {
  color: #3d3d3d;
  font-weight: bold;
  text-align: center;
}

.cooperation-part .cooperation-part-title p {
  margin: 1rem 0;
  color: #3d3d3d;
  padding: 0 2rem;
}

.cooperation-part .container {
  position: relative;
  z-index: 2;
}

.cooperation-part .cooperation-container {
  position: relative;
  z-index: 2;
}

.cooperation-part .cooperation-container__item {
  aspect-ratio: 1;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d6d6d6;
}

.cooperation-part .cooperation-container__item img {
  width: 80%;
  aspect-ratio: 1;
}

.consult-part {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  /* background: #0a1628; */
}

.consult-part .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  /* opacity: 0.35; */
  /* filter: blur(2px); */
  transform-origin: center center;
  transform: scale(1.1);
}

.consult-part__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 77, 161, .5);
  z-index: 2;
}

.consult-part .container {
  position: relative;
  z-index: 3;
}

.consult-part__inner {
  display: grid;
  grid-template-columns: 1fr 28rem;
  align-items: center;
  gap: 5rem;
}

.consult-part__content {
  color: #fff;
}

.consult-part__title {
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.consult-part__desc {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.consult-part__features {
  margin-bottom: 2.75rem;
}

.consult-part__features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0.625rem 0;
}

.consult-part__features .dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
}

.consult-part__contact {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.contact-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #e67e22;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}

.contact-item__label {
  color: rgba(255, 255, 255, 0.65);
}

.contact-item__value {
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.contact-item__value a {
  color: #fff;
  text-decoration: none;
}

.consult-form {
  background-color: #fff;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.consult-form__title {
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 1.75rem;
}

.consult-form__body {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.consult-form__tip {
  color: #b8c0cc;
  text-align: center;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.form-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-item__label {
  color: #999;
  font-weight: 500;
  padding-left: 0.25rem;
}

.form-item__input,
.form-item__select {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid #eef1f5;
  border-radius: 10px;
  color: #333;
  background-color: #f7f9fc;
  outline: none;
  transition: all 0.25s ease;
}

.form-item__input::-moz-placeholder,
.form-item__select::-moz-placeholder {
  color: #c8d0dc;
}

.form-item__input::placeholder,
.form-item__select::placeholder {
  color: #c8d0dc;
}

.form-item__input:focus,
.form-item__select:focus {
  border-color: #004da1;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 77, 161, 0.08);
}

.form-item__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23aab2bd' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-btn {
  width: 100%;
  height: 3rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #0056b8 0%, #0077e6 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn:hover {
  background: linear-gradient(135deg, #004da1 0%, #0066cc 100%);
  box-shadow: 0 8px 24px rgba(0, 77, 161, 0.35);
  transform: translateY(-2px);
}

@media screen and (max-width: 1199.98px) and (min-width: 992px) {
  .consult-part {
    padding: 5rem 0;
  }

  .consult-part__title {
    font-size: 2.25rem;
  }

  .consult-part__inner {
    grid-template-columns: 1fr 24rem;
    gap: 3rem;
  }

  .contact-item__value {
    font-size: 1.125rem;
  }

  .consult-form {
    padding: 1.75rem;
  }
}

@media screen and (max-width: 1024px) {
  .consult-part {
    padding: 3.75rem 0;
  }

  .consult-part__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .consult-part__content {
    padding: 0 3rem;
    text-align: center;
  }

  .consult-part__title {
    font-size: 2rem;
  }

  .consult-part__desc {
    max-width: 100%;
  }

  .consult-part__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
  }

  .consult-part__features li {
    margin: 0;
  }

  .consult-part__contact {
    justify-content: center;
  }

  .consult-form {
    width: 90vw;
    max-width: 420px;
    margin: 0 auto;
    padding: 1.75rem;
  }

  .consult-form__title {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 768px) {
  .consult-part {
    padding: 2.5rem 0;
  }

  .consult-part__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .consult-part__desc {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .consult-part__content {
    padding: 0 1rem;
    text-align: left;
  }

  .consult-part__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(8rem, 1fr));
  }

  .consult-part__features li {
    font-size: 0.9375rem;
  }

  .consult-part__contact {
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .consult-part__contact a {
    white-space: nowrap;
  }

  .contact-item__icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .contact-item__value {
    font-size: 1.125rem;
  }

  .consult-form {
    width: 100%;
    max-width: none;
    padding: 1.5rem;
    border-radius: 12px;
  }

  .consult-form__title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .consult-form__body {
    gap: 1rem;
  }

  .form-item__input,
  .form-item__select {
    height: 2.75rem;
    border-radius: 8px;
  }

  .form-btn {
    height: 2.75rem;
    border-radius: 8px;
    font-size: 0.9375rem;
  }
}

/* ================================================
   introduction 页面样式（intro 前缀避免重名）
   ================================================ */
/* ---------- intro-heroview 首屏Banner ---------- */
.intro-heroview {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.intro-heroview__bg {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 25rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.intro-heroview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 50, 100, 0.75) 0%, rgba(0, 77, 161, 0.55) 100%);
}

.intro-heroview .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.intro-heroview__content {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 2rem 0;
}

.intro-heroview__title {
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.intro-heroview__desc {
  text-align: center;
  line-height: 1.8;
  opacity: 0.9;
}

/* ---------- intro-metricbar 数据统计条 ---------- */
.intro-metricbar {
  background: #fff;
  padding: 3rem 0;
}

.intro-metricbar__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.intro-metricbar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: #f5f9ff;
  border-radius: 8px;
  min-width: 0;
}


.intro-metricbar__item>* {
  min-width: 0;
}

.intro-metricbar__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-metricbar__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.intro-metricbar__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.intro-metricbar__numwrap {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.intro-metricbar__num {
  font-weight: 700;
  color: #004da1;
  line-height: 1;
  white-space: nowrap;
}

.intro-metricbar__unit {
  font-weight: 600;
  color: #004da1;
  margin-left: 0.125rem;
}

.intro-metricbar__label {
  color: #666;
}


@media screen and (max-width:1400px) {
  .intro-metricbar__item {
    display: flex;
    flex-direction: column;
  }

  .intro-metricbar__label {
    text-align: center;
    white-space: nowrap;
  }
}

/* ---------- intro-qualified 办学资质（左文右图） ---------- */
.intro-qualified {
  padding: 5rem 0;
  background: #fff;
}

.intro-qualified__row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-qualified__text {
  flex: 1;
}

.intro-qualified__title {
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.intro-qualified__desc {
  color: #666;
  line-height: 2;
  margin-bottom: 1rem;
}

.intro-qualified__desc:last-child {
  margin-bottom: 0;
}

.intro-qualified__media {
  flex: 1;
}

.intro-qualified__img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.intro-qualified__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- intro-campview 校区环境（左图右文） ---------- */
.intro-campview {
  padding: 5rem 0;
  background: #fff;
}

.intro-campview__row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-campview__media {
  flex: 1;
}

.intro-campview__img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.intro-campview__img img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-campview__text {
  flex: 1;
}

.intro-campview__title {
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.intro-campview__subtitle {
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.intro-campview__desc {
  color: #666;
  line-height: 2;
  margin-bottom: 0.75rem;
}

.intro-campview__desc:last-child {
  margin-bottom: 0;
}

.intro-campview__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.intro-campview__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #666;
  line-height: 1.8;
}

.intro-campview__item:last-child {
  margin-bottom: 0;
}

.intro-campview__item strong {
  color: #3d3d3d;
  font-weight: 600;
}

.intro-campview__dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #004da1;
  margin-top: 0.65rem;
}

/* ---------- intro-faculty 师资团队（左文右图） ---------- */
.intro-faculty {
  padding: 5rem 0;
  background: #f5f7fa;
}

.intro-faculty__row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-faculty__text {
  flex: 1;
}

.intro-faculty__title {
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.intro-faculty__subtitle {
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.intro-faculty__desc {
  color: #666;
  line-height: 2;
  margin-bottom: 0.75rem;
}

.intro-faculty__desc:last-child {
  margin-bottom: 0;
}

.intro-faculty__media {
  flex: 1;
}

.intro-faculty__img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.intro-faculty__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- intro-reputate 治学口碑（三卡片） ---------- */
.intro-reputate {
  padding: 5rem 0;
  /* background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), linear-gradient(rgba(229, 242, 255, 0.8314), rgba(229, 242, 255, 0.8314)), url("__index__/media/introduction-bg-1.png"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.intro-reputate .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.intro-reputate .bg img {
  width: 100%;
  height: 100%;

  /* background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), rgba(229, 242, 255, 0.8314); */
  object-fit: cover;

}

.intro-reputate__title {
  text-align: center;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3rem;
  line-height: 1.4;
  position: relative;
}

.intro-reputate__title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 8px;
  background: #004da1;
  border-radius: 200000px;
  margin: 1rem auto 0;
}

.intro-reputate__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.intro-reputate__card {
  background: #fff;
  border-radius: 12px;
  padding: 3.5rem 5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 77, 161, 0.06);
  transition: all 0.3s ease;
}

.intro-reputate__card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 12px 32px rgba(0, 77, 161, 0.12);
}

.intro-reputate__icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
}

.intro-reputate__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.intro-reputate__name {
  font-weight: 600;
  color: #3d3d3d;
  margin-bottom: 1rem;
}

.intro-reputate__desc {
  color: #666;
  line-height: 1.8;
}

/* ---------- intro-xenrol 荣誉证书（全屏轮播） ---------- */
.intro-xenrol {
  padding: 5rem 0 6rem;
  background: #fff;
}

.intro-xenrol__title {
  text-align: center;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.intro-xenrol__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.intro-xenrol__card {
  width: 100%;
  aspect-ratio: 3/4;
  /* background: #c9c9c9; */
  border-radius: 4px;
}

.intro-xenrol__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.intro-xenrol__prev,
.intro-xenrol__next {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  width: 4rem;
  height: 4rem;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 4rem;
  z-index: 10;
  transition: color 0.2s;
}

.intro-xenrol__prev:hover,
.intro-xenrol__next:hover {
  color: #fff;
}

.intro-xenrol__prev {
  left: 1.5rem;
}

.intro-xenrol__next {
  right: 1.5rem;
}

.intro-xenrol__pager {
  margin-top: 4rem;
  text-align: center;
  z-index: 10;
}

.intro-xenrol__pager .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #d1d9e6;
  margin: 0 5px;
  cursor: pointer;
  opacity: 1;
  transition: background 0.2s;
}

.intro-xenrol__pager .swiper-pagination-bullet-active {
  background: #004da1;
}

.intro-xenrol .swiper-slide {
  flex-shrink: 0;
}

/* ---------- intro-consulted 免费定制学习方案 ---------- */
.intro-consulted {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.intro-consulted__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(111deg, #55befc 3%, #0250a3 99%);
  z-index: 0;
}

.intro-consulted .container {
  position: relative;
  z-index: 2;
}

.intro-consulted__row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-consulted__text {
  flex: 1.2;
  color: #fff;
}

.intro-consulted__title {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.intro-consulted__desc {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.intro-consulted__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-consulted__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.intro-consulted__list li i {
  color: #ffd700;
  font-size: 1.25rem;
}

.intro-consulted__form {
  flex: 0 0 22rem;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.intro-consulted__form-title {
  font-weight: 600;
  color: #3d3d3d;
  text-align: center;
  margin-bottom: 1.5rem;
}

.intro-consulted form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-consulted form input,
.intro-consulted form select {
  width: 100%;
  height: 2.75rem;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  padding: 0 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.intro-consulted form input:focus,
.intro-consulted form select:focus {
  border-color: #004da1;
}

.intro-consulted form input::-moz-placeholder,
.intro-consulted form select::-moz-placeholder {
  color: #aaa;
}

.intro-consulted form input::placeholder,
.intro-consulted form select::placeholder {
  color: #aaa;
}

.intro-consulted form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  color: #333;
}

.intro-consulted form button {
  width: 100%;
  height: 2.75rem;
  background: #004c9f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.intro-consulted form button:hover {
  background: #003a7a;
}

/* ================================================
   dynamic 页面样式（dynv 前缀避免重名）
   ================================================ */
/* ---------- dynv-kcard 校园动态卡片 ---------- */
.dynv-kcard {
  padding: 5rem 0;
  background: #fff;
}

.dynv-kcard__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dynv-kcard__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.dynv-kcard__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.dynv-kcard__item:hover .dynv-kcard__media img {
  transform: scale(1.06);
}

.dynv-kcard__item:hover .dynv-kcard__title a {
  color: #004da1;
}

.dynv-kcard__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}

.dynv-kcard__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dynv-kcard__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dynv-kcard__title {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.dynv-kcard__title a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}

.dynv-kcard__desc {
  color: #666;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}

.dynv-kcard__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dynv-kcard__dateicon {
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
}

.dynv-kcard__date {
  color: #999;
}

/* ---------- dynv-list 新闻列表 ---------- */
.dynv-list {
  padding: 0 0 5rem;
  background: #fff;
}

.dynv-list__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dynv-list__item {
  list-style: none;
}

.dynv-list__link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #f0f2f5;
}

.dynv-list__link:hover {
  border-color: #d6e4f5;
  box-shadow: 0 6px 20px rgba(0, 77, 161, 0.08);
  transform: translateX(4px);
}

.dynv-list__link:hover .dynv-list__arrow {
  color: #004da1;
  transform: translateX(4px);
}

.dynv-list__link:hover .dynv-list__title {
  color: #004da1;
}

.dynv-list__thumb {
  flex-shrink: 0;
  width: 9rem;
  height: 6rem;
  border-radius: 8px;
  overflow: hidden;
}

.dynv-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dynv-list__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dynv-list__title {
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.5;
  transition: color 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dynv-list__date {
  color: #b8c0cc;
}

.dynv-list__arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #ccc;
  transition: all 0.3s ease;
}

/* ================================================
   contact 页面样式（cntc 前缀避免重名）
   ================================================ */
/* ---------- cntc-hero 联系Banner ---------- */
.cntc-hero {
  position: relative;
  padding: 10rem 0;
  max-height: 30rem;
  overflow: hidden;
}

.cntc-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  opacity: 0.8;
  z-index: 1;
}

.cntc-hero .container {
  position: relative;
  height: 100%;
  z-index: 2;
}

.cntc-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
}

.cntc-hero__title {
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  position: relative;
  padding-bottom: 1rem;
}

.cntc-hero__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 4px;
  background: #004da1;
  border-radius: 2px;
}

.cntc-hero__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cntc-hero__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  color: #555;
  width: 100%;
  list-style: none;
  max-width: 450px;
}

.cntc-hero__icon {
  color: #004da1;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

.cntc-hero__label {
  color: #666;
}

.cntc-hero__value {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cntc-hero__value:hover {
  color: #004da1;
}

.cntc-hero__sub {
  color: #999;
  margin-left: 0.25rem;
}

.cntc-hero__qrcodes {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.cntc-hero__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cntc-hero__qrimg {
  width: 8rem;
  height: 8rem;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 8px;
}

.cntc-hero__qrimg img {
  width: 100%;
}

.cntc-hero__qrcaption {
  color: #888;
  text-align: center;
}

/* ---------- cntc-map 校区地图 ---------- */
.cntc-map {
  padding: 5rem 0;
  background: #fff;
}

.cntc-map__title {
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.cntc-map__wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cntc-map__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.cntc-map__marker {
  position: static;
}

.cntc-map__pin {
  position: absolute;
  left: 51%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.cntc-map__pindot {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: #e67e22;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.cntc-map__pinpulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transform: translate(-50%, -50%);
  background: rgba(230, 126, 34, 0.4);
  border-radius: 50%;
  animation: cntc-pulse 2s ease-out infinite;
  z-index: 1;
}

.cntc-map__bubble {
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(1rem, -50%);
  z-index: 4;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  min-width: 20rem;
  max-width: 24rem;
}

.cntc-map__bubble:after {
  content: "";
  position: absolute;
  top: 32%;
  left: -1.7rem;
  border-top: 1rem solid transparent;
  border-right: 1.75rem solid #fff;
  border-bottom: 1rem solid transparent;
}

@media screen and (max-width: 1200px) {
  .cntc-map__bubble:after {
    top: 35%;
  }
}

@media screen and (max-width: 991.99px) {
  .cntc-map__bubble:after {
    top: 37%;
  }
}

.cntc-map__bubble-title {
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #f0f2f5;
}

.cntc-map__bubble-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cntc-map .cntc-map__bubble-icon {
  margin-top: 1.5rem;
}

.cntc-map__bubble-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #555;
  line-height: 1.6;
  list-style: none;
}

.cntc-map__bubble-item img {
  /* width: 1rem; */
  height: 1rem;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.cntc-map__bubble-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cntc-map__bubble-item a:hover {
  color: #004da1;
}

.cntc-map__bubble-item>a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  text-decoration: underline;
}

.cntc-map__bubble-item>a img {
  margin-top: 0;
}

.cntc-map__bubble-item>a:hover {
  color: #003d82;
}

.cntc-map__bubble-icon {
  color: #e67e22;
  flex-shrink: 0;
  margin-top: 1px;
}

@keyframes cntc-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* ================================================
   lesson 页面样式（leason 前缀避免重名）
   ================================================ */
/* ---------- leason-kgrid 课程卡片网格 ---------- */
.leason-kgrid {
  padding: 5rem 0;
  background: #f5f7fa;
}

.leason-kgrid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.leason-kgrid__card {
  background: #fff;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.11);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  /* flex-direction: column; */
}

.leason-kgrid__card:hover {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, .2);
  transform: translateY(-8px);
  /* box-shadow: 0 20px 48px rgba(0, 77, 161, 0.18); */
}

.leason-kgrid__card:hover .leason-kgrid__media img {
  /* transform: scale(1.08); */
}

.leason-kgrid__card:hover .leason-kgrid__glow {
  opacity: 1;
}

.leason-kgrid__media {
  position: relative;
  flex: 1;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.leason-kgrid__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.leason-kgrid__glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 77, 161, 0.35) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.leason-kgrid__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.leason-kgrid__title {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.leason-kgrid__desc {
  color: #666;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.25rem;
}

.leason-kgrid__actions {
  display: flex;
  gap: 0.75rem;
}

/* ---------- leason-btn 课程按钮 ---------- */
.leason-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  padding: 0 1.25rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.leason-btn--primary {
  background: linear-gradient(135deg, #004da1 0%, #0066cc 100%);
  color: #fff;
}

.leason-btn--primary:hover {
  background: linear-gradient(135deg, #003d82 0%, #0052a3 100%);
  box-shadow: 0 4px 12px rgba(0, 77, 161, 0.3);
  transform: translateY(-1px);
}

.leason-btn--ghost {
  background: transparent;
  background-color: #d27700;
  color: #fff;
}

.leason-btn--ghost:hover {
  background: #ff9100;
  transform: translateY(-1px);
}

/* ---------- flt-qpanel 左侧问题悬浮窗 ---------- */
.flt-qpanel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 13rem;
  background: #f7fbff;
  border-radius: 0 12px 12px 0;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.12);
  padding: 1.25rem 1rem 1rem 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.flt-qpanel.is-hidden {
  transform: translate(-100%, -50%);
  opacity: 0;
  pointer-events: none;
}

.flt-qpanel__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.flt-qpanel__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  font-size: 1.25rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.flt-qpanel__close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.flt-qpanel__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #004da1;
}

.flt-qpanel__close i {
  font-size: 1.25rem;
}

.flt-qpanel__head {
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.flt-qpanel__head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 6px;
  background: #004da1;
  border-radius: 200px;
}

.flt-qpanel__tag {
  font-weight: 700;
}

.flt-qpanel__title {
  font-weight: 700;
}

.flt-qpanel__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.flt-qpanel__item {
  line-height: 1.5;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 77, 161, 0.08);
}

.flt-qpanel__item:last-child {
  border-bottom: none;
}

.flt-qpanel__item a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.flt-qpanel__item a:hover {
  color: #004da1;
}

/* ---------- flt-cmodal 中间课程咨询弹窗 ---------- */
.flt-cmodal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 48rem;
  max-width: 90vw;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.flt-cmodal.is-hidden {
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  pointer-events: none;
}

.flt-cmodal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.25rem;
  z-index: 10;
}

@media screen and (max-width: 991.98px) {
  .flt-cmodal__close {
    background-color: #000;
    border-radius: 50%;
  }
}

.flt-cmodal__close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.flt-cmodal__close i {
  font-size: 1.25rem;
}

.flt-cmodal__inner {
  display: flex;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.flt-cmodal__form {
  flex: 1;
  background: #fff;
  padding: 2rem 2rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.flt-cmodal__title {
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.flt-cmodal__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.flt-cmodal__row {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.flt-cmodal__label {
  color: #555;
  font-weight: 500;
}

.flt-cmodal__radios {
  display: flex;
  gap: 0.75rem;
}

.flt-cmodal__radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  cursor: pointer;
  color: #666;
  padding: 0.45rem 1.75rem;
  background: #f0f2f5;
  border-radius: 2px;
  transition: all 0.2s ease;
  overflow: hidden;
}

.flt-cmodal__radio input {
  display: none;
}

.flt-cmodal__radio span {
  font-weight: 500;
}

.flt-cmodal__radio-tri {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
}

.flt-cmodal__radio--active {
  background: #004da1;
  color: #fff;
}

.flt-cmodal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.flt-cmodal__tag {
  position: relative;
  padding: 0.45rem 1.25rem;
  background: #f0f2f5;
  color: #666;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
  font-weight: 500;
}

.flt-cmodal__tag-tri {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}

.flt-cmodal__tag:hover {
  background: #e8eef8;
  color: #004da1;
}

.flt-cmodal__tag--active {
  background: #004da1;
  color: #fff;
}

.flt-cmodal__tag--active:hover {
  background: #004da1;
  color: #fff;
}

.flt-cmodal__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.flt-cmodal__input {
  width: 100%;
  padding: 0.55rem 0.875rem;
  border: 1px solid #dcdfe6;
  border-radius: 2px;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.2s ease;
}

.flt-cmodal__input::-moz-placeholder {
  color: #b8bcc2;
}

.flt-cmodal__input::placeholder {
  color: #b8bcc2;
}

.flt-cmodal__input:focus {
  border-color: #004da1;
}

.flt-cmodal__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.flt-cmodal__btn {
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 2px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.flt-cmodal__btn--primary {
  flex: 0 0 60%;
  background: #004da1;
  color: #fff;
}

.flt-cmodal__btn--primary:hover {
  background: #003d82;
}

.flt-cmodal__btn--warn {
  flex: 1;
  background: #d4721a;
  color: #fff;
}

.flt-cmodal__btn--warn:hover {
  background: #b85f10;
}

.flt-cmodal__arrow {
  position: relative;
  width: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}

.flt-cmodal__arrowimg {
  position: absolute;
  left: -0.25rem;
  top: 42%;
  width: 2rem;
  height: auto;
  z-index: 5;
}

.flt-cmodal__poster {
  width: 18rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0056b8 0%, #0a84ff 100%);
  position: relative;
  overflow: hidden;
}

.flt-cmodal__decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.flt-cmodal__decor-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.flt-cmodal__decor-circle--1 {
  width: 6rem;
  height: 6rem;
  top: -1.5rem;
  right: -1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.flt-cmodal__decor-circle--2 {
  width: 4rem;
  height: 4rem;
  top: 5rem;
  left: -1rem;
  background: rgba(255, 255, 255, 0.05);
}

.flt-cmodal__decor-circle--3 {
  width: 2.5rem;
  height: 2.5rem;
  bottom: 10rem;
  left: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flt-cmodal__decor-dots {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 0.6rem 0.6rem;
  opacity: 0.6;
}

.flt-cmodal__decor-dots img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  transform: translate(0%, -20%);
}

.flt-cmodal__posterinner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 5rem 1.5rem 0;
}

.flt-cmodal__postertxt {
  position: relative;
  z-index: 2;
}

.flt-cmodal__postertitle {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.flt-cmodal__postertags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.flt-cmodal__postertag {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  font-weight: 500;
}

.flt-cmodal__posterphone {
  display: inline-flex;
  align-items: center;
  background: #d4721a;
  padding: 0.45rem 1rem;
  border-radius: 20px 0 0 20px;
  margin-left: -1.5rem;
  padding-left: 1.5rem;
}

.flt-cmodal__phonetxt {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.flt-cmodal__people {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

.flt-cmodal__peopleimg {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ---------- flt-sider 右侧悬浮图标栏 ---------- */
.flt-sider {
  position: fixed;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.flt-sider__item {
  background: #004da1;
  padding: 0.875rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.flt-sider__item:last-child {
  border-bottom: none;
}

.flt-sider__item:hover {
  background: #003d82;
}

.flt-sider__icon {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.flt-sider__label {
  color: #fff;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 2px;
}

@media screen and (max-width: 992px) {
  .flt-sider {
    position: fixed;
    right: 5px;
  }

  .flt-sider__item {
    opacity: 0.6;
  }

  .flt-sider__item:hover {
    opacity: 1;
  }
}

/* ---------- introduction 页面响应式 ---------- */
@media (max-width: 1199.98px) and (min-width: 992px) {
  .intro-heroview__title {
    font-size: 2rem;
  }

  .intro-qualified,
  .intro-campview,
  .intro-faculty {
    padding: 4rem 0;
  }

  .intro-qualified__row,
  .intro-campview__row,
  .intro-faculty__row {
    gap: 2.5rem;
  }

  .intro-reputate {
    padding: 4rem 0;
  }

  .intro-reputate__title {
    margin-bottom: 1rem;
  }

  .intro-reputate__cards {
    margin-top: 2.5rem;
  }

  .intro-xenrol {
    padding: 4rem 0 5rem;
  }

  .intro-consulted {
    padding: 4rem 0;
  }

  .intro-consulted__row {
    gap: 2.5rem;
  }

  .intro-consulted__form {
    flex: 0 0 20rem;
  }

  .dynv-kcard {
    padding: 4rem 0;
  }

  .dynv-kcard__list {
    gap: 1.5rem;
  }

  .dynv-kcard__body {
    padding: 1.25rem;
  }

  .dynv-list {
    padding-bottom: 4rem;
  }

  .dynv-list__link {
    gap: 1.25rem;
  }

  .dynv-list__thumb {
    width: 8rem;
    height: 5.5rem;
  }

  .cntc-hero {
    padding: 4rem 0;
  }

  .cntc-hero__inner {
    gap: 2rem;
  }

  .cntc-hero__qrcodes {
    gap: 1.5rem;
  }

  .cntc-hero__qrimg {
    width: 7rem;
    height: 7rem;
  }

  .cntc-map {
    padding: 4rem 0;
  }

  .cntc-map__title {
    margin-bottom: 1.25rem;
  }

  .cntc-map__bubble {
    min-width: 16rem;
    max-width: 20rem;
    padding: 0.875rem 1rem;
  }

  .cntc-map__bubble-title {
    margin-bottom: 0.625rem;
    padding-bottom: 0.5rem;
  }

  .cntc-map__bubble-item {
    gap: 0.375rem;
  }

  .cntc-map__bubble-item img {
    /* width: 0.875rem;
    height: 0.875rem; */
  }

  .leason-kgrid {
    padding: 4rem 0;
  }

  .leason-kgrid__list {
    gap: 1.5rem;
  }

  .leason-kgrid__body {
    padding: 1.25rem;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .intro-heroview__bg {
    min-height: 20rem;
  }

  .intro-heroview__title {
    font-size: 1.75rem;
  }

  .intro-heroview__desc {
    font-size: 0.875rem;
  }

  .intro-metricbar {
    padding: 2.5rem 0;
  }

  .intro-metricbar__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .intro-metricbar__item {
    padding: 1.25rem 1.5rem;
  }

  .intro-metricbar__icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .intro-metricbar__num {
    font-size: 1.75rem;
  }

  .intro-qualified,
  .intro-campview,
  .intro-faculty {
    padding: 3rem 0;
  }

  .intro-qualified__row,
  .intro-campview__row,
  .intro-faculty__row {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-qualified__title,
  .intro-campview__title,
  .intro-faculty__title {
    margin-bottom: 1rem;
  }

  .intro-qualified__desc,
  .intro-campview__desc,
  .intro-faculty__desc {
    line-height: 1.8;
  }

  .intro-reputate {
    padding: 3rem 0;
  }

  .intro-reputate__title {
    margin-bottom: 1rem;
  }

  .intro-reputate__cards {
    gap: 1rem;
    margin-top: 2rem;
  }

  .intro-reputate__card {
    padding: 2rem 1.25rem;
  }

  .intro-reputate__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.25rem;
  }

  .intro-xenrol {
    padding: 3rem 0 4rem;
  }

  .intro-xenrol__title {
    margin-bottom: 2rem;
  }

  .intro-xenrol__prev,
  .intro-xenrol__next {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
  }

  .intro-xenrol__prev {
    left: 1rem;
  }

  .intro-xenrol__next {
    right: 1rem;
  }

  .intro-consulted {
    padding: 3rem 0;
  }

  .intro-consulted__row {
    flex-direction: column;
    gap: 2.5rem;
  }

  .intro-consulted__text {
    text-align: center;
  }

  .intro-consulted__title {
    font-size: 1.75rem;
  }

  .intro-consulted__list li {
    justify-content: center;
  }

  .intro-consulted__form {
    flex: none;
    width: 70%;
    max-width: 400px;
  }

  .dynv-kcard {
    padding: 3rem 0;
  }

  .dynv-kcard__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .dynv-kcard__body {
    padding: 1.25rem;
  }

  .dynv-kcard__desc {
    margin-bottom: 0.875rem;
  }

  .dynv-list {
    padding-bottom: 3rem;
  }

  .dynv-list__items {
    gap: 0.875rem;
  }

  .dynv-list__link {
    gap: 1rem;
    padding: 0.875rem 1rem;
  }

  .dynv-list__thumb {
    width: 7rem;
    height: 5rem;
  }

  .dynv-list__arrow {
    font-size: 1.25rem;
  }

  .cntc-hero {
    padding: 3rem 0;
  }

  .cntc-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cntc-hero__info {
    text-align: center;
  }

  .cntc-hero__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .cntc-hero__list {
    align-items: center;
  }

  .cntc-hero__item {
    justify-content: start;
  }

  .cntc-hero__qrcodes {
    gap: 2rem;
  }

  .cntc-hero__qrimg {
    width: 7.5rem;
    height: 7.5rem;
  }

  .cntc-map {
    padding: 3rem 0;
  }

  .cntc-map__title {
    margin-bottom: 1rem;
  }

  .cntc-map__bubble {
    min-width: 14rem;
    max-width: 18rem;
    padding: 0.75rem 0.875rem;
  }

  .cntc-map__bubble-title {
    margin-bottom: 0.5rem;
    padding-bottom: 0.375rem;
  }

  .cntc-map__bubble-list {
    gap: 0.375rem;
  }

  .cntc-map__bubble-item {
    gap: 0.375rem;
    line-height: 1.5;
  }

  .cntc-map__bubble-item img {
    /* width: 0.8125rem;
    height: 0.8125rem; */
  }

  .leason-kgrid {
    padding: 3rem 0;
  }

  .leason-kgrid__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .leason-kgrid__body {
    padding: 1.25rem;
  }

  .leason-kgrid__desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .intro-heroview__bg {
    min-height: 18rem;
  }

  .intro-heroview__content {
    text-align: center;
    padding: .5rem 0;
  }

  .intro-heroview__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .intro-heroview__desc {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .intro-metricbar {
    padding: 2rem 0;
  }

  .intro-metricbar__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .intro-metricbar__item {
    padding: 1.25rem 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .intro-metricbar__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .intro-metricbar__text {
    align-items: center;
  }

  .intro-metricbar__num {
    font-size: 1.5rem;
  }

  .intro-metricbar__label {
    font-size: 0.75rem;
  }

  .intro-qualified,
  .intro-campview,
  .intro-faculty {
    padding: 2.5rem 0;
  }

  .intro-qualified__row,
  .intro-campview__row,
  .intro-faculty__row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .intro-qualified__title,
  .intro-campview__title,
  .intro-faculty__title {
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .intro-qualified__desc,
  .intro-campview__desc,
  .intro-faculty__desc {
    line-height: 1.8;
    text-align: center;
  }

  .intro-campview__row {
    flex-direction: column-reverse;
  }

  .intro-campview__subtitle {
    text-align: center;
    margin-bottom: 1rem;
  }

  .intro-campview__list {
    margin-bottom: 0.75rem;
  }

  .intro-campview__item {
    font-size: 0.875rem;
  }

  .intro-faculty__subtitle {
    text-align: center;
    margin-bottom: 1rem;
  }

  .intro-reputate {
    padding: 2.5rem 0;
  }

  .intro-reputate__title {
    margin-bottom: 1rem;
  }

  .intro-reputate__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .intro-reputate__card {
    padding: 1.75rem 1.5rem;
  }

  .intro-reputate__icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .intro-reputate__name {
    margin-bottom: 0.5rem;
  }

  .intro-xenrol {
    padding: 2.5rem 0 3.5rem;
  }

  .intro-xenrol__title {
    margin-bottom: 1.5rem;
  }

  .intro-xenrol__prev,
  .intro-xenrol__next {
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
  }

  .intro-xenrol__prev {
    left: 0.5rem;
  }

  .intro-xenrol__next {
    right: 0.5rem;
  }

  .intro-consulted {
    padding: 2.5rem 0;
  }

  .intro-consulted__row {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-consulted__text {
    text-align: center;
  }

  .intro-consulted__title {
    font-size: 1.5rem;
  }

  .intro-consulted__desc {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .intro-consulted__list {
    align-items: center;
  }

  .intro-consulted__list li {
    justify-content: center;
    font-size: 0.875rem;
  }

  .intro-consulted__form {
    flex: none;
    width: 100%;
    padding: 1.5rem;
  }

  .intro-consulted__form-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .intro-consulted form {
    gap: 0.75rem;
  }

  .intro-consulted form input,
  .intro-consulted form select {
    height: 2.5rem;
    font-size: 0.8125rem;
  }

  .intro-consulted form button {
    height: 2.5rem;
    font-size: 0.9375rem;
  }

  .dynv-kcard {
    padding: 2.5rem 0;
  }

  .dynv-kcard__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dynv-kcard__body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .dynv-kcard__title {
    margin-bottom: 0.5rem;
  }

  .dynv-kcard__desc {
    margin-bottom: 0.75rem;
    -webkit-line-clamp: 2;
  }

  .dynv-list {
    padding-bottom: 2.5rem;
  }

  .dynv-list__items {
    gap: 0.75rem;
  }

  .dynv-list__link {
    gap: 0.875rem;
    padding: 0.75rem 0.875rem;
    border-radius: 10px;
  }

  .dynv-list__thumb {
    width: 5.5rem;
    height: 4.5rem;
    border-radius: 6px;
  }

  .dynv-list__title {
    -webkit-line-clamp: 2;
  }

  .dynv-list__arrow {
    font-size: 1.125rem;
  }

  .cntc-hero {
    padding: 2.5rem 0;
  }

  .cntc-hero__info {
    text-align: left;
  }

  .cntc-hero__title {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .cntc-hero__title::after {
    left: 0;
    transform: none;
  }

  .cntc-hero__list {
    gap: 0.75rem;
    align-items: flex-start;
  }

  .cntc-hero__item {
    justify-content: flex-start;
  }

  .cntc-hero__qrcodes {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }

  .cntc-hero__qrcodes .cntc-hero__qr {
    display: flex;
    flex-direction: column;
  }

  .cntc-hero__qr {
    flex-direction: row;
    gap: 0.875rem;
  }

  .cntc-hero__qrimg {
    width: 6.5rem;
    height: 6.5rem;
  }

  .cntc-map {
    padding: 2.5rem 0;
  }

  .cntc-map__title {
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .cntc-map .container {
    padding: 0;
    max-width: 100%;
  }

  .cntc-map__wrap {
    border-radius: 0;
  }

  .cntc-map__marker {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: calc(100% - 2rem);
    gap: 0.75rem;
  }

  .cntc-map__pin {
    display: none;
    position: relative;
    transform: none;
    left: auto;
    top: auto;
  }

  .cntc-map__bubble {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 0.875rem 1rem;
  }

  .cntc-map__bubble:after {
    display: none;
  }

  .cntc-map__bubble-title {
    margin-bottom: 0.5rem;
    padding-bottom: 0.375rem;
  }

  .cntc-map__bubble-list {
    gap: 0.375rem;
  }

  .cntc-map__bubble-item {
    gap: 0.375rem;
  }

  .cntc-map__bubble-item img {
    /* width: 0.875rem;
    height: 0.875rem; */
  }

  .leason-kgrid {
    padding: 2.5rem 0;
  }

  .leason-kgrid__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .leason-kgrid__body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .leason-kgrid__title {
    margin-bottom: 0.5rem;
  }

  .leason-kgrid__desc {
    margin-bottom: 1rem;
    line-height: 1.7;
  }

  .leason-kgrid__actions {
    gap: 0.5rem;
  }

  .leason-btn {
    height: 2rem;
    padding: 0 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .intro-heroview__bg {
    min-height: 10rem;
  }

  .intro-heroview__title {
    font-size: 1.25rem;
  }

  .intro-heroview__desc {
    font-size: 0.75rem;
  }

  .intro-metricbar__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .dynv-kcard {
    padding: 2rem 0;
  }

  .dynv-kcard__list {
    gap: 0.875rem;
  }

  .dynv-kcard__body {
    padding: 0.875rem 1rem 1rem;
  }

  .dynv-list {
    padding-bottom: 2rem;
  }

  .dynv-list__link {
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
  }

  .dynv-list__thumb {
    width: 4.5rem;
    height: 3.75rem;
  }

  .cntc-hero {
    padding: 2rem 0;
  }

  .cntc-hero__item {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
  }

  .cntc-hero__icon {
    margin-right: 0.25rem;
  }

  .cntc-hero__sub {
    margin-left: 0.25rem;
  }

  .cntc-hero__qrcodes {
    gap: 1rem;
  }

  .cntc-hero__qrimg {
    width: 5.5rem;
    height: 5.5rem;
  }

  .cntc-map {
    padding: 2rem 0;
  }

  .cntc-map__bubble {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.06);
  }

  .cntc-map__title {
    margin-bottom: 0.75rem;
    padding: 0 1rem;
  }

  .cntc-map .container {
    padding: 0;
    max-width: 100%;
    gap: 3rem;
  }

  .cntc-map__wrap {
    border-radius: 0;
    box-shadow: none;
  }

  .cntc-map__wrap>img {
    display: none;
  }

  .cntc-map__marker {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: calc(100% - 1.5rem);
    gap: 0.625rem;
  }

  .cntc-map__pin {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
  }

  .cntc-map__bubble {
    position: relative;
    width: 100%;
    padding: 0.75rem 0.875rem;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .cntc-map__bubble:after {
    display: none;
  }

  .cntc-map__bubble-item img {
    /* width: 0.75rem;
    height: 0.75rem; */
  }

  .cntc-map__pindot {
    width: 1rem;
    height: 1rem;
  }

  .leason-kgrid {
    padding: 2rem 0;
  }

  .leason-kgrid__list {
    gap: 0.875rem;
  }

  .leason-kgrid__body {
    padding: 0.875rem 1rem 1rem;
  }

  .leason-kgrid__actions .leason-btn {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .flt-cmodal {
    width: 90vw;
    max-width: 95vw;
  }

  .flt-cmodal__inner {
    flex-direction: column;
  }

  .flt-cmodal__form {
    padding: 1.5rem;
  }

  .flt-cmodal__poster {
    width: 100%;
    padding: 1.5rem;
  }

  .flt-cmodal__posterinner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 1rem;
  }

  .flt-cmodal__postertxt {
    flex: 1;
  }

  .flt-cmodal__postertitle {
    margin-bottom: 0.75rem;
  }

  .flt-cmodal__people {
    flex-shrink: 0;
    position: relative;
    bottom: auto;
    right: auto;
    width: auto;
  }

  .flt-cmodal__peopleimg {
    width: 8rem;
    height: auto;
  }

  .flt-cmodal__decor-dots {
    display: none;
  }
}

/*# sourceMappingURL=index.css.map */