.content-body {
  background-color: transparent;
  display: block;
  width: 100%;

}

.content-body .overlap {
  width: 100%;
  display: block;
}

.content-body .top {
  width: 100%;
}

.content-body .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;

}

/* 左侧区域 */
.content-body .header-left {
  flex: 0 0 auto;
  background-color: #d82129;
}

.content-body .logo-section {
  display: flex;
  align-items: center;
  padding: 16px 24px;
}

.content-body .logo-img {
  height: 54px;
  width: auto;
}

/* 中间区域 */
.content-body .header-center {
  margin-left: 150px;
  flex: 1;
  display: flex;
  height: 100%;
  justify-content: start;
}

.content-body .main-nav {
  display: flex;
  gap: 80px;
  align-items: center;
}

.content-body .main-nav a {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 500;
  font-size: 17px;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 34px 0;
  display: block;
  height: 100%;
}

.content-body .main-nav a:hover,
.content-body .main-nav a.active {
  color: #d82129;
}

/* 下拉菜单样式 */
.content-body .nav-dropdown {
  position: relative;
  height: 100%;
  display: inline-block;
}

.content-body .nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: transparent;
  z-index: 999;
  display: none;
}

.content-body .nav-dropdown:hover::after {
  display: block;
}

.content-body .dropdown-trigger {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 500;
  font-size: 17px;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  padding: 34px 0;
  display: block;
  height: 100%;
}

.content-body .dropdown-trigger::after {
  content: '▼';
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #666;
}

.content-body .dropdown-trigger:hover,
.content-body .nav-dropdown:hover .dropdown-trigger {
  color: #d82129;
}

.content-body .nav-dropdown:hover .dropdown-trigger::after {
  transform: rotate(180deg);
  color: #d82129;
}

.content-body .dropdown-menu {
  position: fixed;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  width: 100%;
  padding: 25px;
  display: none;
  z-index: 1000;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.content-body .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-bottom: none;
  border-right: none;
  z-index: -1;
}

.content-body .nav-dropdown:hover .dropdown-menu,
.content-body .dropdown-menu:hover {
  display: block;
}



/* ===== Mega Dropdown: 名校大全 ===== */
.nav-dropdown { position: relative; }

.nav-dropdown .nav-trigger{
  display:inline-flex; align-items:center; gap:6px;
}

/* 面板容器 */
.nav-dropdown .mega{
  position:absolute; left:50%; top:100%;
  transform:translate(-50%, 10px);
  width:1440px; max-width:calc(100vw - 32px);
  background:#fff; 
  box-shadow:0 18px 50px rgba(0,0,0,.12);
  padding:18px; opacity:0; visibility:hidden;
  transition:transform .2s ease, opacity .2s ease, visibility .2s ease;
  z-index:99;
}
.nav-dropdown:hover .mega,
.nav-dropdown:focus-within .mega{
  opacity:1; visibility:visible; transform:translate(-36%,0);
}

/* 内部布局：左侧栏 + 右侧网格 */
.nav-dropdown .mega-inner{
  --accent:#d7000f; --line:#eee; --muted:#666; --title:#111;
  display:grid; grid-template-columns: 170px 1fr; gap:20px; align-items:start;
  font-family:"PingFang SC","Microsoft YaHei",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

/* 隐藏切换用的单选按钮 */
.nav-dropdown .mega-inner input[type="radio"]{ position:absolute; left:-9999px; }

/* 左侧栏 */
.nav-dropdown .mega-aside{
  padding:6px 10px; border-right:1px solid var(--line);
}
.nav-dropdown .mega-aside .aside-title{
  font-size:20px; font-weight:900; color:var(--title); line-height:1.2; margin-bottom:12px;
  letter-spacing:.5px;
}
.nav-dropdown .mega-tabs{ display:flex; flex-direction:column; gap:10px; width:86px; }
.nav-dropdown .mega-tabs .tab{
  display:flex; align-items:center; justify-content:center;
  height:36px; border-radius:6px; cursor:pointer; user-select:none;
  font-weight:800; font-size:14px; border:1px solid var(--accent); color:var(--accent); background:#fff;
}
.nav-dropdown .mega-tabs .tab:hover{ filter:brightness(.97); }

/* 选中态（根据 radio 控制） */
#ge-tab-1:checked ~ .mega-aside .tab-1,
#ge-tab-2:checked ~ .mega-aside .tab-2{
  background:var(--accent); color:#fff; border-color:var(--accent);
}

/* 右侧内容区 */
.nav-dropdown .mega-panels{ min-height:360px; }
.nav-dropdown .mega-panel{ display:none; }
#ge-tab-1:checked ~ .mega-panels .panel-1{ display:grid; }
#ge-tab-2:checked ~ .mega-panels .panel-2{ display:grid; }

/* 学校卡片网格 */
.nav-dropdown .schools{
  grid-template-columns: repeat(5, 1fr);
  gap:18px;
}
@media (max-width: 920px){
  .nav-dropdown .mega-inner{ grid-template-columns: 1fr; }
  .nav-dropdown .mega-aside{ border-right:0; display:flex; align-items:center; gap:14px; }
  .nav-dropdown .mega-tabs{ flex-direction:row; width:auto; }
}

.nav-dropdown .school{
  display:block; text-align:center; color:#333; text-decoration:none;
}
.nav-dropdown .school .thumb{
  width:100%; aspect-ratio: 16/10; border-radius:12px; overflow:hidden; background:#f3f5f7;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}
.nav-dropdown .school .thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.nav-dropdown .school .name{ margin-top:8px; font-weight:700; font-size:14px; color:#444; }
.nav-dropdown .school:hover .name{ color:#000; }









.content-body .dropdown-grid {
  width: 1600px;
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.content-body .dropdown-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #ffffff;
}

.content-body .dropdown-item:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;

}

.content-body .dropdown-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
  flex-shrink: 0;
}

.content-body .dropdown-content {
  flex: 1;
  line-height: 45px;
  font-size: 17px;
}

.content-body .dropdown-content h4 {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  margin: 0 0 5px 0;
  transition: color 0.3s ease;
}

.content-body .dropdown-content p {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  font-size: 12px;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}

.content-body .dropdown-item:hover .dropdown-content h4 {
  color: #d82129;
}

.content-body .dropdown-item:hover .dropdown-content p {
  color: #333333;
}

/* 右侧区域 */
.content-body .header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.content-body .search-box {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 8px 15px;
}

.content-body .search-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: "Noto Sans SC", Helvetica;
  font-size: 14px;
  color: #333;
  width: 120px;
}

.content-body .search-input::placeholder {
  color: #999999;
}

.content-body .search-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
}

.content-body .search-btn img {
  width: 16px;
  height: 16px;
}



.content-body .phone-number {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 600;
  font-size: 20px;
  color: #d82129;
  line-height: 1.2;
}

.content-body .phone-label {
  font-family: "Noto Sans SC", Helvetica;
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.content-body .cta-button {
  background: #d82129;
  color: white;
  padding: 23px 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-body .cta-button:hover {
  transform: translate(-10px);
}

.content-body .cta-button i {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 40px;
}

.content-body .cta-button span {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  flex: 1;
}

.content-body .text-wrapper-4 {
  position: absolute;
  width: 164px;
  top: 44px;
  left: 1548px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #d82129;
  font-size: 21px;
  letter-spacing: 0;
  line-height: normal;
}

.content-body .text-wrapper-5 {
  width: 86px;
  top: 24px;
  left: 1547px;
  font-weight: 400;
  color: #999999;
  font-size: 14px;
  line-height: normal;
  position: absolute;
  font-family: "Noto Sans SC", Helvetica;
  letter-spacing: 0;
}

.content-body .banners {
  width: 100%;
  position: relative;

}

.content-body .banner {
  width: 100%;
  position: relative;
  height: 920px;
  overflow: hidden;
}

/* Banner轮播容器 */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 轮播项 */
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

/* 轮播图片 */
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 指示器 */
.banner-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: #ffffff;
}

/* 导航按钮 */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
}

.banner-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.banner-prev {
  left: 20px;
}

.banner-next {
  right: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .content-body .banner {
    height: 250px;
  }

  .banner-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .banner-prev {
    left: 10px;
  }

  .banner-next {
    right: 10px;
  }

  .banner-indicators {
    bottom: 10px;
  }
}

/* 为什么选择格鲁吉亚留学 */
.why-georgia {
  padding: 100px 20px;
  box-sizing: border-box;
  background: url('../images/cb-bg.png') no-repeat center center;
  text-align: center;
  position: relative;
}

.why-georgia h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.why-georgia .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}

.georgia-features {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  height: 490px;
  display: flex;
  justify-content: space-between;
}

.georgia-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 625px;
  height: 544px;
  background-image: url('../images/c-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.features-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 520px;
}

.features-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 520px;
}



.feature-icon {
  width: 50px;
  height: 50px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .why-georgia {
    padding: 60px 15px;
  }

  .why-georgia h2 {
    font-size: 2rem;
  }

  .georgia-features {
    height: auto;
    flex-direction: column;
    gap: 30px;
    max-width: 400px;
  }

  .georgia-center {
    position: static;
    transform: none;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    order: 2;
  }

  .features-left,
  .features-right {
    width: 100%;
    gap: 20px;
  }

  .features-left {
    order: 1;
  }

  .features-right {
    order: 3;
  }

  .feature-item {
    max-width: 350px;
    margin: 0 auto;
  }
}


.features-banner {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  position: relative;
}



.features-banner-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  min-height: 120px;
  position: relative;
  z-index: 1;
}

.feature-banner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 22px 28px;
  position: relative;
}

.feature-banner-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.feature-banner-icon i {
  font-size: 33px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.feature-banner-text {
  font-size: 28px;
  font-weight: 600;
  white-space: nowrap;
}

/* 公共浮出卡片样式 */
.feature-popover {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 150px;
  background: #f59e0b;
  color: #fff;
  padding: 18px 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.popover-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.popover-title i {
  font-size: 24px;
  margin-right: 8px;
}

.popover-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.95;
}

/* hover时显示卡片 */
.feature-banner-item:hover .feature-popover {
  opacity: 1;
  transform: translateY(0);
}

/* 移动端适配 */
@media (max-width: 968px) {
  .features-banner-container {
    grid-template-columns: 1fr;
  }

  .feature-banner-item:not(:first-child)::before {
    display: none;
  }

  .feature-popover {
    position: static;
    margin-top: 10px;
    width: auto;
    opacity: 0;
    transform: none;
    display: none;
  }

  .feature-banner-item:hover .feature-popover {
    display: block;
    opacity: 1;
  }
}




/* ===== 布局骨架 ===== */
.about-ge-study {
  padding: 40px 24px 80px;
  background: #fff;
}


/* ===== 左侧文案 ===== */
.about-eyebrow {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
  margin-bottom: 16px;
  padding-left: 15px;
  position: relative;
}

.about-eyebrow::after {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  background: #a60f16;
  position: absolute;
  left: 0;
  top: 11px;
}

.about-title {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 18px;
  color: #0f172a;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  background: #f7f7f7;
  color: #c0141a;
  border: 1px solid #efefef;
  border-radius: 2px;
  font-size: 17px;
  font-weight: 700;
}

.about-paras {
  padding: 30px 0;
}

.about-paras p {
  color: #475569;
  line-height: 1.9;
  font-size: 18px;
  margin: 0 0 14px;
  text-indent: 2em;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  margin-top: 8px;
  background: #d92129;
  color: #fff;
  border-radius: 28px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(217, 33, 41, .25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  background: #b9151c;
}

/* ===== 右侧：大图 ===== */
.about-right {
  position: relative;
}

.about-hero {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .12);
}

.about-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== 红色优势条（3列） ===== */
.advantages-strip {
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(135deg, #d92129 0%, #9f0f16 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.advantages-container {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 18px;
}

.adv-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  padding: 20px 24px;
  position: relative;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.adv-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, .18);
}

