 /* 全局重置 */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   list-style: none;
   text-decoration: none;
 }
 body {
   font-family: 'Arial', sans-serif;
 }
 /* 容器样式 */
 .container {
   width: 92%;
   max-width: 1200px;
   margin: 0 auto;
 }
 


/* 分页容器 */
.pagination-container {
  padding: 40px 0;
  text-align: center;
}

/* 页码条整体布局 */
.pagination-container span {
  display: inline-block;
  margin: 0 4px;
  vertical-align: middle;
}

/* 所有分页链接通用样式 */
.pagination-container a {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid #f5f5f5;
  text-decoration: none;
}

/* 当前页样式 */
.pagination-container .page-num-current {
  background: #ff6b35;
  color: #fff !important;
  border-color: #ff6b35;
}

/* 鼠标悬浮效果 */
.pagination-container a:hover {
  background: #fff7f8;
  color: #E7425C;
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(255, 107, 53, 0.1);
}

/* 页面状态文字（共X条 当前X/X页） */
.pagination-container .page-status {
  font-size: 14px;
  color: #666;
  margin-right: 12px;
  min-width: auto;
  height: auto;
  line-height: 1;
  background: transparent;
  border: none;
}

/* 无障碍聚焦 */
.pagination-container a:focus-visible {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
  border-radius: 8px;
}

