@import "https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&family=ZCOOL+KuaiLe&display=swap";
#main {
  font-size: 16px;
}
@font-face {
  font-family: "AlibabaPuHuiTiRegular";
  src: url(https://www.igo.cn/font/Alibaba-PuHuiTi/AlibabaPuHuiTiRegular.ttf);
}
@font-face {
  font-family: "AlibabaPuHuiTiBold";
  src: url(https://www.igo.cn/font/Alibaba-PuHuiTi/Alibaba-PuHuiTi-Bold_0.ttf);
}
body {
  font-family: "AlibabaPuHuiTiRegular";
}
#main .dis-f {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#main .dis-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#main .dis-c {
  display: flex;
  align-items: center;
  justify-content: center;
}

#main .dis-e {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
:root {
  --brand-blue-deep: #0a1e5c;
  --brand-blue: #1a3fb8;
  --brand-blue-light: #3a7bff;
  --brand-purple: #6a5cff;
  --brand-orange: #ff8a1c;
  --brand-orange-deep: #ff5f00;
  --brand-orange-light: #ffb347;
  --brand-yellow: #ffd54a;
  --bg-deep: #050e33;
  --bg-base: #08173f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: url(bg.webp) repeat-y;
  background-position: center;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: rgb(255 255 255);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.edu66-font-brush {
  letter-spacing: 0.05em;
  font-family: "ZCOOL KuaiLe", "Noto Sans SC", sans-serif;
}

.edu66-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.edu66-section {
  position: relative;
  padding: 80px 0 0;
}

.edu66-section__title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.edu66-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--brand-orange);
  margin-bottom: 0.75rem;
}

.edu66-eyebrow--yellow {
  color: var(--brand-yellow);
}

.edu66-section__title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
}

.edu66-section__title p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.edu66-dotted-grid {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}

.edu66-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgb(0 20 87);
  transition:
    background 0.3s,
    backdrop-filter 0.3s;
  display: none;
}

.edu66-site-header.edu66-is-scrolled {
  background: rgb(0 20 87);
  backdrop-filter: blur(10px);
  box-shadow: 1px 10px 9px #00000026;
  /* border-bottom: 1px solid #000000; */
  display: block;
}

.edu66-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}

.edu66-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 200px;
}

.edu66-brand__logo {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--brand-orange) 0%,
    var(--brand-orange-deep) 100%
  );
  font-family: "ZCOOL KuaiLe", sans-serif;
  font-size: 1.25rem;
  color: #fff;
}

.edu66-brand__name {
    font-family: "AlibabaPuHuiTiBold";
  line-height: 1.2;
}

.edu66-brand__tagline {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.edu66-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .edu66-nav {
    display: flex;
  }
}

.edu66-nav__link {
  white-space: nowrap;
  transition: color 0.2s;
}

.edu66-nav__link:hover {
  color: var(--brand-orange);
}

.edu66-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
    font-family: "AlibabaPuHuiTiBold";
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.3s,
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}

.edu66-btn--primary {
  background-image: linear-gradient(
    90deg,
    var(--brand-orange) 0%,
    var(--brand-orange-light) 40%,
    var(--brand-orange) 60%,
    var(--brand-orange-deep) 100%
  );
  background-size: 200% 100%;
  color: #fff;
  animation: shine 3s linear infinite;
}

.edu66-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.edu66-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.edu66-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.edu66-btn--block {
  width: 100%;
}

.edu66-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@keyframes shine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.edu66-btn--text {
  background: none;
  border: none;
  color: var(--brand-yellow);
    font-family: "AlibabaPuHuiTiBold";
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.3s;
}

.edu66-btn--text:hover {
  gap: 0.5rem;
}

#main main {
  background: url(banner.webp) no-repeat;
  background-position: top center;
}

.edu66-hero {
  position: relative;
  min-height: 698px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 6rem;
  width: 1200px;
  margin: 0 auto;
  justify-content: flex-end;
  padding-right: 165px;
  padding-bottom: 62px;
}

.edu66-hero .edu66-hero__cta{
  flex-direction: column;
  margin-top: 0;
}

.edu66-hero__bg,
.edu66-hero__overlay,
.edu66-hero__pattern {
  position: absolute;
  inset: 0;
}

