.academy-banner {
  background: #fff5f7;
  padding: 60px 0 80px;
  min-width: 1200px;
}
.academy-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.academy-banner__left {
  flex: 0 0 42%;
  max-width: 480px;
}
.academy-banner__right {
  flex: 0 0 58%;
  display: flex;
  justify-content: flex-start;
}
.academy-banner__right-inner {
  max-width: 520px;
  padding-left: 40px;
}
.academy-banner__title {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 16px;
}
.academy-banner__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #616e7c;
  margin-bottom: 8px;
}
.academy-banner__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  background: transparent;
  box-shadow: none;
}
.academy-banner__search-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  border: 0;
  padding: 0;
  margin: 0;
}
.academy-banner__search-button {
  border: none;
  padding: 10px 36px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #f63b64;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.academy-banner__search-button:hover {
  background: #f52351;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}
.academy-banner__search-button:active {
  transform: translateY(1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}
.academy-banner__search-button:focus {
  outline: none;
  box-shadow: 0 0 0 0;
}
.academy-banner__rating {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #616e7c;
  margin-top: 8px;
}
.academy-banner__rating-stars {
  color: #ffb400;
  margin-right: 8px;
}
.academy-banner__image-wrapper {
  position: relative;
  max-width: 420px;
  z-index: 0;
}
.academy-banner__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.academy-banner__image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f7afbd 0%, #fbd3ce 50%, #ffffff 100%);
  z-index: -1;
}
.academy-banner__stat-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.academy-banner__stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #f89c9d;
  min-width: 150px;
  pointer-events: auto;
}
.academy-banner__stat-card--top-left {
  top: 122px;
  left: -36px;
  background: #fff;
  border-color: #f89c9d;
  border-radius: 20px;
  padding: 12px 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  width: 120px;
}
.academy-banner__stat-card--top-left .academy-banner__stat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f63b64;
  margin-right: 0;
  margin-bottom: 8px;
}
.academy-banner__stat-card--top-left .academy-banner__stat-value {
  font-size: 18px;
}
.academy-banner__stat-card--top-left .academy-banner__stat-texts {
  align-items: center;
  text-align: center;
  width: 100%;
}
.academy-banner__stat-card--bottom-right {
  right: -30px;
  bottom: 34px;
}
.academy-banner__stat-card--top-right-icon {
  top: 82px;
  right: 0px;
  padding: 8px;
  min-width: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: rotate(-20deg);
}
.academy-banner__stat-card--top-right-icon .academy-banner__stat-icon {
  width: 70px;
  height: 70px;
}
.academy-banner__stat-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f63b64;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  overflow: hidden;
}
.academy-banner__stat-icon-wrap--only {
  margin-right: 0;
}
.academy-banner__stat-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  display: block;
}
.academy-banner__stat-texts {
  display: flex;
  flex-direction: column;
}
.academy-banner__stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #1f2933;
  line-height: 1.2;
}
.academy-banner__stat-label {
  font-size: 12px;
  color: #616e7c;
}
.academy-banner button:focus {
  outline: none;
}
.academy-review {
  padding: 40px 0 40px;
  background: #e6f9e8;
}
.academy-review__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 40px;
}
.academy-review__left {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  max-width: 465px;
}
.academy-review__right {
  flex: 0 0 60%;
  display: flex;
  justify-content: flex-start;
  max-width: 735px;
}
.academy-review__avatar-circle {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.academy-review__avatar-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.academy-review__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.academy-review__quote-mark {
  position: absolute;
  top: 18px;
  left: 0px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 84px;
  line-height: 110px;
  color: #1f2933;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}
.academy-review__dots {
  position: absolute;
  left: -100px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 6px;
}
.academy-review__dot {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: #111827;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.academy-review__dot--active {
  background: #f63b64;
  width: 24px;
}
.academy-review__content {
  max-width: 580px;
}
.academy-review__badge {
  font-size: 12px;
  font-weight: 600;
  color: #f97316;
  margin-bottom: 8px;
}
.academy-review__title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 12px;
}
.academy-review__text {
  font-size: 14px;
  line-height: 1.8;
  color: #1f2933;
  margin-bottom: 18px;
}
.academy-review__student {
  margin-bottom: 6px;
}
.academy-review__student-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 4px;
  display: inline;
}
.academy-review__student-label {
  font-size: 13px;
  color: #616e7c;
  display: inline;
}
.academy-review__student-label:before {
  content: ' - ';
}
.academy-review__rating {
  font-size: 13px;
  color: #616e7c;
  display: flex;
  align-items: center;
  gap: 6px;
}
.academy-review__rating-stars {
  color: #ffb400;
}
.academy-review button:focus {
  outline: none;
}
@media (max-width: 768px) {
  .academy-review__inner {
    padding: 0 16px;
  }
  .academy-review__avatar-circle {
    width: 220px;
    height: 220px;
  }
  .academy-review__title {
    font-size: 24px;
  }
}
.academy-list {
  background: #fcf5f9;
}
.academy-list__inner {
  max-width: 1200px;
  margin: 0 auto 0px;
  padding: 0 24px 40px;
  box-sizing: border-box;
}
.academy-list__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  justify-content: center;
}
.academy-list__filter {
  min-width: 120px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 13px;
  color: #1f2933;
  cursor: pointer;
  transition: all 0.18s ease;
}
.academy-list__filter--active {
  border-color: #f63b64;
  background: #f63b64;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(246, 59, 100, 0.25);
}
.academy-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.academy-list__card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  grid: 1;
}
.academy-list__card-image-wrap {
  width: 100%;
  overflow: hidden;
}
.academy-list__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.academy-list__card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
}
.academy-list__card-meta {
  font-size: 12px;
  color: #616e7c;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.academy-list__card-meta-item {
  white-space: nowrap;
}
.academy-list__card-meta-divider {
  color: #d1d5db;
}
.academy-list__card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* 显示3行 */
  overflow: hidden;
  text-overflow: ellipsis;
  height: 49px;
}
.academy-list__card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #616e7c;
  margin-bottom: 14px;
  height: 50px;
}
.academy-list__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.academy-list__card-rating {
  font-size: 13px;
  color: #616e7c;
  display: flex;
  align-items: center;
  gap: 4px;
}
.academy-list__card-rating-stars {
  color: #ffb400;
}
.academy-list__card-price {
  font-size: 16px;
  font-weight: 700;
  color: #1f2933;
}
.academy-list__empty {
  grid-column: 2;
  text-align: center;
  padding: 50px 0;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  color: #616e7c;
}
.academy-list__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.academy-list__page-btn {
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 13px;
  color: #1f2933;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.16s ease;
}
.academy-list__page-btn:hover:not([disabled]) {
  border-color: #f63b64;
}
.academy-list__page-btn[disabled] {
  opacity: 0.45;
  cursor: default;
}
.academy-list__page-number--active {
  background: #f63b64;
  border-color: #f63b64;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(246, 59, 100, 0.25);
}
.academy-list button:focus {
  outline: none;
}
.academy-section {
  padding: 0px 0 32px;
  background: #fcf5f9;
}
.academy-heading__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.academy-heading__line {
  width: 72px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, #ff4b5c 0%, #ff7a59 50%, #a54bff 100%);
}
.academy-heading__title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.academy-heading__title-prefix {
  margin-right: 8px;
}
.academy-heading__title-highlight {
  background-image: linear-gradient(90deg, #ff4b5c 0%, #ff7a59 40%, #a54bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.academy-heading__subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: #616e7c;
}
.academy-team {
  padding: 40px 0 60px;
  background: #fcf5f9;
}
.academy-team__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.academy-team__heading {
  text-align: center;
  margin-bottom: 32px;
}
.academy-team__title {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 10px;
}
.academy-team__title-highlight {
  margin-left: 6px;
  background-image: linear-gradient(90deg, #ff4b5c 0%, #ff7a59 40%, #a54bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.academy-team__description {
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: #616e7c;
}
.academy-team__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.academy-team__card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  text-align: center;
  padding: 18px 16px 20px;
  box-sizing: border-box;
}
.academy-team__avatar-wrap {
  width: 100%;
  margin-bottom: 14px;
}
.academy-team__avatar {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.academy-team__name {
  font-size: 16px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 4px;
}
.academy-team__role {
  font-size: 13px;
  color: #616e7c;
}
.academy-platform {
  padding: 40px 0 60px;
  background: #ffffff;
}
.academy-platform__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 40px;
}
.academy-platform__left {
  flex: 0 0 48%;
  max-width: 555px;
}
.academy-platform__right {
  flex: 0 0 52%;
  display: flex;
  justify-content: flex-start;
  max-width: 645px;
}
.academy-platform__image-stack {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  min-height: 380px;
}
.academy-platform__image-item {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}
.academy-platform__image-item--primary {
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
}
.academy-platform__image-item--top-right {
  top: 24px;
  right: 10px;
  width: 180px;
  height: 190px;
}
.academy-platform__image-item--bottom {
  bottom: 0;
  left: 60px;
  width: 280px;
  height: 240px;
}
.academy-platform__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.academy-platform__content {
  max-width: 520px;
}
.academy-platform__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.academy-platform__title {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}
.academy-platform__title-highlight {
  background-image: linear-gradient(90deg, #4f46e5 0%, #7c3aed 40%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.academy-platform__description {
  font-size: 14px;
  line-height: 1.7;
  color: #616e7c;
  margin-bottom: 18px;
}
.academy-platform__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.academy-platform__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.academy-platform__feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.academy-platform__feature-item:nth-child(2) .academy-platform__feature-icon-wrap,
.academy-platform__feature-item:nth-child(3) .academy-platform__feature-icon-wrap {
  background: #e2e6f9;
}
.academy-platform__feature-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.academy-platform__feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 4px;
}
.academy-platform__feature-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #616e7c;
}
@media (max-width: 992px) {
  .academy-platform {
    padding: 32px 0 48px;
  }
  .academy-platform__left,
  .academy-platform__right {
    flex: 0 0 100%;
    width: 100%;
  }
  .academy-platform__image-stack {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .academy-platform__inner {
    padding: 0 16px;
  }
  .academy-platform__image-stack {
    min-height: 320px;
  }
  .academy-platform__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .academy-section {
    padding: 32px 0 24px;
  }
  .academy-heading__title {
    font-size: 26px;
  }
  .academy-heading__subtitle {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .academy-banner {
    padding: 32px 0 48px;
  }
  .academy-banner__title {
    font-size: 28px;
  }
  .academy-banner__search {
    flex-direction: row;
  }
  .academy-banner__search-input {
    border: 0;
  }
  .academy-banner__search-button {
    width: auto;
  }
  .academy-banner__stat-cards {
    position: static;
    margin-top: 16px;
    flex-direction: row;
    justify-content: center;
  }
}