/* 移动端响应式 */
@media (max-width: 768px) {
  .pagination-container a {
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 13px;
  }
  .pagination-container span {
    margin: 0 2px;
  }
}

 /*----------------------分页容器结束 --- */





 /* ----------------------导航栏核心样式 */
 .navbar {
   background: #fff;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
   position: sticky;
   top: 0;
   z-index: 9999;
   padding: 8px 0;
 }
 .navbar-content {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
 }
 /* LOGO区域：固定50*50 + 标题排版 */
 .logo-area {
   display: flex;
   align-items: center;
   gap: 12px;
   flex-shrink: 0; /* 防止移动端挤压 */
 }
 .logo img {
   width: 50px;
   height: 50px;
   object-fit: cover;
   border-radius: 6px;
 }
 .site-title h3 {
   font-size: 18px;
   color: #E7425C;
   line-height: 1.2;
   margin-bottom: 2px;
 }
 .site-title h4 {
   font-size: 12px;
   color: #999; /* 烟灰色小字 */
   font-weight: normal;
   line-height: 1;
 }
 /* 汉堡按钮：移动端显示 */
 .hamburger {
   display: none;
   flex-direction: column;
   gap: 4px;
   cursor: pointer;
   padding: 6px;
   z-index: 10000;
 }
 .hamburger span {
   width: 24px;
   height: 2px;
   background: #E7425C;
   transition: all 0.3s ease;
 }
 /* 导航菜单：默认右对齐，PC端显示 */
 .nav-menu {
   display: flex;
   align-items: center;
 }
 .nav-menu ul {
   display: flex;
   align-items: center;
   gap: 28px;
 }
 .nav-menu a {
   font-size: 15px;
   color: #E7425C;
   transition: all 0.3s ease;
   position: relative;
   padding-bottom: 4px;
 }
 /* 导航文字hover：下划线+颜色渐变 */
 .nav-menu a:hover {
   color: #333;
 }
 .nav-menu a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background: #ff6b35;
   transition: width 0.3s ease;
 }
 .nav-menu a:hover::after {
   width: 100%;
 }
 /* 联系电话按钮样式：参考原有主题 */
 .btn-primary {
   display: inline-block;
   background: #ff6b35;
   color: #fff !important;
   padding: 7px 18px;
   border-radius: 20px;
   font-size: 14px;
   font-weight: 500;
   transition: all 0.3s ease;
   cursor: pointer;
 }
 .btn-primary:hover {
   background: #e55a2b;
   box-shadow: 0 3px 8px rgba(255, 107, 53, 0.2);
   background: #fff;
   color: #E7425C !important;
 }
 /* 响应式：992px以下隐藏h4小字 */
 @media (max-width: 992px) {
   .site-title h4 {
     display: none;
   }
   .nav-menu ul {
     gap: 20px;
   }
 }
 /* 响应式：768px以下适配移动端 */
 @media (max-width: 768px) {
   /* 显示汉堡按钮 */
   .hamburger {
     display: flex;
   }
   /* 导航菜单默认隐藏，绝对定位占满屏幕 */
   .nav-menu {
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: #fff;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
     padding: 20px 0;
     display: none;
   }
   /* 点击后显示菜单 */
   .nav-menu.show {
     display: block;
   }
   /* 移动端菜单纵向排列 */
   .nav-menu ul {
     flex-direction: column;
     align-items: flex-start;
     width: 92%;
     margin: 0 auto;
     gap: 0;
   }
   .nav-menu li {
     width: 100%;
     padding: 12px 0;
     border-bottom: 1px solid #f5f5f5;
   }
   .nav-menu li:last-child {
     border-bottom: none;
     margin-top: 8px;
   }
   /* 移动端电话按钮适配 */
   .btn-primary {
     padding: 8px 20px;
     width: 100%;
     text-align: center;
   }
 }
 /* ========== 特色优势板块 ========== */
 .features {
   padding: 60px 0;
   background: #fdfbf5;
 }
 .section-header {
   text-align: center;
   margin-bottom: 40px;
 }
 .section-header h2 {
   font-size: 28px;
   color: #E7425C;
   margin-bottom: 10px;
 }
 .section-header p {
   font-size: 16px;
   color: #666;
 }
 .features-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 30px;
 }
 .feature-card {
   background: #fff;
   padding: 35px 20px;
   border-radius: 15px;
   text-align: center;
   box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
 }
 .feature-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 8px 20px rgba(231, 66, 92, 0.12);
 }
 .feature-icon {
   width: 70px;
   height: 70px;
   margin: 0 auto 20px;
   background: #fff7f8;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #E7425C;
   font-size: 28px;
   transition: 0.3s;
 }
 .feature-card:hover .feature-icon {
   background: #E7425C;
   color: #fff;
 }
 .feature-card h3 {
   font-size: 18px;
   color: #333;
   margin-bottom: 10px;
 }
 .feature-card p {
   font-size: 14px;
   color: #666;
   line-height: 1.5;
 }
 /* 滚动屏 */
 .btn-orange {
   background-color: #ff6b35;
   color: #fff;
   padding: 12px 30px;
   border-radius: 25px;
   text-decoration: none;
   font-weight: 500;
   transition: all 0.3s ease;
 }
 .btn-orange:hover {
   background-color: #e55a2b;
   transform: translateY(-2px);
 }
 .btn-transparent {
   border: 2px solid #ff6b35;
   color: #ff6b35;
   padding: 10px 30px;
   border-radius: 25px;
   text-decoration: none;
   font-weight: 500;
   transition: all 0.3s ease;
 }
 .btn-transparent:hover {
   background-color: #ff6b35;
   color: #fff;
   transform: translateY(-2px);
 }
 /* 通用 section 样式 */
 .section-header {
   text-align: center;
   margin-bottom: 50px;
 }
 .section-header p {
   font-size: 16px;
   color: #666;
 }
 /* 校园风采 */
 .campus {
   padding: 80px 0;
   background-color: #f9f5f0;
 }
 .campus-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
   margin-bottom: 40px;
 }
 .campus-card {
   background-color: #fff;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
 }
 .campus-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }
 .campus-card img {
   width: 100%;
   height: 200px;
   object-fit: cover;
 }
 .campus-card h3 {
   padding: 20px;
   text-align: center;
   font-size: 16px;
   font-weight: bold;
   color: #333;
 }
 .campus-more {
   text-align: center;
 }
 /*---------------------------园所动态----*/
 .news {
   padding: 60px 0;
   background-color: #f9f5f0;
 }
 .news-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
 }
 .news-card {
   background-color: #f9f9f9;
   border-radius: 10px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden; /* 确保hover效果不溢出 */
   padding: 0; /* 关键：去掉内边距 */
 }
 .news-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }
 .news-card img {
   width: 100%;
   height: 210px;
   object-fit: cover;
   display: block;
 }
 .news-card h3 {
   padding: 20px 20px 10px;
   font-size: 16px;
   font-weight: bold;
   color: #333;
 }
 .news-card p {
   padding: 0 20px 15px;
   font-size: 14px;
   color: #666;
   line-height: 1.5;
 }
 .news-card a {
   display: inline-block;
   padding: 0 0 10px 0;
   font-size: 14px;
   color: #e55a2b;
   text-decoration: none;
   font-weight: 500;
   transition: all 0.3s ease;
 }
 .news-card a:hover {
   color: #e55a2b;
 }
 /* 无障碍优化：聚焦状态 */
 .news-card:focus-visible {
   outline: 2px solid #ff6b35;
   outline-offset: 2px;
   border-radius: 10px;
 }
 /* 查看更多按钮样式 */
 .news-more-btn {
   text-align: center;
   margin-top: 40px;
 }
 /* ----------------------页脚 */
 .footer {
   background-color: #333;
   color: #fff;
   padding: 60px 0 30px;
 }
 .footer-content {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 40px;
   margin-bottom: 40px;
 }
 .footer-info h3, .footer-contact h3, .footer-time h3, .footer-link h3 {
   font-size: 18px;
   font-weight: bold;
   margin-bottom: 20px;
 }
 .footer-info p, .footer-contact p {
   font-size: 14px;
   margin-bottom: 10px;
   line-height: 1.5;
 }
 .footer-wechat img {
   width: 100px;
   height: 100px;
   border-radius: 5px;
 }
 /* 二维码横向排列 */
 .footer-wechat-group {
   display: flex;
   gap: 15px;
   justify-content: flex-start;
   align-items: center;
 }
 .footer-wechat {
   flex-shrink: 0; /* 防止二维码被压缩 */
 }
 .footer-wechat img {
   width: 100px;
   height: 100px;
   border-radius: 5px;
   border: 2px solid #fff; /* 增加白色边框提升视觉效果 */
 }
 /* 在线报名表单样式 */
 .footer-form {
   color: #fff;
 }
 .footer-form h3 {
   font-size: 18px;
   font-weight: bold;
   margin-bottom: 20px;
 }
 .enroll-form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 .form-group input, .form-group select {
   width: 100%;
   padding: 10px 12px;
   border-radius: 5px;
   border: none;
   font-size: 14px;
   color: #333;
   outline: none;
 }
 .form-group input::placeholder {
   color: #999;
 }
 .btn-enroll {
   background-color: #ff6b35;
   color: #fff;
   border: none;
   padding: 10px 0;
   border-radius: 5px;
   font-weight: 500;
   cursor: pointer;
   transition: all 0.3s ease;
 }
 .btn-enroll:hover {
   background-color: #e55a2b;
   transform: translateY(-2px);
 }
 /* 响应式适配（小屏幕优化） */
 @media (max-width: 992px) {
   .footer-content {
     grid-template-columns: repeat(2, 1fr);
   }
   .footer-wechat-group {
     justify-content: center; /* 中等屏幕二维码居中 */
   }
 }
 @media (max-width: 768px) {
   .footer-content {
     grid-template-columns: 1fr;
     gap: 30px;
   }
   .footer-wechat-group {
     justify-content: center; /* 小屏幕二维码居中 */
   }
   .enroll-form {
     max-width: 300px; /* 小屏幕表单限制宽度 */
     margin: 0 auto;
   }
   /* 修正原有footer-link样式（替换为form后无需保留，若需保留可调整） */
   .footer-link {
     display: none; /* 若不需要原有站内导航，隐藏；如需保留可调整grid布局 */
   }
   .footer-link ul {
     list-style: none;
   }
   .footer-link li {
     margin-bottom: 10px;
   }
   .footer-link a {
     color: #fff;
     text-decoration: none;
     font-size: 14px;
     transition: all 0.3s ease;
   }
   .footer-link a:hover {
     color: #ff6b35;
     transform: translateX(5px);
   }
   .footer-bottom {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid #555;
     font-size: 14px;
     color: #999;
   }
   /* 响应式设计 */
   @media (max-width: 992px) {
     .features-grid {
       grid-template-columns: repeat(2, 1fr);
     }
     .campus-grid {
       grid-template-columns: repeat(2, 1fr);
     }
     .news-grid {
       grid-template-columns: repeat(2, 1fr);
     }
     .footer-content {
       grid-template-columns: repeat(2, 1fr);
     }
   }
   @media (max-width: 768px) {
     .features-grid {
       grid-template-columns: 1fr;
     }
     .campus-grid {
       grid-template-columns: 1fr;
     }
     .news-grid {
       grid-template-columns: 1fr;
     }
     .footer-content {
       grid-template-columns: 1fr;
     }
   }
   /* 动画效果 */
   @keyframes fadeIn {
     from {
       opacity: 0;
       transform: translateY(20px);
     }
     to {
       opacity: 1;
       transform: translateY(0);
     }
   }
   .feature-card, .campus-card, .news-card {
     animation: fadeIn 0.6s ease-out;
   }
   .feature-card:nth-child(1) {
     animation-delay: 0.1s;
   }
   .feature-card:nth-child(2) {
     animation-delay: 0.2s;
   }
   .feature-card:nth-child(3) {
     animation-delay: 0.3s;
   }
   .feature-card:nth-child(4) {
     animation-delay: 0.4s;
   }
   .campus-card:nth-child(1) {
     animation-delay: 0.1s;
   }
   .campus-card:nth-child(2) {
     animation-delay: 0.2s;
   }
   .campus-card:nth-child(3) {
     animation-delay: 0.3s;
   }
   .news-card:nth-child(1) {
     animation-delay: 0.1s;
   }
   .news-card:nth-child(2) {
     animation-delay: 0.2s;
   }
   .news-card:nth-child(3) {
     animation-delay: 0.3s;
   }