.edu66-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.edu66-hero__overlay {
  background:
    linear-gradient(
      to right,
      rgba(5, 14, 51, 0.95) 0%,
      rgba(5, 14, 51, 0.75) 50%,
      rgba(5, 14, 51, 0.3) 100%
    ),
    linear-gradient(
      to top,
      rgba(5, 14, 51, 0.9) 0%,
      transparent 50%,
      rgba(5, 14, 51, 0.6) 100%
    );
}

.edu66-hero__pattern {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.2;
}

.edu66-hero__floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.edu66-hero__floater {
  position: absolute;
  border-radius: 50%;
}

.edu66-hero__floater--1 {
  top: 6rem;
  left: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--brand-yellow);
  animation: floaty 4s ease-in-out infinite;
}

.edu66-hero__floater--2 {
  top: 10rem;
  right: 6rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--brand-blue-light);
  animation: floaty 4s ease-in-out infinite 1s;
}

.edu66-hero__floater--3 {
  bottom: 8rem;
  left: 33.3333%;
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  animation: floaty 4s ease-in-out infinite 2s;
}

.edu66-hero__floater--4 {
  top: 50%;
  right: 25%;
  width: 0.375rem;
  height: 0.375rem;
  background: var(--brand-orange);
  animation: floaty 4s ease-in-out infinite 1.5s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.edu66-hero__inner {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.edu66-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.edu66-hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand-yellow);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.edu66-hero__title {
  font-family: "ZCOOL KuaiLe", "Noto Sans SC", sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.05;
  background: linear-gradient(
    to bottom,
    var(--brand-yellow) 0%,
    var(--brand-orange) 55%,
    var(--brand-orange-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(255, 138, 28, 0.35));
}

.edu66-hero__desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
}

.edu66-hero__desc strong {
  color: var(--brand-yellow);
    font-family: "AlibabaPuHuiTiBold";
}

.edu66-hero__meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.edu66-hero__meta-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 0.75rem 1.25rem;
}

.edu66-hero__meta-icon {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu66-hero__meta-icon--yellow {
  color: var(--brand-yellow);
}
.edu66-hero__meta-icon--blue {
  color: var(--brand-blue-light);
}

.edu66-hero__meta-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.edu66-hero__meta-value {
  font-size: 1.25rem;
    font-family: "AlibabaPuHuiTiBold";
  line-height: 1;
}

.edu66-hero__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.edu66-hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  z-index: 10;
}

.edu66-hero__scroll i {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%,
  100% {
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    transform: translateY(-25%);
  }
  50% {
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transform: translateY(0);
  }
}

.edu66-questions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .edu66-questions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.edu66-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s,
    background 0.35s;
}

.edu66-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 138, 28, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -22px rgba(0, 0, 0, 0.6);
}

.edu66-card--rounded {
  border-radius: 1.5rem;
}

.edu66-card__decoration {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(58, 123, 255, 0.15);
  transition: background 0.35s;
}

.edu66-card:hover .edu66-card__decoration {
  background: rgba(255, 138, 28, 0.2);
}

.edu66-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--brand-blue-light) 0%,
    var(--brand-blue) 100%
  );
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.edu66-card__icon i {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu66-card__index {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.edu66-card__title {
  font-size: 1.25rem;
    font-family: "AlibabaPuHuiTiBold";
  line-height: 1.375;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* CTA 濡亜绠� */
.edu66-cta-banner {
  position: relative;
  margin-top: 3.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2.5rem;
  background: linear-gradient(
    to right,
    var(--brand-blue-deep) 0%,
    var(--brand-blue) 50%,
    var(--brand-blue-light) 100%
  );
  color: #fff;
}

.edu66-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.4;
  pointer-events: none;
}

@media (min-width: 768px) {
  .edu66-cta-banner {
    padding: 3.5rem;
  }
}

.edu66-cta-banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .edu66-cta-banner__inner {
    flex-direction: row;
  }
}

.edu66-cta-banner__title {
  font-family: "ZCOOL KuaiLe", "Noto Sans SC", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand-yellow);
  margin-bottom: 0.5rem;
}

.edu66-cta-banner__sub {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
}

.edu66-cities__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .edu66-cities__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.edu66-cities__intro {
  max-width: 36rem;
}

.edu66-cities__intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
    font-family: "AlibabaPuHuiTiBold";
}

.edu66-cities__intro p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.edu66-cities__search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(8px);
  width: 100%;
}

@media (min-width: 768px) {
  .edu66-cities__search {
    width: 20rem;
  }
}