/* 图标：白底圆形 */
.adv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .18);
  flex-shrink: 0;
  transition: transform .25s ease;
}

.adv-icon span {
  font-size: 32px;
  line-height: 1;
}

/* 标题/描述 */
.adv-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.adv-texts i {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #d20202;
  font-size: 34px;
}

.adv-title {
  margin: 0;
  font-weight: 800;
  font-size: 18px;
}

.adv-desc {
  margin: 0;
  font-size: 14px;
  opacity: .95;
}











.school-recommend {
  padding: 60px 0;
  background: #f9fafb;
}

.school-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.school-header {
  text-align: center;
  margin: 40px 0;
}

.school-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}

.school-header p {
  color: #666;
  font-size: 18px;
}

.school-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.school-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(90deg, #fff 0%, #ffe2df 100%);
  border-radius: 12px;
  padding: 30px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #dcdcdc;
}

.school-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: linear-gradient(90deg, #fff 0%, #f21800 100%);
  border: 1px solid #fff;
}

.school-card:hover p,
.school-card:hover a,
.school-card:hover h3 {
  color: #fff;
}

/* 左侧缩略图 */
.school-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
}

.school-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右侧文字信息 */
.school-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  height: 42px;
}

.school-info p {
  font-size: 14px;
  color: #444;
  margin: 10px 0;
}

.school-info a {
  display: inline-block;
  margin-top: 6px;
  color: #d92129;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.school-info a:hover {
  text-decoration: underline;
}


.school-more {
  text-align: center;
  margin-top: 40px;
  margin: 40px auto;
}

.school-more a {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 28px;
  background: #d92129;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.school-more a:hover {
  background: #b9151c;
  transform: translateY(-2px);
}





/* 容器宽度：1600 居中 */
.accordion-wrap {
  max-width: 1258px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* 可调参数 */
:root {
  --acc-height: 360px;
  /* 整体高度 */
  --acc-radius: 22px;
  /* 圆角 */
  --acc-gap: 8px;
  /* 卡片间距 */
  --acc-shrink: .85;
  /* 收缩时的 flex 值（越小越窄） */
  --acc-expand: 3;
  /* 展开时的 flex 值（越大越宽） */
  --mask-normal: .45;
  /* 默认遮罩 */
  --mask-active: .15;
  /* 激活遮罩 */
  --duration: .45s;
  /* 动画时长 */
}

.accordion {
  display: flex;
  gap: var(--acc-gap);
  height: var(--acc-height);
}

/* 单卡片 */
.acc-item {
  position: relative;
  flex: 1 1 0%;
  border-radius: var(--acc-radius);
  overflow: hidden;
  background: var(--bg) center/cover no-repeat;
  cursor: pointer;
  transition: flex var(--duration) ease, transform var(--duration) ease;
  will-change: flex, transform;
}

/* 遮罩 */
.acc-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--mask-normal));
  transition: background var(--duration) ease;
}

/* 内容 */
.acc-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}

.acc-inner.center {
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  transition: opacity var(--duration) ease;
}

.acc-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: .04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.acc-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 34ch;
  margin: 0;
  opacity: .95;
}

/* 竖排侧标签（收缩时显示），用 ::after 生成 */
.acc-item::after {
  content: attr(data-title);
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);

  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-weight: 800;
  letter-spacing: .1em;
  opacity: .85;
  font-size: 22px;
  transition: opacity var(--duration) ease, transform var(--duration) ease;
  pointer-events: none;
}

/* 悬停在容器：全部先收缩 */
.accordion:hover .acc-item {
  flex: var(--acc-shrink);
}

/* 当前项展开 */
.accordion:hover .acc-item:hover {
  flex: 4;
}

.accordion:hover .acc-item:hover .acc-mask {
  background: rgba(0, 0, 0, var(--mask-active));
}

.accordion:hover .acc-item:hover .acc-inner.center {
  opacity: 1;
}

/* 展开时隐藏竖排标签 */
.accordion:hover .acc-item:hover::after {
  opacity: 0;
  transform: translateX(-50%) translateY(-8px);
}

/* 初始默认：第1项作为 active（由 JS 加类名控制自动轮播） */
.acc-item.is-active {
  flex: 4;
}

.acc-item.is-active .acc-mask {
  background: rgba(0, 0, 0, var(--mask-active));
}

.acc-item.is-active .acc-inner.center {
  opacity: 1;
}

.acc-item.is-active::after {
  opacity: 0;
  transform: translateX(-50%) translateY(-8px);
}

/* 响应式：小屏堆叠为纵向手风琴（可选） */
@media (max-width: 900px) {
  :root {
    --acc-height: 520px;
  }

  .accordion {
    flex-direction: column;
    height: auto;
  }

  .acc-item {
    height: 240px;
  }

  .acc-item::after {
    writing-mode: horizontal-tb;
    left: 22px;
    transform: none;
    top: 16px;
  }

  .acc-inner {
    justify-content: flex-end;
  }
}





/* Hover 效果（每块都有） */

/* ===== 响应式 ===== */
@media (max-width: 1100px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .advantages-container {
    grid-template-columns: 1fr;
  }

  .adv-item:not(:first-child)::before {
    display: none;
  }

  .adv-item {
    padding: 16px;
  }

  .adv-icon {
    width: 56px;
    height: 56px;
  }

  .adv-icon span {
    font-size: 28px;
  }
}







/* 容器 */
.news-section {
  padding: 56px 0;
  background: #f6f7f9;
}

.news-head {
  max-width: 1600px;
  margin: 0 auto 18px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.news-head .eyebrow {
  color: #b9151c;
  font-weight: 800;
  margin-bottom: 8px;
}

.news-head h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.more-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  background: #d92129;
  color: #fff;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(217, 33, 41, .2);
  transition: .2s;
  margin-top: 40px;
}

.more-link:hover {
  transform: translateY(-2px);
  background: #b9151c;
}

/* tabs */
.news-tabs {
  display: flex;
  gap: 10px;
  line-height: 42px;
  margin-bottom: 30px;
}

.news-tabs .tab {
  padding: 0px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: #fff;
  border:1px solid #ccc;
  color: #333;
  font-weight: 700;
  transition: .2s;
  font-size: 18px;
}

.news-tabs .tab:hover {
  background: #e5e9ee;
}

.news-tabs .tab.is-active {
  background: #d92129;
  color: #fff;
  box-shadow: 0 6px 12px rgba(217, 33, 41, .2);
}

/* 面板 */
.news-panels {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px 32px;
}

.news-panel {
  display: none;
}

.news-panel.is-active {
  display: block;
}

/* 卡片网格 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  border-color: #f0a4a7;
}

.news-card .cover {
  margin: 0;
  height: 180px;
  overflow: hidden;
}

.news-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.news-card .body {
  padding: 14px 27px 44px;
}

.news-card .title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  color: #0f172a;
}

.news-card .desc {
  margin: 0 0 12px;
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
}

.news-card .meta {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #64748b;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card .meta .icon {
  opacity: .9;
}

/* 右下箭头 */
.news-card .card-arrow {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-weight: 900;
  color: #d0d5db;
  transition: color .2s ease, transform .2s ease;
}

.news-card:hover .card-arrow {
  color: #d92129;
  transform: translateX(2px);
}

/* 响应式 */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .more-link {
    display: none;
  }
}






/* 容器（可放在 1600 宽的版心内） */
.pager {
  padding: 28px 0 48px;
}

.pager__wrap {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans SC", Arial, sans-serif;
}

/* 左右箭头按钮 */
.pager__btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #7a7a7a;
  text-decoration: none;
  border: 1px solid #e6e6e6;
  transition: all .2s ease;
}

.pager__btn:hover {
  color: #d92129;
  border-color: #f0a4a7;
  transform: translateY(-2px);
}

/* 数字页码 */
.pager__num {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #333;
  text-decoration: none;
  border: 1px solid #e6e6e6;
  transition: all .2s ease;
  font-weight: 700;
}

.pager__num:hover {
  border-color: #f0a4a7;
  transform: translateY(-2px);
  color: #d92129;
}

/* 当前页 */
.pager__num.is-active {
  background: #d92129;
  color: #fff;
  border-color: #d92129;
  box-shadow: 0 6px 14px rgba(217, 33, 41, .25);
}

/* 跳转区域 */
.pager__jump {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  color: #333;
}

.pager__input {
  width: 52px;
  height: 36px;
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  outline: none;
  background: #fff;
  text-align: center;
  font-weight: 700;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.pager__input:focus {
  border-color: #d92129;
  box-shadow: 0 0 0 3px rgba(217, 33, 41, .12);
}

/* 小屏优化（自动换行居中） */
@media (max-width: 640px) {
  .pager__wrap {
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .pager__jump {
    width: 100%;
    justify-content: center;
  }
}




/* === 版心 === */
.uni-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}

/* === 筛选条 === */
.uni-filter {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
  padding: 16px 18px;
  margin-bottom: 18px;
  border: 1px solid #f1f2f5;
}

.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 25px;
  padding: 6px 0;
  font-size: 18px;
}

.filter-row .label {
  color: #475569;
  min-width: 88px;
  font-weight: 700;
}

.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
  color: #111827;
  cursor: pointer;
  font-weight: 700;
  transition: .18s;
  font-size: 18px;
}

.chip:hover {
  background: #e7eef6;
}

.chip.is-active {
  background: #d92129;
  color: #fff;
  border-color: #d92129;
  box-shadow: 0 6px 14px rgba(217, 33, 41, .22);
}

/* === 卡片网格 === */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* === 单卡片 === */
.uni-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid #eef0f3;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.uni-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
  border-color: #f0a4a7;
}

/* 顶部大图 + 徽章 */
.uni-cover {
  margin: 0;
  position: relative;
  height: 300px;
  overflow: hidden;
}

.uni-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.uni-card:hover .uni-cover img {
  transform: scale(1.04);
}

.uni-cover .badge {
  position: absolute;
  right: 14px;
  top: 0px;
  width: 82px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .15));
}

/* 标题行：校徽 + 文本 */
.uni-head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 16px 6px;
}

.crest {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #f1f2f4;
  padding: 4px;
}

.title-wrap h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
}

.title-wrap .meta {
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
}

/* 简介 */
.uni-desc {
  padding: 0 16px 12px;
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
}

/* 底部栏：地点 + 详情 */
.uni-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 16px;
  color: #64748b;
  font-size: 14px;
  border-top: 1px solid #f1f2f5;
}