.edu66-cities__search i {
  color: rgba(255, 255, 255, 0.6);
}

.edu66-cities__search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: #fff;
}

.edu66-cities__search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.edu66-cities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .edu66-cities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .edu66-cities__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .edu66-cities__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.edu66-city-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s,
    background 0.35s;
}

.edu66-city-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 138, 28, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -22px rgba(0, 0, 0, 0.6);
}

.edu66-city-card.edu66-is-hidden {
  display: none;
}

.edu66-city-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.edu66-city-card__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.edu66-city-card__avatar {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--brand-orange) 0%,
    var(--brand-orange-deep) 100%
  );
  font-family: "ZCOOL KuaiLe", sans-serif;
  font-size: 1.125rem;
  color: #fff;
  padding: 6px;
}

.edu66-city-card__name {
  font-size: 1.25rem;
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
}

.edu66-city-card__date {
  color: var(--brand-yellow);
    font-family: "AlibabaPuHuiTiBold";
}

.edu66-city-card__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.edu66-city-card__row--top {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.625;
}

.edu66-city-card__row i {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu66-city-card__row--top i {
  margin-top: 0.125rem;
}

.edu66-city-card__row span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.edu66-city-card__date-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
}

.edu66-city-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 12px;
    font-family: "AlibabaPuHuiTiBold";
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}

.edu66-city-card__status--upcoming {
  background: rgba(58, 123, 255, 0.15);
  color: var(--brand-blue-light);
  border-color: rgba(58, 123, 255, 0.3);
}

.edu66-city-card__status--live {
  background: rgba(74, 222, 128, 0.18);
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.4);
}

.edu66-city-card__status--live::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: status-pulse 1.5s ease-out infinite;
}

.edu66-city-card__status--ended {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.edu66-city-card.edu66-is-ended {
  opacity: 0.55;
  filter: grayscale(0.5);
}

.edu66-city-card.edu66-is-ended:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.edu66-city-card.edu66-is-live {
  border-color: rgba(74, 222, 128, 0.45);
  background: linear-gradient(
    135deg,
    rgba(74, 222, 128, 0.08) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.edu66-city-card.edu66-is-live:hover {
  border-color: rgba(74, 222, 128, 0.7);
}

.edu66-cities__empty {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(255, 255, 255, 0.5);
  display: none;
}

.edu66-cities__empty.edu66-is-visible {
  display: block;
}

.edu66-zones__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .edu66-zones__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.edu66-zone-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 26px 22px 23px 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s,
    background 0.35s;
}

.edu66-zone-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 138, 28, 0.45);
  transform: translateY(-6px);
}

.edu66-zone-card__bg {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  opacity: 0.15;
  transition: opacity 0.35s;
}

.edu66-zone-card:hover .edu66-zone-card__bg {
  opacity: 0.25;
}

.edu66-zone-card__bg--blue {
  background: linear-gradient(
    135deg,
    var(--brand-blue-light) 0%,
    var(--brand-blue) 100%
  );
}

.edu66-zone-card__bg--orange {
  background: linear-gradient(
    135deg,
    var(--brand-orange) 0%,
    var(--brand-orange-deep) 100%
  );
}

.edu66-zone-card__bg--purple {
  background: linear-gradient(
    135deg,
    var(--brand-blue-light) 0%,
    var(--brand-purple) 100%
  );
}

.edu66-zone-card__bg--yellow {
  background: linear-gradient(
    135deg,
    var(--brand-yellow) 0%,
    var(--brand-orange) 100%
  );
}

.edu66-zone-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.edu66-zone-card__index {
  font-size: 0.6875rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.45);
}

.edu66-zone-card__tag {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
}

.edu66-zone-card__tag--blue {
  background: linear-gradient(
    to right,
    var(--brand-blue-light) 0%,
    var(--brand-blue) 100%
  );
}

.edu66-zone-card__tag--orange {
  background: linear-gradient(
    to right,
    var(--brand-orange) 0%,
    var(--brand-orange-deep) 100%
  );
}

.edu66-zone-card__tag--purple {
  background: linear-gradient(
    to right,
    var(--brand-blue-light) 0%,
    var(--brand-purple) 100%
  );
}

.edu66-zone-card__tag--yellow {
  background: linear-gradient(
    to right,
    var(--brand-yellow) 0%,
    var(--brand-orange) 100%
  );
}

.edu66-zone-card__title {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
  margin-top: 0.75rem;
}

.edu66-zone-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.875rem;
  flex-shrink: 0;
}

.edu66-zone-card__icon i {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu66-zone-card__icon--blue {
  background: linear-gradient(
    135deg,
    var(--brand-blue-light) 0%,
    var(--brand-blue) 100%
  );
}

.edu66-zone-card__icon--orange {
  background: linear-gradient(
    135deg,
    var(--brand-orange) 0%,
    var(--brand-orange-deep) 100%
  );
}

.edu66-zone-card__icon--purple {
  background: linear-gradient(
    135deg,
    var(--brand-blue-light) 0%,
    var(--brand-purple) 100%
  );
}

.edu66-zone-card__icon--yellow {
  background: linear-gradient(
    135deg,
    var(--brand-yellow) 0%,
    var(--brand-orange) 100%
  );
}

.edu66-zone-card__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.edu66-zone-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
}

.edu66-zone-card__item::before {
  content: "";
  margin-top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
}

.edu66-zone-card__action {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.edu66-lectures__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.edu66-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 0.25rem;
}

.edu66-tabs__btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
    font-family: "AlibabaPuHuiTiBold";
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  color: rgba(255, 255, 255, 0.7);
}

.edu66-tabs__btn:hover {
  color: #fff;
}

.edu66-tabs__btn.edu66-is-active {
  background: linear-gradient(
    to right,
    var(--brand-orange) 0%,
    var(--brand-orange-deep) 100%
  );
  color: #fff;
}

.edu66-tabs__panel {
  display: none;
}

.edu66-tabs__panel.edu66-is-active {
  display: block;
}

.edu66-lectures__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .edu66-lectures__layout {
    grid-template-columns: 2fr 3fr;
  }
}

.edu66-lectures__poster {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.edu66-lectures__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.edu66-lectures__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 92, 0.85) 0%,
    rgba(10, 30, 92, 0.3) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.edu66-lectures__poster-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
  z-index: 1;
}

.edu66-lectures__poster-foot .edu66-eyebrow {
  color: var(--brand-yellow);
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.edu66-lectures__poster-foot h4 {
  font-size: 1.5rem;
    font-family: "AlibabaPuHuiTiBold";
}

.edu66-lectures__poster-foot p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.edu66-lectures__body {
  display: flex;
  flex-direction: column;
}

.edu66-lectures__tag {
  display: inline-block;
  background: rgba(255, 138, 28, 0.15);
  color: var(--brand-orange-light);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
    font-family: "AlibabaPuHuiTiBold";
  margin-bottom: 1rem;
  align-self: flex-start;
}

.edu66-lectures__title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
  line-height: 1.25;
}

.edu66-lectures__subtitle {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "ZCOOL KuaiLe", sans-serif;
  font-size: 1.25rem;
}

.edu66-lectures__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .edu66-lectures__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.edu66-lecture-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.edu66-lecture-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.edu66-lecture-card__num {
  font-family: "ZCOOL KuaiLe", sans-serif;
  font-size: 1.5rem;
  color: var(--brand-orange);
}

.edu66-lecture-card__name {
  font-size: 1.125rem;
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
}

.edu66-lecture-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
}

.edu66-lectures__highlight {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--brand-orange);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.825;
}
.edu66-lectures__highlight .edu66-btn{
    font-size: 16px;
    height: 41px;
}
.edu66-lectures__highlight p{
  margin-bottom: 22px;
}
.edu66-lectures__highlight strong {
  color: var(--brand-yellow);
    font-family: "AlibabaPuHuiTiBold";
}

.edu66-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.edu66-roundtable {
  color: #fff;
}

.edu66-roundtable__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.edu66-roundtable__eyebrow {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 138, 28, 0.15);
  color: #ffb347;
  font-size: 0.75rem;
    font-family: "AlibabaPuHuiTiBold";
  margin-bottom: 1rem;
}

.edu66-roundtable__title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
  line-height: 1.2;
}

.edu66-roundtable__subtitle {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
}

/* 閸欏苯鍨純鎴炵壐 */
.edu66-roundtable__grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .edu66-roundtable__grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 瀹革箑宕遍悧鍥风礄濞ｈ精鎽戝〒鎰綁 + 閸﹀棛鍋ｇ憗鍛淬偘閿涳拷 */
.edu66-roundtable__qlist-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1e5c 0%, #1a3fb8 100%);
  height: 100%;
}