.uni-foot .loc {
  display: flex;
  align-items: center;
  gap: 6px;
}

.uni-foot .more {
  color: #6b7280;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: .2s;
}

.uni-foot .more span {
  transition: transform .2s ease;
}

.uni-foot .more:hover {
  color: #d92129;
}

.uni-foot .more:hover span {
  transform: translateX(3px);
}

/* 响应式 */
@media (max-width: 1200px) {
  .uni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .uni-grid {
    grid-template-columns: 1fr;
  }

  .uni-cover {
    height: 190px;
  }
}







/* 版心 */
.career-section {
  background: #f6f7f9;
  padding: 36px 0 48px;
}

.career-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

/* 左侧 */
.career-aside {
  position: sticky;
  top: 20px;
  align-self: start;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.career-menu {
  background-color: #fff;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 38px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 800;
  border-bottom: 1px solid #f2f3f6;
  transition: .2s background, color;
  line-height: 38px;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item .arrow {
  color: #d92129;
  font-size: 20px;
  opacity: .9;
}

.menu-item:hover {
  background: #fff4f4;
}

.menu-item.is-active {
  background: #d92129;
  color: #fff;
}

.menu-item.is-active .arrow {
  color: #fff;
}

/* 咨询卡 */
.consult-card {
  background: #fff;
  border-radius: 0 0 8px 8px;
  text-align: center;
  padding: 20px 16px 18px;
}

.avatar {
  margin: 6px auto 12px;
  width: 176px;
  height: 195px;
  padding: 6px;
  display: grid;
  place-items: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consult-title {
  margin: 6px 30px 16px;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.consult-sub {
  margin: 0 0 14px;
  color: #64748b;
}

.consult-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 20px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s;
  border: 1px solid transparent;
}

.btn-outline {
  color: #d92129;
  background: #fff;
  border-color: #ffd3d3;
}

.btn-outline:hover {
  background: #fff4f4;
}

.btn-solid {
  color: #fff;
  background: #d92129;
  box-shadow: 0 6px 14px rgba(217, 33, 41, .22);
}

.btn-solid:hover {
  background: #b9151c;
  transform: translateY(-1px);
}

/* 右侧内容区域 */
.career-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}


.career-title {
  font-size: 36px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.career-subtitle {
  font-size: 18px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* 右侧卡片 */
.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  min-height: auto;
  height: auto;
}

.career-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eef0f3;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.career-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, .12);
  border-color: #f2b2b4;
}

.card-cover {
  height: 220px;
  overflow: hidden;
  margin: 0;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.career-card:hover .card-cover img {
  transform: scale(1.04);
}

.card-body {
  padding: 44px 32px 18px;
}

.card-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
  color: #b9151c;
  border-bottom: 2px solid #ffd3d3;
  padding-bottom: 8px;
  line-height: 1.5;
}

.card-title span {
  background: linear-gradient(transparent 60%, #ffe4e5 60%);
}

.card-list {
  margin: 10px 0 0 0px;
  padding: 0;
  color: #374151;
  line-height: 1.9;
}

.card-list li {
  font-size: 15px;
}

/* 响应式 */
@media (max-width: 1200px) {
  .career-wrap {
    grid-template-columns: 1fr;
  }

  .career-aside {
    position: static;
  }

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

@media (max-width: 760px) {
  .career-grid {
    grid-template-columns: 1fr;
  }

  .card-cover {
    height: 190px;
  }
}







.content-body .overlap-2 {
  width: 100%;
  height: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
  position: relative;
  text-transform: uppercase;
}

.content-body .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 0 0 / 30%) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}


.content-body .text-wrapper-6 {
  font-weight: 700;
  color: #ffffff;
  font-size: 58px;
  text-align: center;
  line-height: normal;
  font-family: "Noto Sans SC", Helvetica;
  letter-spacing: 0;
  margin: 0;
}

.content-body .contact-us {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
  font-weight: 100;
}

.content-body .breadcrumb-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.content-body .breadcrumb-container {
  width: 1600px;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.content-body .breadcrumb-nav {
  font-weight: 400;
  color: #999999;
  font-size: 17px;
  line-height: normal;
  font-family: "Noto Sans SC", Helvetica;
  letter-spacing: 0;
}

.content-body .breadcrumb-nav a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.content-body .breadcrumb-nav a:hover {
  color: #d82129;
}




.content-body .image {
  position: absolute;
  width: 6px;
  height: 12px;
  top: 3px;
  left: 49px;
}

.content-body .element-7 {
  position: absolute;
  width: 6px;
  height: 12px;
  top: 2px;
  left: 192px;
  background-image: url(../images/breadcrumb-arrow.png);
  background-size: cover;
  background-position: 50% 50%;
}


.content-body .back-button {
  font-weight: 400;
  color: #999999;
  font-size: 17px;
  line-height: normal;
  font-family: "Noto Sans SC", Helvetica;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.content-body .back-button:hover {
  color: #d82129;
}

.content-body .back-button i {
  margin-right: 5px;
}


/* 办公室概览区域 - 外层容器 */
.content-body .office-overview-section {
  background-color: #f5f5f5;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
  box-sizing: border-box;
}

.content-body .office-overview-container {
  width: 1600px;
  height: 100%;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* 左侧：办公室小图标区域 */
.content-body .office-overview-left {
  flex: 0 0 200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.content-body .office-icons-wrapper {
  position: relative;
  width: 200px;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-body .office-decoration-1,
.content-body .office-decoration-2 {
  position: absolute;
  width: 100px;
  height: 100px;
  opacity: 0.3;
}

.content-body .office-decoration-1 {
  top: 10px;
  left: 10px;
}

.content-body .office-decoration-2 {
  bottom: 10px;
  right: 10px;
}

.content-body .office-icon-yiwu,
.content-body .office-icon-tbilisi {
  position: relative;
  width: 120px;
  margin: 20px auto;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}



.content-body .office-icon-image {
  margin: 0 auto 8px;
  overflow: hidden;
}

.content-body .office-small-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.content-body .office-icon-label {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 500;
  color: #333333;
  font-size: 17px;
  letter-spacing: 0.5px;
}

.content-body .social-section {
  text-align: center;
}

.content-body .social-title {
  border-top: 1px solid #f8f8f8;
  padding-top: 20px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 600;
  color: #666666;
  font-size: 17px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.content-body .social-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  justify-items: center;
  max-width: 120px;
  margin: 0 auto;
}

.content-body .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #d92129;
  background: #f8f8f8;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}




/* 右侧：办公室详细信息区域 */
.content-body .office-overview-right {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-body .office-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 250px;
  margin-bottom: 40px;
}

.content-body .office-title {
  width: 100%;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000000;
  font-size: 35px;
  line-height: normal;
  font-family: "Noto Sans SC", Helvetica;
  letter-spacing: 0;
}

.content-body .office-card {
  position: relative;
  width: 100%;
  height: 360px;
  background-size: 100% 100%;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.content-body .office-image-wrapper {
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  right: 0;
  background-size: 100% 100%;
}

.content-body .office-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.content-body .office-info {
  position: absolute;
  width: 35%;
  top: 36px;
  left: 44px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 17px;
  z-index: 2;
}

.content-body .info-label {
  color: #656565;
  line-height: 28px;
}

.content-body .info-content {
  color: #000000;
  line-height: 28px;
}

.content-body .map-button-wrapper {
  position: absolute;
  width: 131px;
  height: 42px;
  bottom: 36px;
  left: 44px;
  z-index: 2;
}

.content-body .map-button {
  width: 128px;
  height: 40px;
  border: 1px solid #d82129;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

.content-body .map-button:hover {
  background-color: #d82129;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(216, 33, 41, 0.3);
}

.content-body .map-button:hover .map-button-text {
  color: #ffffff;
}

.content-body .map-button-text {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 500;
  color: #d82129;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 40px;
  transition: color 0.3s ease;
}

/* 移除不必要的分割线 */

/* 旧的非语义化类名已被新的语义化布局替代，这些CSS规则已移除 */

.footer-wrapper {
  width: 100%;
}

.cta-section {
  width: 100%;
  background: url(../images/study-abroad-background.png) no-repeat;
  background-size: 100% 100%;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(218, 3, 14, 0.6);
  pointer-events: none;
  z-index: 1;
}

.cta-container {
  width: 100%;
  position: relative;
  height: 240px;
  background-size: 100% 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 30px;
}

.cta-background {
  background-color: #a50607;
  width: 100%;
  height: 240px;
}

.cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 41px;
  line-height: 1.2;
  font-family: "Noto Sans SC", Helvetica;
  letter-spacing: 0;
  margin: 0;
}

.cta-subtitle {
  font-weight: 400;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.4;
  font-family: "Noto Sans SC", Helvetica;
  letter-spacing: 0;
  margin: 0;
}

.cta-buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;

}

.online-booking {
  position: relative;
  width: 158px;
  height: 55px;
  cursor: pointer;
  border-radius: 28px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.online-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.head-left h2 {
  font-size: 41px;
  padding: 0 0 20px;
}

.booking-text {
  font-weight: 500;
  color: #ffffff;
  font-size: 17px;
  line-height: normal;
  font-family: "Noto Sans SC", Helvetica;
  letter-spacing: 0;
  text-align: center;
  line-height: 48px;
}

.booking-text i {
  font-size: 20px;
}


.footer {
  width: 100%;
  background: #1b1b1b;
  color: #ffffff;
}

.footer-container {
  width: 1600px;
  margin: 0 auto;
  padding: 75px 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* 顶部区域 */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-hotline {
  flex: 0 0 auto;
  position: relative;
}

.footer-hotline-number::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #444444 20%, #444444 80%, transparent 100%);
}




.footer-hotline-title {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 0;
}

.footer-hotline-number {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #d20202;
  font-size: 40px;
  letter-spacing: 0;
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 45px 300px;
}

.footer-nav-item {
  flex: 1;
}

.nav-title {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 50px;
  letter-spacing: 0;
}

.nav-title::after {
  content: '';
  width: 100%;
  height: 2px;
  display: inline-table;
  background: linear-gradient(90deg, transparent 0%, #444444 20%, #444444 80%, transparent 100%);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 32px;
}

.nav-links a {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #a9a9a9;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* 分割线 */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #444444 20%, #444444 80%, transparent 100%);
  margin: 20px 0;
}

/* 中间联系方式区域 */
.footer-middle {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 320px;
  padding: 0 20px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}



.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #a9a9a9;
  font-size: 14px;
  letter-spacing: 0;
}

.contact-label i {
  font-size: 20px;
  margin-right: 10px;
}

.contact-label span {
  font-size: 16px;
  display: inline-block;
}

.contact-label p {
  font-size: 16px;
  display: inline-block;
}


/* 底部版权信息区域 */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-icp-logo {
  height: 16px;
  width: auto;
  object-fit: contain;
}

.copyright-text {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #999999;
  font-size: 14px;
  letter-spacing: 0;
}
.copyright-text a{
  color: #999999;
}

.footer-tech-support {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #999999;
  font-size: 14px;
  letter-spacing: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .footer-container {
    padding: 40px 80px 30px;
  }

  .footer-nav {
    gap: 40px;
  }

  .footer-middle {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 30px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 25px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-hotline-number {
    font-size: 32px;
  }
}

/* 弹窗样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-overlay.show {
  display: flex;
}

.modal-container {
  position: relative;
  max-height: 90%;
  overflow: hidden;
}

.modal-content {
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  z-index: 10001;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.modal-left {
  background: url('../images/boxbg.png') no-repeat center center;
  color: white;
  height: 530px;
  box-sizing: border-box;
  width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  flex-wrap: wrap;
}

.modal-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.modal-logo {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 30px;
  z-index: 1;
}

.modal-logo-img {
  height: 40px;
  width: auto;
}

.modal-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.modal-contents {
  background: linear-gradient(180deg, rgba(216, 33, 41, 0) 0%, rgba(216, 33, 41, 0.8) 100%);
  box-sizing: border-box;
  padding: 40px 30px;
  margin-top: 235px;

}

.modal-features {
  position: relative;
  z-index: 1;
}



.feature-item {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 135px;
  padding: 5px;
  margin-bottom: 20px;
  border: 1px solid #dcdcdc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
}

.features-left .feature-item:nth-of-type(1),
.features-left .feature-item:nth-of-type(3) {
  margin-left: 100px;
}

.features-right .feature-item:nth-of-type(2) {
  margin-left: 100px;
}

.feature-left {

  width: 85px;
  height: 85px;
  margin: 9px;

}


.feature-icon {
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-sizing: border-box;
  padding: 10px;
  font-size: 30px;
}

.feature-icon i {
  background-color: #d92129;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
}

.feature-right {
  flex: 1;
  text-align: left;
  margin-left: 20px;
  margin-right: 40px;
}

.feature-title {
  font-size: 26px;
  color: #d92129;
  margin-bottom: 10px;
  margin-top: 15px;
}

.feature-desc {
  font-size: 18px;
  color: #333333;
  margin-top: 5px;
  margin-bottom: 5px;
}






.feature-icon {
  color: #ffffff;
  margin-right: 10px;
  font-weight: bold;
}

.modal-right {
  height: 530px;
  width: 460px;
  box-sizing: border-box;
  padding: 40px 30px;
}

.form-title {
  color: #d82129;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.consultation-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d82129;
  box-shadow: 0 0 0 2px rgba(216, 33, 41, 0.1);
}

.form-group textarea {
  height: 80px;
  resize: vertical;
}

.submit-btn {
  background: #d82129;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #b01e24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 33, 41, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
  }

  .modal-left,
  .modal-right {
    flex: none;
    padding: 30px 20px;
  }

  .modal-title {
    font-size: 20px;
  }
}

/* 弹窗样式结束 */


/* ===== About 顶部 ===== */
.about-hero {
  background: #f8f8f8;
  padding: 20px 0 48px;
}

.about-content {
  display: flex;
}

.about-container {
    display: flex;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;

}

/* 左侧：标题、标签等 */
.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}


.about-title {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 900;
  color: #0f172a;
}

.about-title .accent {
  color: #d92129;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px;
}

.about-tags span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff1f1;
  color: #c0141a;
  border: 1px solid #ffd9d9;
  font-weight: 700;
  font-size: 14px;
}

/* 右侧：段落内容 */
.about-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-paragraphs {
  max-width: 980px;
  color: #475569;
  line-height: 1.9;
  font-size: 16px;
  margin-top: 0;
}

.about-paragraphs p {
  text-indent: 2em;
  margin: 0 0 16px;
}

/* 响应式 */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== 支持函大卡片 ===== */
.support-wrap {
  margin-top: 22px;
  width: 100%;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 0;
  border: 6px solid #d92129;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
}

/* 左侧 */
.support-left {
  position: relative;
  display: grid;
  grid-template-columns: 450px 1fr;
}

.support-banner {
  background: #d92129;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-banner span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .2em;
}

.support-letter {
  margin: 0;
  display: grid;
  place-items: center;
  background-color: #d82028;
}

.support-letter img {
  height: 574px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

/* 右侧 */
.support-photo {
  margin: 0;
  height: 574px;
  background: #000;
}

.support-photo img {
  display: block;
  width: 100%;
  height: 574px;
  object-fit: cover;
}

/* ===== 响应式 ===== */
@media (max-width: 1100px) {
  .about-title {
    font-size: 34px;
  }

  .support-wrap {
    grid-template-columns: 1fr;
  }

  .support-left {
    grid-template-columns: 100px 1fr;
  }

  .support-banner span {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .about-title {
    font-size: 28px;
  }

  .support-left {
    grid-template-columns: 84px 1fr;
  }

  .support-banner span {
    font-size: 20px;
    letter-spacing: .15em;
  }
}

/* 资质亮点条 */
.about-highlights {
  background: #f6f7f9;
  padding: 18px 0 30px;
}

.ah-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

/* 单项 */
.ah-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  transition: transform .22s ease, box-shadow .22s ease;
}

/* 红色圆图标 */
.ah-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 30%, #f04b4f 0%, #b8151c 60%, #9f0f16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(217, 33, 41, .25), inset 0 0 0 1px rgba(255, 255, 255, .25);
}

.ah-icon .iconfont {
  font-size: 30px;
  line-height: 1;
  color: #fff;
}

/* 文本 */
.ah-text h3 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
}

.ah-text p {
  margin: 0;
  font-size: 18px;
  color: #6b7280;
}

/* 响应式 */
@media (max-width: 1100px) {
  .ah-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ========== 会面集锦 ========== */
.about-meetings {
  padding: 18px 0 36px;
}

.meetings-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  /* 左宽右窄 */
  grid-auto-rows: 240px;
  gap: 20px;
}

/* 左侧大图占两行 */
.meeting-hero {
  grid-column: 1 / 2;
  /* 第一列 */
  grid-row: span 2;
  /* 占两行 */
  position: relative;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
  background: #000;
}

.meeting-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.meeting-hero:hover img {
  transform: scale(1.03);
}

/* 斜切红色标题条 */
.ribbon {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  background: #d92129;
  box-shadow: 0 8px 18px rgba(217, 33, 41, .3);
}

.ribbon-inner {
  color: #fff;
  padding: 18px 22px;
}

.ribbon-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.ribbon-sub {
  opacity: .92;
  font-size: 16px;
}

/* 右侧四宫格 */
.meeting-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.meeting-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1 1 auto;
  transition: transform .35s ease;
}

.meeting-card:hover img {
  transform: scale(1.04);
}

/* 下方红色标题 */
.meeting-card figcaption {
  color: #c0141a;
  font-weight: 900;
  text-align: center;
  padding: 10px 6px;
  font-size: 16px;
  line-height: 1.2;
  border-top: 1px solid #f1f2f5;
}

/* 响应式 */
@media (max-width: 1200px) {
  .meetings-container {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .meeting-hero {
    grid-column: 1 / -1;
    grid-row: span 1;
    height: 320px;
  }

  .ribbon {
    width: 100%;
  }

  .ribbon-title {
    font-size: 22px;
  }

  .ribbon-sub {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .meetings-container {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .meeting-hero {
    height: 260px;
  }

  .ribbon {
    width: 100%;
    bottom: 16px;
  }
}


/* ========== 签约名校集锦 ========== */
.about-universities {
  background: #fff;
  padding: 40px 0;
}

.univ-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}



.univ-header h2 {
  background: #d92129;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  padding: 14px 28px;
  text-align: center;
  margin-bottom: 28px;
}

.univ-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.univ-card {
  margin: 0;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.univ-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.univ-card figcaption {
  padding: 10px 8px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #404040;
}

/* 响应式 */
@media(max-width:1200px) {
  .univ-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:900px) {
  .univ-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:600px) {
  .univ-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ===== 授权证书轮播 ===== */
.certs-section {
  background: #f6f7f9;
  padding: 30px 0 46px;
  position: relative;
}

.certs-container {
  max-width: 1600px;
  margin: 85px auto;
  padding: 0 20px;
  position: relative;
}

.certs-header h2 {
  background: #d92129;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  padding: 14px 28px;
  border-radius: 6px;
  margin-bottom: 24px;
}

/* slide 结构 */
.certs-swiper {
  padding: 4px 0 56px;
}

/* 给下方按钮留空间 */
.cert-item {
  margin: 0;
  text-align: center;
}

.cert-frame {
  margin: 0 auto 10px;
  width: 230px;
  height: 300px;
  border-radius: 6px;
  padding: 14px;
  /* 简易相框效果 */
}

.cert-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.certs-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.certs-section figcaption {
  font-size: 14px;
  font-weight: 800;
  color: #333;
  letter-spacing: .02em;
}

/* 右下角按钮 */
.cert-nav {
  position: absolute;
  right: 28px;
  bottom: -100px;
  display: flex;
  gap: 14px;
  z-index: 5;
}

.cert-prev,
.cert-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
}

.cert-prev {
  background: #d9d9d9;
}

.cert-next {
  background: #d92129;
}

.cert-prev::after,
.cert-next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
}

.cert-prev::after {
  transform: rotate(135deg);
  border-color: #fff;
}

.cert-next::after {
  transform: rotate(315deg);
  border-color: #fff;
}

/* 响应式：视口变窄时每屏张数递减 */
@media (max-width: 1400px) {
  .certs-swiper {}
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

/* ===== 流程步骤样式 ===== */
.process-step {
  margin-bottom: 40px;
  padding: 0;
    position: relative;


}

.step-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-image {
  overflow: hidden;
  border-radius: 8px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.step-content:hover .step-image img {
  transform: scale(1.05);
}

.process-step::after{
  content: "01";
  display: block;
  right: 60px;
  font-family: 'Arial';
  font-weight: bold;
  letter-spacing: -11px;
  bottom: 0;
  font-size: 200px;
  position: absolute;
  background: linear-gradient(to bottom, #ffffff29 0%, #ff8fbf29 100%);
  -webkit-background-clip: text;   /* 背景裁剪到文字 */
  -webkit-text-fill-color: transparent; /* 让文字透明，显示渐变 */
}
.process-step:nth-of-type(2)::after{
  content: "02";
}
.process-step:nth-of-type(3)::after{
  content: "03";
}
.process-step:nth-of-type(4)::after{
  content: "04";
}
.process-step:nth-of-type(5)::after{
  content: "05";
}
.process-step:nth-of-type(6)::after{
  content: "06";
}
.process-step:nth-of-type(7)::after{
  content: "07";
}


.step-info {
  flex: 1;
  text-align: center;
  padding-left: 20px;
}

.step-title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 15px 0;
  font-family: "Noto Sans SC", Helvetica;
}

.step-divider {
  width: 100%;
  height: 3px;
  margin: 0 auto 20px;
  border-radius: 2px;
  position: relative;
  z-index: 3;
}

.step-divider span {
  display: block;
  width: 60px;
  height: 3px;
  background: #d82129;
  height: 3px;
  margin: 0 auto;
}

.step-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  z-index: 1;
}

.step-description {
  font-size: 16px;
  color: #666666;
  line-height: 1.2;
  margin: 0 0 12px 0;
  font-family: "Noto Sans SC", Helvetica;
}

.step-description:last-child {
  margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .step-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .step-image {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .step-info {
    padding-left: 0;
  }

  .step-title {
    font-size: 24px;
  }
}



.hot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    min-height: auto;
    height: auto;
    padding-bottom: 45px;
    border-bottom: 1px solid #cccccc59;
}

.hot-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eef0f3;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hot-cover{
  position: relative;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in;
}
.hot-card span{
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  line-height: 45px;
  padding-left:10px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(135deg, #1a090a6b 0%, #ffffff03 100%);
}

.hot-card:hover span{
    background: linear-gradient(135deg, #d92129 0%, #ffffff03 100%);
}
.hot-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.hot-card:hover img{
    transform: scale(1.1);
}




/* ===== 生活指南：背景 + 标题 + 面板 ===== */
.life-guide{
  position:relative; 
  overflow: hidden;
  /* 整块上下内边距，可按页面间距调整 */
  padding: 0 0 30px;
}
.lg-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(.9);
}
.lg-inner{
  position:relative;        /* 让子元素盖在背景之上 */
  max-width:1440px; margin:0 auto; padding: 24px 20px 40px;
}

/* --- 斜切标题条（图2） --- */
.lg-title{
  position:relative; margin-top:10px;
  display:inline-block;                /* 只包住内容 */
  background:rgba(217, 33, 41, .90);
  color:#fff;
  padding:18px 28px 16px 28px;
}
.lg-title::after{
  /* 右侧斜切块 */
  content:""; position:absolute; top:0; right:-80px; bottom:0; width:140px;
  background:#d92129;
  transform:skewX(25deg);
}
.lg-title-text{ position:relative; z-index:1; }
.lg-title .cn{
  font-size:40px; font-weight:900; letter-spacing:.5px; margin-right:16px;
}
.lg-title .en{
  font-size:18px; font-weight:900; opacity:.95; letter-spacing:.06em;
}

/* --- 内容面板（图3） --- */
.lg-panel{
  background: rgba(217, 33, 41, .90);   /* 红色半透明 */
  padding: 60px 40px 34px;
  box-shadow: 0 10px 30px rgba(217,33,41,.25);
  position: relative;
}


.lg-panel::before{
  content: "";
  display: block;
  height: 14px;
  background: linear-gradient(to right, #d92129 0%, #d92129 50%, #ffffff 50%, #ffffff 100%);
  position: absolute;
  left: -300px;
  width: 600px;
  top: 40px;
}


.lg-panel::after{
  content: "";
  display: block;
  height: 14px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #d92129 50%, #d92129 100%);
  position: absolute;
  right: -300px;
  width: 600px;
  bottom: 40px;
}

.lg-item{
  margin-top: 35px;
}

.lg-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap:28px 44px;
}
.lg-item h3{
  margin:0 0 6px; color:#fff; font-size:28px; font-weight:900;
}
.lg-item .sub{
  color:#ffe5e5; font-size:16px; letter-spacing:.08em; margin-bottom:20px;
}
.lg-item p{
  color:#fff; opacity:.92; line-height:1.9; margin:0 0 25px; font-size:14px;
}

/* 圆角“下划线”装饰 */
.lg-item .u{
  display:block; width: 70%; max-width:360px; height:10px;
  background: rgba(255,255,255,.25);
  border-radius:999px;
}

/* 简小屏适配 */
@media (max-width: 980px){
  .lg-title .cn{ font-size:30px; }
  .lg-title .en{ font-size:16px; display:block; margin-top:4px; }
  .lg-title::after{ right:-60px; width:110px; }
  .lg-grid{ grid-template-columns: 1fr; }
}




/* ===== 留学优势整屏 ===== */
.advantage-block{ position:relative; overflow:hidden; }
.adv-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(.98);
}
.adv-wrap{
  position:relative;
  max-width:1440px; margin:0 auto; padding:36px 20px 40px;
}

/* 左侧红板 */
.adv-panel{
  width:min(720px, 95%);           /* 左侧主体宽 */
  background:rgba(217,33,41,.92);  /* 红色+半透明 */
  padding:50px;
  color:#fff;
  box-shadow:0 16px 40px rgba(217,33,41,.25);
}

/* 标题块 */
.adv-head{ display:flex; gap:22px; align-items:flex-end; }
.adv-head .cn{
  margin:0; line-height:1.05;
  font-size:60px; font-weight:900; letter-spacing:.5px;
}
.adv-head .en{
  font-size:41px; font-weight:900; letter-spacing:.06em; opacity:.95;line-height: 1.3;
}
.adv-divider{
  margin:31px 0 30px; height:4px; border:0; background:#ffffffb5; border-radius:2px;
}

/* 简介 */
.adv-intro{
  margin:0 0 16px; line-height:1.9; font-size:16px; color:#fff; opacity:.95;
}

/* 白色要点卡片 */
.adv-card{
  background:#fff; color:#333;padding:25px 35px;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  margin-bottom:18px;
}
.adv-list{ margin:0; padding:0 0 0 20px; display:grid;  }
.adv-list li{
  line-height:35px; font-weight:700; font-size:18px; position:relative;
  color: #d92129;
}

/* 小标题与说明 */
.adv-subtitle{
  font-weight:900; font-size:24px; margin-bottom:16px; letter-spacing:.02em;
}
.adv-note{ margin:0; font-size:16px; line-height:1.9; opacity:.95; }

/* 响应式 */
@media (max-width: 1100px){
  .adv-head .cn{ font-size:44px; }
  .adv-head .en{ font-size:20px; }
}
@media (max-width: 760px){
  .adv-panel{ width:100%; padding:22px 18px; }
  .adv-head{ flex-direction:column; align-items:flex-start; gap:8px; }
  .adv-head .cn{ font-size:36px; }
  .adv-head .en{ font-size:18px; }
}



/* ========= 九大理由（尽量一比一复刻） ========= */
.reason9{ background:#fff; padding:56px 20px 60px; }
.reason9 .r-wrap{ max-width:1600px; margin:0 auto; }

.r-title{
  margin: 48px 0; text-align:center;
  font-size:60px; font-weight:900; color:#111; letter-spacing:.02em;
}
.r-title span{ color:#d92129; }

/* 网格 */
.r-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
}
@media (max-width: 1100px){ .r-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px){ .r-grid{ grid-template-columns: 1fr; } }

/* 卡片 */
.r-card{
  position:relative;
  border:1px solid #f0dfe2;
  border-radius:12px;
  padding:18px 20px 20px;
  background:
    linear-gradient(90deg, #ffffff 0%, #fff6f6 40%, #ffecee 100%);
  box-shadow:0 6px 16px rgba(0,0,0,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}
.r-card:hover{ transform:translateY(-4px); box-shadow:0 14px 26px rgba(0,0,0,.12); }

/* 头部：左图标 右编号 */
.r-head{ display:flex; align-items:center; justify-content:space-between; }
.r-icon{ display:flex; align-items:center; gap:8px; color:#d92129;}


.r-icon .iconfont{ font-size:28px; line-height:1; }

/* 大号编号（半透明粉） */
.r-num{
  font-size:56px; font-weight:900; line-height:1;
  color: rgba(217,33,43,.18);
}

/* 标题与分割线 */
.r-ttl{
  margin:10px 0 8px; font-size:28px; font-weight:900; color:#d92129;
}
.r-sep{
  height:2px; background:#f1b7bc; opacity:.9; border-radius:2px;
  margin:20px 0;
}

/* 列表样式：红色圆点 */
.r-list{ margin:0; padding:0; list-style:none; }
.r-list li{
  position:relative; padding-left:18px; font-size:18px; line-height:1.9; color:#333;
}
.r-list li::before{
  content:""; position:absolute; left:0; top:0.78em;
  width:6px; height:6px; border-radius:50%;
  background:#d92129;
}

/* 小屏调优 */
@media (max-width: 420px){
  .r-num{ font-size:44px; }
  .r-ttl{ font-size:17px; }
}



/* ===== GEORGIA 简讯 ===== */
.ge-brief{ position:relative; overflow:hidden; }
.ge-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(.98);
}
.ge-wrap{
  position:relative; max-width:1440px; margin:0 auto; padding:38px 22px 44px;
}

/* 信息卡主容器 */
.ge-card{
  width: 640px;
  background: rgba(217,33,41,.92);      /* 主红底 */
  overflow: hidden;
  box-sizing: border-box;
  padding: 30px;
}

/* 顶部白条标题 */
.ge-head{
  background:#fff;
  color:#d92129;
  box-sizing: border-box;
  padding: 14px 22px;
  font-weight: 900;
  letter-spacing:.04em;
  line-height: 50px;
  text-align: center;
}
.ge-head .cn{ font-size:30px; }

/* 信息条表格 */

.ge-row{
  display:grid; grid-template-columns: 1.15fr 1fr;
  gap:0;
  color:#fff; font-size:15px; line-height:1.9;
  padding: 14px 14px;
  background: rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ge-row.alt{ background: rgba(0,0,0,.12); }
.ge-row .q{ padding-left:10px; }
.ge-row .a{ text-align:left; padding-left:12px; }

/* 学费对比 */
.ge-fee{
  padding: 14px 22px 20px;
}
.fee-title{
  color:#fff; font-weight:900; font-size:20px; margin:6px 0 6px;
}
.fee-list{
  margin:0; padding:0; list-style:none; color:#fff; font-size:15px; line-height:2;
}
.fee-list li{
  position:relative; padding-left:16px;
}
.fee-list li::before{
  content:""; position:absolute; left:0; top:.9em;
  width:6px; height:6px; border-radius:50%; background:#fff;
}

/* 适配 */
@media (max-width: 1024px){
  .ge-card{ width: 88%; }
}
@media (max-width: 640px){
  .ge-row{ grid-template-columns: 1fr; }
  .ge-card{ width:100%; }
  .ge-head .en{ font-size:24px; }
  .ge-head .cn{ font-size:18px; }
}





/* ===== 学历学位互认可视化 ===== */
.mr-section{
  background:#ffffff;   /* 与截图相近的浅灰底 */
  padding:48px 0 56px;
}
.mr-wrap{
  max-width:1440px; margin:0 auto;
  padding:0 22px;
  display:grid; grid-template-columns: 1.1fr 1fr; gap:24px;
  align-items:center;
}

/* 左侧标题与要点 */
.mr-title{
  margin:0 0 18px;
  font-size:36px; font-weight:900; color:#d92129; letter-spacing:.02em;
}

.mr-list{ margin:0 0 26px; padding:0; list-style:none; }
.mr-list li{
  position:relative; padding-left:26px; margin-bottom:12px;
  color:#333; font-size:16px; line-height:1.9;
}
.mr-list li::before{
  /* 灰色小三角，与参考图一致 */
  content:""; position:absolute; left:0; top:10px;
  width:0; height:0; border-left:7px solid #bfbfbf;
  border-top:5px solid transparent; border-bottom:5px solid transparent;
}
.mr-list .mr-link a{
  color:#3a7bd5; text-decoration:none; border-bottom:1px dashed #3a7bd5;
}
.mr-list .mr-link a:hover{ color:#265ca8; }

/* 徽章区域 */
.mr-badges{
  display:flex; align-items:flex-end; gap:44px;
  padding-top:12px;
}
.badge{ text-align:center; color:#c79b4a; font-weight:800; font-size:18px; }
.badge img{
  width:86px; height:auto; display:block; margin:0 auto 8px;
}

/* 右侧电脑图 */
.mr-right{ text-align:right; }
.mr-laptop{
  max-width:720px; width:100%; height:auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.18));
}

/* 响应式 */
@media (max-width: 1100px){
  .mr-wrap{ grid-template-columns: 1fr; gap:28px; }
  .mr-right{ text-align:center; }
  .mr-laptop{ max-width:620px; }
}
@media (max-width: 540px){
  .mr-title{ font-size:28px; }
  .mr-badges{ gap:24px; }
  .badge img{ width:72px; }
}





/* ===== 文章详情主体 ===== */
.article-page{
  padding: 0 0 60px;
}
.article-wrap{
  max-width:1600px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns: 1fr 380px;  /* 左主栏 + 右侧栏 */
  gap: 40px;
}

/* 主栏 */
.article-main{
  min-width:0;                  /* 防止溢出 */
  padding: 40px 24px 28px;
}

.article-title{
  margin: 4px 0 14px;
  font-size: 40px;
  line-height:1.35;
  font-weight: 900;
  color:#333;
}

/* 信息条 */
.article-meta{
  display:flex; align-items:center; justify-content:space-between;
  font-size:14px; color:#666;
  padding: 8px 0;
}
.meta-left span{ margin-right:10px; }
.meta-dot{ color:#cfcfcf; margin: 0 10px; }

.meta-share{ display:flex; align-items:center; gap:12px; }
.meta-share .share-text{ color:#333; margin-right:6px; font-size:14px; }

.share-icon{
  width:22px; height:22px; border-radius:50%;
  display:inline-block; background:#eaeaea;
  position:relative; transition:all .2s ease;
}
.share-icon::after{
  content:""; position:absolute; inset:4px;
  border-radius:50%;
  background: radial-gradient(#999 0, #999 40%, transparent 40%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 55%, #000 55%);
          mask: radial-gradient(circle at 50% 50%, transparent 55%, #000 55%);
}
.share-icon.wechat{ background:#e6f5ea; }
.share-icon.weibo{ background:#fdecea; }
.share-icon.link{ background:#eef2ff; }
.share-icon.more{ background:#f1f1f1; }
.share-icon:hover{ transform: translateY(-2px); box-shadow:0 6px 12px rgba(0,0,0,.08); }

/* 分割线 */
.divider{ height:1px; background:#ececec; margin: 14px 0 18px; }

/* 大图 */
.article-figure{
  margin:0; overflow:hidden; border-radius:6px;
  background:#fafafa; border:1px solid #efefef;
}
.article-figure img{ width:100%; display:block; }

/* 侧栏 */
.article-aside{
  min-width:0;
  border-radius:10px;
  padding:18px 40px 14px;
  height: fit-content;
}
.aside-title{
  margin: 2px 2px 12px;
  font-size:20px; font-weight:900; color:#333;
}

/* 热门文章条目 */
.hot-item{
  text-decoration:none; color:inherit;
  display: block;
  margin:37px 6px; border-top:1px solid #f0f0f0;
}
.hot-item:first-of-type{ border-top:0; }

.hot-thumb{
  width:110px; height:82px; border-radius:6px; overflow:hidden;
  background:#f3f3f3; border:1px solid #efefef;
}
.hot-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

.hot-info{ min-width:0; }
.hot-title{
  font-size:22px; font-weight:800; line-height:1.35; color:#111;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.hot-excerpt{
  margin-top:6px; font-size:16px; color:#777; line-height:1.6;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.hot-date{
  margin-top:12px; font-size:16px; color:#aaa;
}

/* 响应式 */
@media (max-width: 1100px){
  .article-wrap{
    grid-template-columns: 1fr; gap:24px;
  }
  .article-aside{ order: 2; }
  .article-main{ order: 1; }
}


/* ===== 文章底部 ===== */
.article-bottom{
  background:#f7f7f7;
  padding: 18px 0 60px;
}
.article-bottom .bottom-wrap{
  max-width:1440px;
  margin:0 auto;
}

.article-content{
  line-height: 1.6;
  margin: 40px 0;
}
.article-content p{
  font-size:18px; line-height:1.6;
  
}

/* 横幅卡片 */
.article-cta{
  position:relative;
  height: 220px;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
}
.article-cta .cta-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform: scale(1.02);
}
.article-cta .cta-mask{
  position:absolute; inset:0;
}
.article-cta .cta-body{
  position:relative; z-index:2;
  height:100%;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 28px 0 34px;
  color:#fff;
}
.cta-title{
  margin:0 0 8px;
  font-size:28px; font-weight:900; letter-spacing:.02em;
}
.cta-sub{
  margin:0; opacity:.95; font-size:14px;
}
.cta-qrcode{
  width:120px; height:120px; border-radius:10px;
  background:rgba(255,255,255,.9);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}
.cta-qrcode img{ max-width:90%; max-height:90%; display:block; }

/* 上下篇 */
.post-nav{


  padding:16px 18px 18px;
  position:relative;

}
.post-row{
  padding:10px 0;
  border-bottom:1px solid #f1f1f1;
  font-size:14px; color:#333;
}
.post-row:last-child{ border-bottom:0; }
.post-row .label{
  color:#999; margin-right:8px;
}

.post-row:last-child{ border-bottom:0; }
.post-row a{
  color:#999; margin-right:8px;
}


.post-link{
  color:#111; text-decoration:none;
}
.post-link:hover{ color:#d92129; text-decoration:underline; }

/* 返回列表按钮（右侧） */
.back-btn{
position: absolute;
    right: 18px;
    bottom: 36px;
    background: #d92129;
    color: #fff;
    text-decoration: none;
    padding: 17px 34px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(217, 33, 41, .25);
    transition: transform .2s ease, box-shadow .2s ease;
}
.back-btn:hover{
  transform: translateY(-2px);
  box-shadow:0 12px 28px rgba(217,33,41,.32);
}

/* 适配 */
@media (max-width: 640px){
  .article-cta{ height: 200px; }
  .cta-title{ font-size:22px; }
  .cta-qrcode{ width:96px; height:96px; }
  .back-btn{ position:static; display:inline-block; margin-top:12px; }
}



/* ===== OVERVIEW OF GEORGIA ===== */
.ovg{ position:relative; overflow:hidden; }
.ovg-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter: saturate(1.05) contrast(1.02);
}
.ovg-wrap{
  position:relative;
  max-width:1440px; margin:0 auto;
  /* 调整这个 padding 可微调卡片上下位置 */
  padding: 56px 24px 80px;
}

/* 红色信息牌（靠左定位） */
.ovg-card{
  position:relative;
  width: 670px;                /* 近似视觉宽度 */
  background: rgba(207,35,40,.96);
  color:#fff;
  box-shadow:0 18px 46px rgba(207,35,40,.28);
  overflow:hidden;
  /* 左侧相对屏幕的偏移（根据你的页面可调） */
}

/* 顶部区域：标题 + 徽章 + 旗帜 */
.ovg-head{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:16px; padding:35px 55px 40px 55px;
  border-bottom: 2px solid #cccccc59;
}
.ovg-title{
  margin:0 0 10px; font-size:44px; line-height:1; font-weight:900;
  letter-spacing:.04em;
}
.ovg-en{
  font-weight:900; font-size:28px; line-height:1.1; letter-spacing:.06em;
}
.ovg-badges{ display:flex; gap:18px; align-items:flex-start; }
.ovg-badges .coat{ width:72px; height:auto; display:block; }
.flags{
  display:grid; grid-template-columns:repeat(2, 32px); grid-auto-rows:32px; gap:6px;
  margin-top:4px;
}
.flags img{ width:32px; height:32px; display:block; }

/* 正文 */
.ovg-body{ padding: 35px 55px 24px; }
.ovg-body p{
  margin: 10px 0; font-size:16px; line-height:1.9; color:#fff;
}

/* 地图白卡 */
.ovg-map{
  background:#fff; border-radius:8px; overflow:hidden;
  padding:10px; margin:14px 0 10px;
  color:#c02328;
}
.ovg-map img{ width:100%; height:auto; display:block; border-radius:4px; }
.ovg-map .map-caption{
  margin-top:10px; text-align:center; font-weight:900; font-size:14px;
}

/* 底部红条说明 */
.ovg-foot{
  padding:10px 12px; font-size:16px; line-height:1.9; margin-top:6px;
}

/* 适配 */
@media (max-width: 1200px){
  .ovg-card{ margin-left: 80px; }
}
@media (max-width: 820px){
  .ovg-card{ margin: 0 auto; width: min(92%, 560px); }
}




/* ===== 优质教育水平 ===== */
.edu-section{
  background:url('../images/kgbg.png') no-repeat center center;
}
.edu-wrap{
  max-width:1600px;
  margin:0 auto;
  padding:0 24px;
}

/* 标题 */
.edu-title{
  margin: 60px 0;
  text-align:center;
  font-size:54px;
  font-weight:900;
  letter-spacing:.02em;
  line-height:1.15;
  color:#111;
}
.edu-title em{
  font-style:normal;
  color:#d92129;             /* 高亮红 */
  margin-left:.25em;
}

/* 主体两列 */
.edu-grid{
  display:grid;
  grid-template-columns: 520px 1fr;  /* 左侧固定520px，右侧占据剩余空间 */
  gap: 80px;
  align-items:start;
}

/* 左侧文本 */
.edu-text{
  width: 520px;
  padding:22px 0;
  font-size:16px;
  color:#333;
  line-height:24px;
}
.edu-text p{ margin: 13px 0; }

/* 右侧图库 */
.edu-gallery{
  display:grid;
  grid-template-columns: 1fr 185px; /* 大图 + 右窄列 */
  gap:18px;
  align-items:stretch; /* 改为stretch让两列高度一致 */
  margin-bottom: 65px;
}
.edu-hero{
  margin:0; border-radius:10px; overflow:hidden;
  background:#f2f2f2; box-shadow:0 10px 26px rgba(0,0,0,.06);
  height: 100%; /* 占满容器高度 */
}
.edu-hero img{ width:100%; height:100%; object-fit:cover; display:block; }

.edu-col{ 
  display:grid; 
  grid-template-rows: repeat(3, 1fr); 
  gap:18px; 
  height: 100%; /* 占满容器高度 */
}
.edu-thumb{
  width:100%; height:100%;
  border-radius:10px; object-fit:cover; display:block;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}

/* 响应式 */
@media (max-width: 1200px){
  .edu-title{ font-size:42px; }
  .edu-grid{ grid-template-columns:1fr; }
  .edu-gallery{ grid-template-columns:1fr; }
  .edu-col{ grid-template-columns: repeat(3, 1fr); grid-template-rows:none; }
}
@media (max-width: 640px){
  .edu-title{ font-size:34px; }
  .edu-col{ grid-template-columns:1fr; }
}



/* ===== 上帝的后花园 宫格 ===== */
.garden-section{
  background:#fff;
  padding: 28px 0 70px;
}
.garden-wrap{
  max-width:1600px;
  margin:0 auto;
  padding:0 24px;
}

.garden-title{
  margin: 35px 0;
  text-align:center;
  font-size:54px;
  font-weight:900;
  color:#111;
  letter-spacing:.02em;
  line-height:1.15;
}
.garden-title em{
  font-style:normal;
  color:#d92129;           /* 红色高亮 */
}

/* 宫格 */
.garden-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 48px;         /* 行间距 40，列间距 48 */
}

/* 单个景点卡片 */
.spot{ margin:0; text-align:center; }
.spot-img{
  width:100%; 
   overflow:hidden;
  background:#f3f3f3;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  transform: translateZ(0);             /* 抗锯齿 */
  transition: transform .25s ease, box-shadow .25s ease;
}
.spot-img img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.spot:hover .spot-img{
  transform: translateY(-4px) scale(1.02);
  box-shadow:0 16px 34px rgba(0,0,0,.12);
}

.spot-cap{
  margin-top:14px;
  font-size:18px;
  color:#5b5b5b;
  font-weight:800;
}

/* 响应式 */
@media (max-width: 1200px){
  .garden-title{ font-size:42px; }
  .garden-grid{ grid-template-columns: repeat(3, 1fr); gap:32px; }
}
@media (max-width: 820px){
  .garden-title{ font-size:34px; }
  .garden-grid{ grid-template-columns: repeat(2, 1fr); gap:22px; }
}
@media (max-width: 520px){
  .garden-grid{ grid-template-columns: 1fr; }
}



/* ===== 双边关系 - 顶部横幅 ===== */
.bilateral{
  padding: 99px 0;
  background:url('../images/bilateral-ribbon.png') no-repeat center center;
}
.bil-wrap{
  max-width:1600px;                    /* 中间 1600 宽度 */
  margin:0 auto;
  padding:0 16px;
}

.bil-hero{
  position:relative;
  min-height:160px;                    /* 视觉高度 */
  overflow:hidden;
  padding-bottom: 60px;
  display:flex; align-items:end; justify-content:end;
}

/* 左侧丝带背景 */
.bil-ribbon{
  position:absolute; inset:0 auto 0 0;    /* 靠左铺开 */
  width:52%;                               /* 占左边一半左右 */
  background-repeat:no-repeat;
  background-size:cover;                    /* PNG带透明更自然 */
  background-position:left center;
  transform: translateZ(0);
  pointer-events:none;
  opacity:.98;
}

/* 中心标题 */
.bil-title{
  position:relative; z-index:2;            /* 压在丝带上方 */
  text-align:right; color:#fff;
  padding: 32px 24px;
}
.bil-title .cn{
  margin:0 0 6px;


  font-size:60px; line-height:1.15;
  font-weight:900; letter-spacing:.02em;
}
.bil-title .en{
  margin:0; opacity:.95;
  font-size:33px; letter-spacing:.06em;
  text-transform : uppercase;
}

/* 响应式调整 */
@media (max-width: 1200px){
  .bil-hero{ min-height:150px; }
  .bil-ribbon{ width:58%; }
  .bil-title .cn{ font-size:34px; }
  .bil-title .en{ font-size:16px; }
}
@media (max-width: 680px){
  .bil-ribbon{ width:70%; opacity:.9; }      /* 窄屏丝带稍大 */
  .bil-title{ padding:24px 16px; }
  .bil-title .cn{ font-size:26px; }
  .bil-title .en{ font-size:14px; }
}


/* ===== 1600 版心容器 ===== */
.bilateral-body{ background:#fff; padding: 8px 0 40px; }
.bil-1600{ max-width:1600px; margin:0 auto; padding:0 16px; }
.bil-cols{
  display:grid;
  grid-template-columns: 0.76fr 1.24fr;  /* 左右比例接近视觉 */
  gap:38px;
  align-items:start;
}

/* ===== 时间轴 ===== */
.timeline{ position:relative; }
.tl-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:26px; }

.tl-item{ display:grid; grid-template-columns: 108px 1fr; gap:22px; align-items:flex-start; }
.year{
  display:inline-grid; place-items:center;
  width:62px; height:62px;
  background: linear-gradient(90deg, #f2b9b9 0%, #ffffff 100%);
  color:#d92129; font-weight:900; font-size:40px;
  border-radius:999px;
  letter-spacing:-.02em;
  padding-left:10px;
}
.tl-text{
  font-size:16px; line-height:20px; color:#222;
}

/* ===== 右侧图片／视频封面 ===== */
.bil-figure{
  position:relative; margin:0; border-radius:12px; overflow:hidden;
  background:#f2f2f2;
  box-shadow:0 12px 32px rgba(0,0,0,.08);
}
.bil-figure img{ width:100%; height:auto; display:block; }


/* ===== 响应式 ===== */
@media (max-width: 1200px){
  .bil-cols{ grid-template-columns: 1fr; }
  .year{ width:92px; height:92px; font-size:32px; }
  .bil-caption span{ font-size:22px; }
}
@media (max-width: 640px){
  .tl-item{ grid-template-columns: 84px 1fr; gap:16px; }
  .year{ width:84px; height:84px; font-size:28px; }
  .tl-text{ font-size:15px; }
  .bil-caption{ padding:10px 14px; }
  .bil-caption span{ font-size:18px; }
  .bil-caption em{ font-size:14px; }
}


.high-safety{
  background:#fff;
  padding:40px 0;
}

.full-image{
  width:100%;
  height:auto;
  display:block;
}



/* ===== 容器与标题 ===== */
.culture-block{ background:#fff; }


.culture-block .title{
  text-align:center; margin: 45px 0 60px;
  font-size:60px; font-weight:900; letter-spacing:.02em; color:#111;
}
.title em{ color:#d92a2f; font-style:normal; }

/* ===== 网格 ===== */
.culture-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);   /* 2 列 × 3 行 */
}

/* ===== 单卡片与图片 ===== */
.card{ position:relative; margin:0;  overflow:hidden; }
.card img{ width:100%; height:100%; object-fit:cover; display:block; }

/* 统一的红色文字条 */
.card .overlay{
  position:absolute; left:0; right:0;
  background:rgba(206, 36, 34, .92);
  color:#fff; padding:16px 125px;
  font-size:18px; line-height:30px;
}

/* 文字位置控制：上 / 中 / 下 / 无 */
.overlay-top   .overlay{ top:0;    transform:none; }
.overlay-middle .overlay{
 bottom: 0;
box-sizing: border-box;
padding:60px 160px 30px;
}


.overlay-bottom .overlay{ bottom:0; transform:none; }
.overlay-none .overlay{ display:none; }


.card .overlays{
  position:absolute; left:0; right:0;
  background:rgba(206, 36, 34, .92);
  color:#fff; padding:16px 18px;
  font-size:18px; line-height:30px;
}
.overlay-middle .overlays {
    bottom: 0;
    box-sizing: border-box;
    padding: 37px;
    width: 475px;
    /* height: 410px; */
    left: 263px;
}
.overlay-bottom .overlays{ bottom:0; transform:none; }
.overlay-none .overlays{ display:none; }



.card .overlayt{
  position:absolute; left:0; right:0;

  background:rgba(206, 36, 34, .92);
  color:#fff; padding:16px 18px;
  font-size:18px; line-height:30px;
      top: 0;
    box-sizing: border-box;
    padding: 37px;
    width: 475px;
    left: 263px;
}

.overlay-bottom .overlayt{ bottom:0; transform:none; }
.overlay-none .overlayt{ display:none; }




/* 小屏优化 */
@media (max-width: 980px){
  .title{ font-size:32px; }
  .culture-grid{ grid-template-columns: 1fr; }
  .card .overlay{ font-size:13px; }
}




/* ===== 学校介绍（作用域：.school-content） ===== */
.school-content {
  --title: #111;
  --text: #333;
  --muted: #777;
  --brand: #d7000f;
  --card-bg: #fff;
  --line: #eee;
  --shadow: 0 8px 20px rgba(0,0,0,.06);
  font-family: "PingFang SC","Microsoft YaHei",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
.school-content .sch-wrap { max-width: 1200px; margin: 0 auto; }
.school-content .sch-title {
  font-size: 32px; font-weight: 800; color: var(--title); margin: 8px 0 16px;
}
.school-content .sch-card {
  background: var(--card-bg);box-shadow: var(--shadow);
  border-radius: 16px;
  display: grid; grid-template-columns: 1fr 630px; gap: 28px; align-items: stretch;
}
@media (max-width: 1100px){
  .school-content .sch-card { grid-template-columns: 1fr; }
}

/* 左侧信息 */
.school-content .sch-head { display:flex; align-items:center; gap:16px; margin-bottom:14px; }
.school-content .sch-logo {
  width:56px; height:56px; border-radius:50%; background:#f6f6f6; border:1px solid var(--line);
  display:grid; place-items:center; overflow:hidden;
}
.school-content .sch-logo img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.school-content .sch-logo svg{ width:30px; height:30px; opacity:.7; }
.school-content .sch-name { font-size:22px; font-weight:700; color:#111; }
.school-content .sch-meta { font-size:13px; color:var(--muted); margin-top:4px; }

.school-content .sch-list { margin-top:8px; }
.school-content .sch-item { display:flex; gap:12px; padding:14px 0; border-top:1px solid var(--line); }
.school-content .sch-item:first-child{ border-top:0; }
.school-content .sch-ico { width:18px; height:18px; margin-top:3px; color:var(--brand); flex:0 0 18px; }
.school-content .sch-label { font-weight:700; color:#111; margin-right:6px; }
.school-content .sch-text { color:var(--text); line-height:1.7; }

/* 右侧图片 */
.school-content .sch-photo{
  width:100%; height:100%; min-height:320px;  overflow:hidden;
  background:#f3f5f7; position:relative;
}
.school-content .sch-photo img{
  width:100%; height:100%; object-fit:cover; display:block;
}



/* ===== 学校简介模块 ===== */
.school-brief {
  --title: #111;
  --text: #333;
  --muted: #666;
  --brand: #d7000f;
  --bg: #ffffff;
  --line: #eee;
  font-family: "PingFang SC","Microsoft YaHei",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  margin-top: 40px;
}

.school-brief .brief-wrap { max-width: 1200px; margin: 0 auto; }
.school-brief .brief-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.school-brief .brief-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 18px;
}

.school-brief .brief-line { height: 1px; background: var(--line); margin-top: 10px; }

/* 顶部红色胶囊 */
.school-brief .brief-badges {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin: 12px 0 6px;
}

.school-brief .brief-badge {
  background: var(--brand);
  color: #fff;
  border-radius: 5px;
  padding: 10px 18px;
  font-size: 18px; font-weight: 700;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.08);
  white-space: nowrap;
}

/* 正文段落 */
.school-brief .brief-content { margin-top: 14px; }
.school-brief .brief-paragraph {
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
  margin: 12px 0;
}

/* 容器两侧留白（可选） */
.school-brief .brief-card--soft {

}
.school-brief .brief-card--inner {
  background: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: var(--shadow);
}

/* 自适应 */
@media (max-width: 768px) {
  .school-brief .brief-title { font-size: 22px; }
  .school-brief .brief-badge { font-size: 14px; padding: 8px 14px; }
  .school-brief .brief-paragraph { font-size: 14px; }
}



/* ===== 学校优势模块 ===== */
.school-strength {
  --title: #111;
  --sub: #666;
  --bg: #fff;
  --panel: #fafafa;
  --shadow: 0 8px 22px rgba(0,0,0,.06);
  --g1: #ff2c2c;
  --g2: #b80d16;
  font-family: "PingFang SC","Microsoft YaHei",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

.school-strength .ss-wrap { max-width: 1200px; margin: 25px auto; }
.school-strength .ss-soft {
  background: var(--panel); border-radius: 20px; 
}
.school-strength .ss-card {
  background: var(--bg); border-radius: 16px; padding: 26px 28px; box-shadow: var(--shadow);
}

.school-strength .brief-line { height: 1px; background: var(--line); margin-top: 10px; }


/* 标题与副标题 */
.school-strength .ss-title { font-size: 24px; font-weight: 900; color: var(--title); margin-bottom: 8px; }
.school-strength .ss-sub { color: var(--sub); font-size: 15px; line-height: 1.8; }

/* 三列卡片 */
.school-strength .ss-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 22px;
}


.school-strength .ss-item {
  position: relative; border-radius: 20px; padding: 30px 100px 30px 40px; color: #fff;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  overflow: hidden; min-height: 168px;
  box-shadow: 0 8px 18px rgba(184,13,22,.18);
}
.school-strength .ss-num {
  position: absolute; right: 16px; 
  font-size: 112px; font-weight: 800; line-height: 1;
  letter-spacing: -10px;
  color: rgba(255,255,255,.16); pointer-events: none; user-select: none;
    background: linear-gradient(to left, rgba(255,255,255,.35), rgba(255,255,255,.0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  user-select: none;
}


.school-strength .ss-item h4 {
  font-size: 20px; font-weight: 800; margin: 0 0 18px;line-height: 24px;

}
.school-strength .ss-item p {
  margin: 0; font-size: 16px; line-height: 20px; opacity: .80;
}

/* 响应式 */
@media (max-width: 1024px){
  .school-strength .ss-grid { grid-template-columns: 1fr; }
  .school-strength .ss-title { font-size: 24px; }
  .school-strength .ss-item { min-height: auto; }
  .school-strength .ss-num { font-size: 84px; right: 12px; }
}


/* ===== 学校环境 / 安全便利 ===== */
.school-env {
  --title:#111; --text:#333; --muted:#666;
  --panel:#fafafa; --card:#fff; --line:#eee;
  --brand:#d7000f; --soft:#ffe8ea;
  --shadow:0 8px 22px rgba(0,0,0,.06);
  font-family:"PingFang SC","Microsoft YaHei",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

.school-env .env-wrap{max-width:1200px;margin:0 auto;}
.school-env .env-soft{background:var(--panel);border-radius:20px;}
.school-env .env-card{background:var(--card);border-radius:16px;box-shadow:var(--shadow);padding:26px 28px;}

.school-env .env-title{font-size:28px;font-weight:900;color:var(--title);margin-bottom:14px;}
.school-env .env-grid{display:grid;
  /* grid-template-columns:1fr 600px; */
  gap:26px;align-items:start;}
@media (max-width:1024px){ .school-env .env-grid{grid-template-columns:1fr;} }

.school-env .env-list{margin-top:6px;}
.school-env .env-item{color:#666;line-height:24px;font-size:16px;}


/* 粉色提示块 */
.school-env .env-pills{margin-top:40px;background-color: #fdf4f4;border-radius: 20px;}
.school-env .env-pill{
  border-bottom:1px solid #ffd7db;
  color:#c01722;
  padding:0px 16px;font-size:16px;font-weight:700;
  line-height:50px;
}
.school-env .env-pill:nth-of-type(3){border-bottom:0;}


/* 右侧地图 */
.school-env .env-map{border-radius:16px;overflow:hidden;background:#f3f5f7;}
.school-env .env-map img{width:100%;height:100%;object-fit:cover;display:block;}



/* ===== 校园风采 ===== */
.campus-gallery{
  --title:#111; --text:#333; --line:#eee;
  --card:#fff; --panel:#fafafa; --shadow:0 8px 22px rgba(0,0,0,.06);
  --btn:#d7000f; --btn-hover:#bf0d18;
  font-family:"PingFang SC","Microsoft YaHei",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
.campus-gallery .cg-wrap{max-width:1200px;margin:0 auto;}
.campus-gallery .cg-title{font-size:32px;font-weight:900;color:var(--title);margin:58px 0 16px;}
.campus-gallery .cg-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
.campus-gallery .cg-item{
  background:var(--card); border-radius:14px; overflow:hidden;
  box-shadow:var(--shadow);
}
.campus-gallery .cg-img{width:100%; height:100%; display:block; object-fit:cover; aspect-ratio: 16/10;}
.campus-gallery .cg-item:hover .cg-img{transform:scale(1.02);}
.campus-gallery .cg-item .cg-img{transition:transform .35s ease}

/* 展开更多（无JS） */
.campus-gallery details{margin-top:22px;}
.campus-gallery summary{
  list-style:none;
  display:inline-flex; align-items:center; gap:8px;
  background:var(--btn); color:#fff; font-weight:700;
  border-radius:999px; padding:10px 16px; cursor:pointer;
  box-shadow:0 6px 18px rgba(215,0,15,.2);
  user-select:none;
}
.campus-gallery summary::-webkit-details-marker{display:none;}
.campus-gallery summary svg{width:16px;height:16px;transition:transform .25s ease}
.campus-gallery details[open] summary svg{transform:rotate(180deg)}
.campus-gallery summary:hover{background:var(--btn-hover)}
.campus-gallery .cg-more{margin-top:16px}
@media (max-width:1024px){ .campus-gallery .cg-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:640px){ .campus-gallery .cg-grid{grid-template-columns:1fr;} }



/* ===== 专业介绍 ===== */
.major-programs{
  --title:#111; --text:#333; --muted:#666;
  --panel:#f6f6f6; --card:#fff; --line:#eee;
  --shadow:0 8px 22px rgba(0,0,0,.06);
  --accent:#d7000f;
  font-family:"PingFang SC","Microsoft YaHei",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
.major-programs .mp-wrap{max-width:1200px;margin:0 auto;}
.major-programs .mp-block{background:var(--panel);border-radius:20px;margin-bottom:22px;}
.major-programs .mp-card{background:var(--card);border-radius:16px;box-shadow:var(--shadow);padding:22px 24px;}

.major-programs .mp-title{font-size:36px;font-weight:900;color:var(--title);margin:40px 0 16px;}
.major-programs .mp-sub{font-size:24px;font-weight:800;margin:18px 0 36px;color:#222;}

.major-programs .mp-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
@media (max-width:1024px){ .major-programs .mp-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:640px){ .major-programs .mp-grid{grid-template-columns:1fr;} }

/* 专业卡片 */
.major-programs .prog{
  display:block;background:var(--card);border-radius:14px;overflow:hidden;
}
.major-programs .prog-cover{position:relative;border-radius:12px;overflow:hidden;}
.major-programs .prog-cover img{width:100%;height:220px;object-fit:cover;display:block;}
.major-programs .prog-mask{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.45));
}
.major-programs .prog-name{
  position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);
  color:#fff;font-size:22px;font-weight:800;text-shadow:0 2px 8px rgba(0,0,0,.35);
  text-align:center;
}

/* 信息行 */
.major-programs .prog-info{padding:12px 6px 6px;}
.major-programs .meta{display:flex;gap:8px;flex-wrap:wrap;color:var(--muted);font-size:16px;margin:8px 0;}
.major-programs .meta span{
  display: inline-block;
  width: 100%;
}
.major-programs .meta b{color:#444;margin-right:6px;font-weight:700;}
.major-programs .note{color:var(--accent);font-size:14px;font-weight:800;margin-top:6px;}

/* 仅显示“计划开课”的占位行 */
.major-programs .only-note{padding:14px 6px 18px;color:#666;}



/* ===== 留学问答 ===== */
.study-faq{
  --title:#111; --text:#333; --muted:#666;
  --panel:#f6f6f6; --card:#fff; --line:#eee;
  --shadow:0 8px 22px rgba(0,0,0,.06);
  --accent:#d7000f;
  font-family:"PingFang SC","Microsoft YaHei",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
.study-faq .faq-wrap{max-width:1200px;margin:0 auto;}
.study-faq .faq-soft{background:var(--panel);border-radius:20px;}
.study-faq .faq-box{}

/* 标题（按照你的要求） */
.study-faq .faq-title{
  font-size:36px;
  font-weight:900;
  color:var(--title);
  margin:40px 0 16px;
}

/* 单条问答 */
.study-faq details{margin:12px 0;border:1px solid var(--line);border-radius:12px;overflow:hidden;}
.study-faq details[open]{box-shadow:var(--shadow);background-color: #fff;}

.study-faq summary{
  list-style:none; cursor:pointer; user-select:none;
  display:flex; align-items:center; gap:12px;
  padding:16px 18px; position:relative;
}
.study-faq summary::-webkit-details-marker{display:none;}

/* 左侧 Q/A 圆标 */
.study-faq .qa-dot{
  width:28px;height:28px;border-radius:50%;
  display:grid;place-items:center;
  font-weight:800;font-size:14px;color:#fff;
}
.study-faq .is-q{ background:linear-gradient(180deg,#ff4a4a,#d81818); }
.study-faq .is-a{ background:linear-gradient(180deg,#a0a0a0,#7a7a7a); }

/* 问题文本 */
.study-faq .q-text{flex:1;color:#222;font-size:22px;font-weight:700;}

/* 右侧 + / - 图标 */
.study-faq summary::after{
  content:"+"; width:22px;height:22px;border-radius:50%;
  border:2px solid var(--accent); color:var(--accent);
  display:grid;place-items:center; font-weight:900; font-size:14px;
}
.study-faq details[open] summary::after{
  content:"–"; /* 破折号样式的减号 */
  background:var(--accent); color:#fff; border-color:var(--accent);
}

/* 答案区域 */
.study-faq .answer{border-top:1px solid var(--line); padding:14px 18px 16px;}
.study-faq .answer p{margin:0 0 4px;color:var(--text);line-height:1.9;font-size:14px;}
.study-faq .answer .a-head{display:flex;align-items:center;gap:10px;margin-bottom:8px;color:#999;font-weight:700;}
.study-faq .muted{color:#999;font-size:16px}

/* 展开更多按钮（无 JS） */
.study-faq .faq-more{margin-top:14px;}
.study-faq .faq-more > summary{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--accent);color:#fff;font-weight:800;
  border-radius:999px;padding:10px 16px;box-shadow:0 6px 18px rgba(215,0,15,.2);
}
.study-faq .faq-more > summary:hover{filter:brightness(.95)}
.study-faq .faq-more > summary::after{display:none}
.study-faq .faq-more svg{width:16px;height:16px;transition:transform .25s ease}
.study-faq .faq-more[open] svg{transform:rotate(180deg)}