@media (min-width: 768px) {
  .edu66-roundtable__qlist-card {
    padding: 2.5rem;
  }
}

.edu66-roundtable__card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}

.edu66-roundtable__qlist-quote {
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-size: 140px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  pointer-events: none;
}

.edu66-roundtable__qlist-inner {
  position: relative;
}

.edu66-roundtable__card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.edu66-roundtable__icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.edu66-roundtable__icon-box--yellow {
  background: rgba(255, 213, 74, 0.15);
  border: 1px solid rgba(255, 213, 74, 0.3);
  color: #ffd54a;
}

.edu66-roundtable__icon-box--blue {
  background: rgba(58, 123, 255, 0.15);
  border: 1px solid rgba(58, 123, 255, 0.3);
  color: #7aa7ff;
}

.edu66-roundtable__card-title {
  font-size: 1.25rem;
    font-family: "AlibabaPuHuiTiBold";
  letter-spacing: 0.05em;
}

.edu66-roundtable__card-en {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3em;
  margin-top: 0.125rem;
}

.edu66-roundtable__qlist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.edu66-roundtable__qitem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s, border-color 0.2s;
}

.edu66-roundtable__qitem:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 213, 74, 0.4);
}

.edu66-roundtable__qitem-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ffd54a 0%, #ff8a1c 100%);
  color: #0a1e5c;
  font-size: 0.75rem;
    font-family: "AlibabaPuHuiTiBold";
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu66-roundtable__qitem-q {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  padding-top: 0.375rem;
}

/* 閸欏啿宕遍悧鍥风礄濞ｈ精澹婇悳鑽ゆ嫅閿涳拷 */
.edu66-roundtable__guests-card {
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .edu66-roundtable__guests-card {
    padding: 2.5rem;
  }
}

.edu66-roundtable__guests-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 640px) {
  .edu66-roundtable__guests-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.edu66-roundtable__guest {
  position: relative;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.edu66-roundtable__guest:hover {
  border-color: rgba(255, 138, 28, 0.5);
}

.edu66-roundtable__guest-glow {
  position: absolute;
  right: -1.75rem;
  top: -1.75rem;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  opacity: 0.15;
  transition: opacity 0.3s;
  pointer-events: none;
}

.edu66-roundtable__guest-glow--blue {
  background: linear-gradient(135deg, #3a7bff 0%, #1a3fb8 100%);
}

.edu66-roundtable__guest-glow--orange {
  background: linear-gradient(135deg, #ff8a1c 0%, #ff5f00 100%);
}

.edu66-roundtable__guest-glow--purple {
  background: linear-gradient(135deg, #6a5cff 0%, #3a7bff 100%);
}

.edu66-roundtable__guest-glow--yellow {
  background: linear-gradient(135deg, #ffd54a 0%, #ff8a1c 100%);
}

.edu66-roundtable__guest:hover .edu66-roundtable__guest-glow {
  opacity: 0.3;
}

.edu66-roundtable__guest-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.edu66-roundtable__guest-icon--blue {
  background: linear-gradient(135deg, #3a7bff 0%, #1a3fb8 100%);
}

.edu66-roundtable__guest-icon--orange {
  background: linear-gradient(135deg, #ff8a1c 0%, #ff5f00 100%);
}

.edu66-roundtable__guest-icon--purple {
  background: linear-gradient(135deg, #6a5cff 0%, #3a7bff 100%);
}

.edu66-roundtable__guest-icon--yellow {
  background: linear-gradient(135deg, #ffd54a 0%, #ff8a1c 100%);
}

.edu66-roundtable__guest-name {
  position: relative;
  color: #fff;
    font-family: "AlibabaPuHuiTiBold";
}

.edu66-roundtable__guest-role {
  position: relative;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* 鎼存洟鍎� 4 瀵姳瀵屾０妯哄幢 */
.edu66-roundtable__themes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .edu66-roundtable__themes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .edu66-roundtable__themes {
    grid-template-columns: repeat(4, 1fr);
  }
}

.edu66-roundtable__theme {
  border-radius: 1rem;
  padding: 1.5rem;
}

.edu66-roundtable__theme-num {
  font-size: 1.875rem;
  color: var(--brand-orange);
  margin-bottom: 0.5rem;
}

.edu66-roundtable__theme-title {
  font-size: 1.125rem;
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
}

.edu66-roundtable__theme-label {
  font-size: 0.75rem;
  color: #ffb347;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
    font-family: "AlibabaPuHuiTiBold";
}

.edu66-roundtable__theme-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.edu66-signup__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .edu66-signup__layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.edu66-signup__intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
    font-family: "AlibabaPuHuiTiBold";
  line-height: 1.25;
}

.edu66-signup__intro .edu66-accent {
  font-family: "ZCOOL KuaiLe", "Noto Sans SC", sans-serif;
  background: linear-gradient(
    to right,
    var(--brand-yellow) 0%,
    var(--brand-orange) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.edu66-signup__intro p {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.625;
}

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

.edu66-signup__stat {
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  text-align: center;
}

.edu66-signup__stat-num {
  font-size: 1.875rem;
    font-family: "AlibabaPuHuiTiBold";
  color: var(--brand-yellow);
}

.edu66-signup__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.edu66-signup__form-wrap {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.edu66-signup__badge {
  position: absolute;
  top: -1rem;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
  background: linear-gradient(
    to right,
    var(--brand-orange) 0%,
    var(--brand-orange-deep) 100%
  );
}

.edu66-signup__form h3 {
  font-size: 1.5rem;
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
  margin-bottom: 0.5rem;
}

.edu66-signup__form-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.edu66-hp-honey {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.edu66-form__group {
  margin-bottom: 1rem;
}

.edu66-form__label {
  display: block;
  font-size: 0.75rem;
    font-family: "AlibabaPuHuiTiBold";
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.edu66-form__input,
.edu66-form__select,
.edu66-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.edu66-form__input::placeholder,
.edu66-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.edu66-form__input:focus,
.edu66-form__select:focus,
.edu66-form__textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 2px rgba(255, 138, 28, 0.25);
}

.edu66-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .edu66-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.edu66-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' opacity='0.5'%3E%3Cpath d='M12 16l-6-6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.edu66-form__select option {
  background: var(--brand-blue-deep);
  color: #fff;
}

.edu66-form__textarea {
  resize: vertical;
  font-family: inherit;
}

.edu66-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.edu66-form__radio {
  cursor: pointer;
  position: relative;
}

.edu66-form__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.edu66-form__radio span {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.edu66-form__radio input:checked + span {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}

/* form 閸愬懐娈� li/em 閸楁洟鈧绱欏ǎ杈閻滆崵鎷戦懗灞炬珯闁倿鍘ら敍宀冾潒鐟欏绗屽鍦崶閻拷 .edu66-radio_box 娑撯偓閼疯揪绱� */
.edu66-radio_box--form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.edu66-radio_box--form li {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.edu66-radio_box--form li:hover {
  color: var(--brand-orange);
}

.edu66-radio_box--form li em {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
  box-shadow: none;
}

.edu66-radio_box--form li:hover em {
  border-color: var(--brand-orange);
}

.edu66-radio_box--form li.edu66-active em {
  border-color: var(--brand-orange);
  background: rgba(255, 138, 28, 0.15);
}

.edu66-radio_box--form li.edu66-active em::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--brand-orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.edu66-radio_box--form li.edu66-active span {
  color: var(--brand-orange);
    font-family: "AlibabaPuHuiTiBold";
}

.edu66-form__submit {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  width: 100%;
  border-radius: 9999px;
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
  background-image: linear-gradient(
    90deg,
    var(--brand-orange) 0%,
    var(--brand-orange-light) 40%,
    var(--brand-orange) 60%,
    var(--brand-orange-deep) 100%
  );
  background-size: 200% 100%;
  animation: shine 3s linear infinite;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.edu66-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.edu66-form__notice {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 0.75rem;
}

.edu66-form__success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.edu66-form__success.edu66-is-visible {
  display: block;
}

.edu66-form__success i {
  font-size: 3rem;
  color: var(--brand-yellow);
}

.edu66-form__success h4 {
  font-size: 1.25rem;
    font-family: "AlibabaPuHuiTiBold";
  color: #fff;
  margin: 1rem 0 0.5rem;
}

.edu66-form__success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}
.edu66-text-gradient-orange {
  background: linear-gradient(
    var(--brand-yellow) 0%,
    var(--brand-orange) 55%,
    var(--brand-orange-deep) 100%
  );
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  -webkit-background-clip: text;
  background-clip: text;
}

.edu66-text-gradient-yellow-orange {
  background: linear-gradient(
    to right,
    var(--brand-yellow) 0%,
    var(--brand-orange) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 640px) {
  .edu66-section {
    padding: 4rem 0;
  }
}
.edu66-ztlayout {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20;
  display: none;
}

.edu66-ztlayout .edu66-ztlayout_box {
  width: 685px;
  /* height: 453px; */
  background: url(bg.webp) 0 0/100% repeat-y;
  padding: 15px;
  border-radius: 20px;
}
.edu66-ztlayout h2 {
  font-family: "AlibabaPuHuiTiBold";
  font-size: 25px;
  text-align: center;
  font-weight: normal;
  line-height: 40px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.edu66-ztlayout h2 span{
  color: var(--brand-orange);
}
.edu66-ztlayout > div {
  position: fixed;
  top: 47%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.edu66-ztlayout .edu66-ztlayout_box .edu66-ztform {
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  padding: 18px 20px 21px;
  /* height: 374px; */
  background: #ffffff;
}

.edu66-ztlayout .edu66-part {
  margin-bottom: 17px;
  flex-wrap: wrap;
}

.edu66-ztlayout .edu66-part > b {
  width: 100%;
  font-size: 16px;
  display: block;
  line-height: 18px;
  border-left: 5px solid var(--brand-orange);
  padding-left: 10px;
  margin-bottom: 13px;
    font-family: "AlibabaPuHuiTiBold";
  color: #000;
}

.edu66-ztlayout ul.edu66-radio_box {
  width: 100%;
  flex-wrap: wrap;
  padding-left: 0.5rem;
}

.edu66-ztlayout ul.edu66-radio_box li {
  font-size: 14px;
  color: #404040;
  margin-right: 30px;
  cursor: pointer;
}

.edu66-ztlayout ul.edu66-radio_box2 li {
  margin-right: 14px;
}

.edu66-ztlayout ul.edu66-radio_box2 li:last-child {
  margin-right: 0;
}

.edu66-ztlayout ul.edu66-radio_box li.edu66-mar {
  margin-top: 0;
}

.edu66-ztlayout ul.edu66-radio_box li em {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  border: 1.5px solid rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
  box-shadow: none;
  margin-right: 8px;
}
.edu66-ztlayout ul.edu66-radio_box li.edu66-active em,
.edu66-ztlayout ul.edu66-radio_box li:hover em {
  border-color: var(--brand-orange);
  background: rgba(255, 138, 28, 0.15);
}
.edu66-ztlayout ul.edu66-radio_box li.edu66-active em::after,
.edu66-ztlayout ul.edu66-radio_box li:hover em::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: var(--brand-orange);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  box-sizing: border-box;
}

.edu66-ztlayout .edu66-ztlayout_box .edu66-item {
  width: 197px;
  height: 38px;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  align-items: stretch !important;
  border: 1px solid #dfdfdf;
}

.edu66-ztlayout .edu66-ztlayout_box .edu66-item.edu66-canNot {
  width: 49%;
}

.edu66-ztlayout .edu66-ztlayout_box .edu66-item img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.4rem;
  width: 0.5rem;
}

.edu66-ztlayout .edu66-ztlayout_box .edu66-item.edu66-yzm span {
  width: 40%;
  text-align: center;
  background-color: #0f3787;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 14px;
}

.edu66-ztlayout .edu66-ztlayout_box input,
.edu66-ztlayout .edu66-ztlayout_box select {
  width: 100%;
  padding-left: 0.3rem;
  height: 100%;
  background-color: #fff;
  font-size: 14px;
  color: #b3b3b3;
  border: none;
}

.edu66-ztlayout .edu66-ztlayout_box input::placeholder {
  color: #b3b3b3;
}

.edu66-ztlayout .edu66-ztlayout_box .edu66-edubtn {
  width: 203px;
  height: 48px;
  cursor: pointer;
  margin: 10px auto 0;
  /* background: url(https://www.igo.cn/zt/65edu/img/laybtn.png) 0 0/100% no-repeat; */
  /* color: #000; */
  font-size: 16px;
    font-family: "AlibabaPuHuiTiBold";
}

.edu66-ztlayout .edu66-ztlayout_box p {
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  color: #8b8b8b;
}

.edu66-ztlayout .edu66-ztlayout_box .edu66-close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 40px;
  border-radius: 9999px;
  transition:
    background 0.2s,
    color 0.2s;
}

.edu66-ztlayout .edu66-ztlayout_box .edu66-close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--brand-orange-deep);
}
