
  /* 全局样式重置 */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* 容器样式 */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Hero区域样式 */
  .hero-section {
    background: linear-gradient(135deg, #0052cc 0%, #003399 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('http://www.zzzsw.cn/data/upload/image/20260403/1775195395938663.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
  }
  
  /* 粒子效果 */
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
  }
  
  .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0) scale(1);
      opacity: 0.7;
    }
    50% {
      transform: translateY(-20px) scale(1.1);
      opacity: 1;
    }
  }
  
  .hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
  }
  
  .hero-content {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.1;
    background-clip: text;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s both;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 150px;
    animation: fadeInRight 1s ease-out 0.9s both;
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 6s infinite;
  }
  
  @keyframes shine {
    0% {
      transform: translateX(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) rotate(45deg);
    }
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
  }
  
  .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
   
    background-clip: text;
  }
  
  .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c00 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, #e55a00 0%, #ff6a00 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
  }
  
  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  }
  
  .btn-secondary:hover {
    background: white;
    color: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  }
  
  /* 特性区域样式 */
  .features-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
  }
  
  .features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 82, 204, 0.1), transparent);
  }
  
  .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    animation: fadeInUp 1s ease-out;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #0070f3);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: scaleIn 1s ease-out 0.3s both;
  }
  
  @keyframes scaleIn {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.5s both;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  
  /* 响应式调整 */
  @media (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  .feature-item {
    background: white;
    padding: 50px 35px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 82, 204, 0.1);
    animation: fadeInUp 1s ease-out;
  }
  
  .feature-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .feature-item:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .feature-item:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #0070f3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .feature-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 82, 204, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  }
  
  .feature-item:hover::before {
    transform: scaleX(1);
  }
  
  .feature-item:hover::after {
    width: 300px;
    height: 300px;
  }
  
  .feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e6f0ff, #f0f7ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #0052cc, #0070f3);
    transform: scale(1.1) rotate(360deg);
  }
  
  .feature-item:hover .feature-icon svg {
    fill: white;
    transform: scale(1.1);
  }
  
  .feature-icon svg {
    width: 45px;
    height: 45px;
    fill: #0052cc;
    transition: all 0.3s ease;
  }
  
  .feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .feature-item:hover .feature-title {
    color: #0052cc;
    transform: translateY(-2px);
  }
  
  .feature-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover .feature-description {
    color: #333;
  }
  
  /* 专业区域样式 */
  .majors-section {
    padding: 100px 0;
    background: white;
  }
  
  .majors-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out;
  }
  
  .majors-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    position: relative;
  }
  
  .majors-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #0070f3);
    margin: 20px 0 0;
    border-radius: 2px;
    animation: scaleIn 1s ease-out 0.3s both;
  }
  
  .view-more {
    color: #0052cc;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 82, 204, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 204, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .view-more:hover::before {
    left: 100%;
  }
  
  .view-more:hover {
    background: #0052cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
  }
  
  .view-more svg {
    margin-left: 8px;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }
  
  .view-more:hover svg {
    transform: translateX(5px);
  }
  
  /* 轮播容器 */
  .carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0px 0;
  }
  
  /* 轮播滚动区域 */
  .carousel-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 0px;
  }
  
  /* 隐藏滚动条 */
  .carousel-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .carousel-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  /* 轮播网格容器 */
  .carousel-scroll > div {
    display: flex;
    gap: 20px;
    padding: 10px 0;
  }
  
  /* 轮播控制按钮 */
  .carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    z-index: 10;
  }
  
  .carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }
  
  .carousel-arrow.left::before {
    content: '←';
    font-size: 20px;
    font-weight: bold;
  }
  
  .carousel-arrow.right::before {
    content: '→';
    font-size: 20px;
    font-weight: bold;
  }
  
  /* 响应式调整轮播卡片宽度 */
  @media (min-width: 1024px) {
    .major-card {
      flex: 0 0 calc(33.33% - 14px);
      max-width: calc(33.33% - 14px);
    }
    
    .news-card {
      flex: 0 0 calc(33.33% - 14px);
      max-width: calc(33.33% - 14px);
    }
  }
  
  @media (min-width: 768px) and (max-width: 1023px) {
    .major-card {
      flex: 0 0 calc(33.33% - 12px);
      max-width: calc(33.33% - 12px);
    }
    
    .news-card {
      flex: 0 0 calc(33.33% - 12px);
      max-width: calc(33.33% - 12px);
    }
  }
  
  @media (max-width: 767px) {
    .carousel-scroll {
      padding: 0 15px;
    }
    
    .carousel-scroll > div {
      gap: 15px;
    }
    
    .major-card {
      flex: 0 0 100%;
    }
    
    .news-card {
      flex: 0 0 100%;
    }
    
    .carousel-arrow {
      width: 30px;
      height: 30px;
    }
    
    .carousel-arrow::before {
      font-size: 16px;
    }
  }
  
  .majors-grid {
    display: flex;
    gap: 20px;
    padding: 0;
    width: 100%;
  }
  
  .major-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 82, 204, 0.1);
    animation: fadeInUp 1s ease-out;
  }
  
  /* 导航箭头 */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #0052cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }
  
  .carousel-arrow:hover {
    background: #0052cc;
    color: white;
  }
  
  .carousel-arrow.left {
    left: 10px;
  }
  
  .carousel-arrow.right {
    right: 10px;
  }
  
  /* 指示器 */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .carousel-indicator.active {
    background: #0052cc;
    width: 20px;
    border-radius: 5px;
  }
  
  .major-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .major-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .major-card:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .major-card:nth-child(5) {
    animation-delay: 0.8s;
  }
  
  .major-card:nth-child(6) {
    animation-delay: 1s;
  }
  
  .major-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #0070f3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .major-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .major-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  }
  
  .major-card:hover::before {
    transform: scaleX(1);
  }
  
  .major-card:hover::after {
    opacity: 1;
  }
  
  .major-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .major-card:hover .major-image {
    transform: scale(1.1) rotate(2deg);
  }
  
  .major-image-container {
    overflow: hidden;
    position: relative;
  }
  
  .major-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .major-card:hover .major-image-container::before {
    opacity: 1;
  }
  
  .major-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .major-card:hover .major-tag {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.4);
  }
  
  .major-content {
    padding: 30px;
    position: relative;
    z-index: 1;
  }
  
  .major-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .major-card:hover .major-title {
    color: #0052cc;
    transform: translateY(-2px);
  }
  
  .major-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .major-card:hover .major-info {
    border-bottom-color: rgba(0, 82, 204, 0.2);
  }
  
  .major-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }
  
  .major-card:hover .major-description {
    color: #333;
  }
  
  .major-features {
    list-style: none;
    margin-bottom: 25px;
  }
  
  .major-features li {
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .major-card:hover .major-features li {
    color: #333;
    transform: translateX(5px);
  }
  
  .major-features li::before {
    content: '✓';
    color: #0052cc;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .major-card:hover .major-features li::before {
    color: #0070f3;
    transform: scale(1.2);
  }
  
  .enroll-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #0052cc, #0070f3);
    color: white;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .enroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .enroll-btn:hover::before {
    left: 100%;
  }
  
  .enroll-btn:hover {
    background: linear-gradient(135deg, #003399, #0052cc);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
  }
  
  /* CTA区域样式 */
  .cta-section {
    background: linear-gradient(135deg, #0052cc 0%, #003399 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('http://www.zzzsw.cn/data/upload/image/20260403/1775195395938663.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
  }
  
  .cta-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .cta-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* 学校简介区域样式 */
  .about-section {
    padding: 100px 0;
    background: #f8f9fa;
  }
  
  .about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: fadeInUp 1s ease-out;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
  }
  
  .about-image {
    flex: 1;
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
  }
  
  .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #0052cc, #0070f3);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.4s ease;
  }
  
  .about-image:hover::before {
    opacity: 0.2;
    transform: scale(1.02);
  }
  
  /* 师资力量区域样式 */
  .teachers-section {
    padding: 100px 0;
    background: white;
  }
  
  .teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .teacher-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 82, 204, 0.1);
    animation: fadeInUp 1s ease-out;
  }
  
  .teacher-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .teacher-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .teacher-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  }
  
  .teacher-image {
    height: 300px;
    overflow: hidden;
  }
  
  .teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .teacher-card:hover .teacher-image img {
    transform: scale(1.1);
  }
  
  .teacher-info {
    padding: 30px;
  }
  
  .teacher-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .teacher-card:hover .teacher-name {
    color: #0052cc;
  }
  
  .teacher-title {
    font-size: 1rem;
    color: #0052cc;
    margin-bottom: 15px;
  }
  
  .teacher-description {
    color: #666;
    line-height: 1.7;
  }
  
  /* 学生案例区域样式 */
  .success-stories-section {
    padding: 100px 0;
    background: #f8f9fa;
  }
  
  .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .story-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 82, 204, 0.1);
    animation: fadeInUp 1s ease-out;
  }
  
  .story-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .story-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  }
  
  .story-image {
    height: 250px;
    overflow: hidden;
  }
  
  .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .story-card:hover .story-image img {
    transform: scale(1.1);
  }
  
  .story-content {
    padding: 30px;
  }
  
  .story-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .story-card:hover .story-title {
    color: #0052cc;
  }
  
  .story-description {
    color: #666;
    line-height: 1.7;
  }
  
  /* 校园环境区域样式 */
  .campus-section {
    padding: 100px 0;
    background: white;
  }
  
  .campus-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }
  
  .campus-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out;
  }
  
  .campus-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .campus-item:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .campus-item:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .campus-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  }
  
  .campus-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .campus-item:hover img {
    transform: scale(1.1);
  }
  
  .campus-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .campus-item:hover .campus-caption {
    transform: translateY(0);
  }
  
  /* 新闻动态区域样式 */
  .news-section {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
  }
  
  .news-grid {
    display: flex;
    gap: 20px;
    padding: 0;
    width: 100%;
  }
  
  .news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 82, 204, 0.1);
    animation: fadeInUp 1s ease-out;
  }
  
  .news-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .news-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  }
  
  .news-image {
    height: 200px;
    overflow: hidden;
  }
  
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .news-card:hover .news-image img {
    transform: scale(1.1);
  }
  
  .news-content {
    padding: 30px;
  }
  
  .news-date {
    display: inline-block;
    background: rgba(0, 82, 204, 0.1);
    color: #0052cc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .news-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  
  .news-title a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .news-card:hover .news-title a {
    color: #0052cc;
  }
  
  .news-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .news-link {
    display: inline-block;
    color: #0052cc;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .news-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0052cc;
    transition: width 0.3s ease;
  }
  
  .news-link:hover::after {
    width: 100%;
  }
  
  /* 招生政策区域样式 */
  .admission-section {
    padding: 100px 0;
    background: white;
  }
  
  .admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }
  
  .step-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 82, 204, 0.1);
    animation: fadeInUp 1s ease-out;
  }
  
  .step-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .step-item:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .step-item:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #0070f3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .step-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  }
  
  .step-item:hover::before {
    transform: scaleX(1);
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0052cc, #0070f3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
  }
  
  .step-item:hover .step-number {
    transform: scale(1.1) rotate(360deg);
  }
  
  .step-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .step-item:hover .step-title {
    color: #0052cc;
  }
  
  .step-description {
    color: #666;
    line-height: 1.7;
  }
  
  /* 奖学金与助学金区域样式 */
  .scholarship-section {
    padding: 100px 0;
    background: #f8f9fa;
  }
  
  .scholarship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }
  
  .scholarship-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 82, 204, 0.1);
    animation: fadeInUp 1s ease-out;
  }
  
  .scholarship-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .scholarship-item:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .scholarship-item:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .scholarship-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6a00, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .scholarship-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
  }
  
  .scholarship-item:hover::before {
    transform: scaleX(1);
  }
  
  .scholarship-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
  }
  
  .scholarship-item:hover .scholarship-icon {
    transform: scale(1.1) rotate(360deg);
  }
  
  .scholarship-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
  }
  
  .scholarship-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .scholarship-item:hover .scholarship-title {
    color: #ff6a00;
  }
  
  .scholarship-description {
    color: #666;
    line-height: 1.7;
  }
  
  /* 校企合作区域样式 */
  .cooperation-section {
    padding: 100px 0;
    background: white;
  }
  
  .cooperation-content {
    margin-top: 60px;
  }
  
  .cooperation-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
  }
  
  .logo-item {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
    background: #f8f9fa;
  }
  
  .logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .logo-item img {
    height: 60px;
    object-fit: contain;
  }
  
  .cooperation-benefits {
    background: linear-gradient(135deg, #f8f9fa, #e6f0ff);
    padding: 40px;
    border-radius: 12px;
    animation: fadeInUp 1s ease-out 0.3s both;
  }
  
  .cooperation-benefits h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }
  
  .cooperation-benefits ul {
    list-style: none;
  }
  
  .cooperation-benefits li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: #666;
    transition: all 0.3s ease;
  }
  
  .cooperation-benefits li::before {
    content: '✓';
    color: #0052cc;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
  }
  
  .cooperation-benefits li:hover {
    transform: translateX(10px);
    color: #333;
  }
  
  /* 常见问题区域样式 */
  .faq-section {
    padding: 100px 0;
    background: #f8f9fa;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 60px auto 0;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease-out;
  }
  
  .faq-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .faq-item:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .faq-item:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .faq-question {
    width: 100%;
    padding: 20px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    background: #f8f9fa;
    color: #0052cc;
  }
  
  .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    background: white;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 200px;
  }
  
  .faq-answer p {
    color: #666;
    line-height: 1.7;
  }
  
  /* 联系方式区域样式 */
  .contact-section {
    padding: 100px 0;
    background: white;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
  }
  
  .contact-info {
    animation: fadeInLeft 1s ease-out;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 30px;
    transition: all 0.3s ease;
  }
  
  .contact-item:hover {
    transform: translateX(10px);
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0052cc, #0070f3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  
  .contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(360deg);
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
  }
  
  .contact-details h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-details p {
    color: #666;
    line-height: 1.7;
  }
  
  .contact-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    animation: fadeInRight 1s ease-out;
  }
  
  .contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 10px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 82, 204, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #0052cc;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  /* 响应式设计 */
  @media (max-width: 1024px) {
    /* 中等屏幕设备 */
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-inner {
      flex-direction: column;
      text-align: center;
    }
    
    .hero-stats {
      max-width: 100%;
      flex-direction: row;
      justify-content: center;
    }
    
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .teachers-grid,
    .campus-gallery,
    .admission-steps,
    .scholarship-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-content {
      grid-template-columns: 1fr;
    }
    

  }
  
  @media (max-width: 768px) {
    /* 平板设备 */
    .hero-section {
      padding: 60px 0;
    }
    
    .hero-title {
      font-size: 1.8rem;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
    }
    
    .hero-stats {
      position: static;
      transform: none;
      flex-direction: row;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    
    .stat-item {
      min-width: 100px;
      padding: 10px 15px;
      margin: 0 5px;
    }
    
    .features-section,
    .majors-section,
    .about-section,
    .teachers-section,
    .success-stories-section,
    .campus-section,
    .news-section,
    .admission-section,
    .scholarship-section,
    .cooperation-section,
    .faq-section,
    .contact-section {
      padding: 60px 0;
    }
    
    .section-title,
    .majors-title,
    .cta-title {
      font-size: 1.8rem;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
    }
    
    .majors-header,
    .news-header {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
    }
    
    .about-content {
      flex-direction: column;
      text-align: center;
    }
    
    .cooperation-logos {
      gap: 20px;
    }
    
    .logo-item {
      flex: 1 1 calc(50% - 10px);
      text-align: center;
    }
    
    /* 两列布局的区域 */
    .features-grid,
    .campus-gallery,
    .admission-steps,
    .scholarship-grid,
    .teachers-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    

    
    /* 单列布局的区域 */
    .stories-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    /* 调整卡片大小和间距 */
    .feature-item,
    .teacher-card,
    .story-card,
    .step-item,
    .scholarship-item {
      padding: 25px;
    }
	 .campus-item,
    .news-card,.major-card {
      padding: 0px;
    }
  }
  
  @media (max-width: 480px) {
    /* 手机设备 */
    .hero-title {
      font-size: 1.6rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .hero-stats {
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .stat-item {
      min-width: 80px;
      padding: 8px 12px;
    }
    
    .btn {
      display: block;
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
      margin-right: 0;
      font-size: 0.9rem;
    }
    
    .contact-form {
      padding: 20px;
    }
    
    .cooperation-logos {
      gap: 15px;
    }
    
    .logo-item {
      flex: 1 1 calc(50% - 7.5px);
    }
    
    .majors-header,
    .news-header {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }
    
    .view-more {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
    
    /* 所有区域改为单列布局 */
    .features-grid,
    .teachers-grid,
    .campus-gallery,
    .admission-steps,
    .scholarship-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    

    
    /* 调整内容间距和大小 */
    .feature-item,
    .teacher-card,
    .story-card,
    .step-item,
    .scholarship-item {
      padding: 20px;
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
    }
    
    .feature-icon svg {
      width: 35px;
      height: 35px;
    }
    
    .section-title,
    .majors-title,
    .cta-title {
      font-size: 1.6rem;
    }
    
    .section-subtitle {
      font-size: 1rem;
    }
    
    .feature-title,
    .teacher-name,
    .story-title,
    .step-title,
    .scholarship-title {
      font-size: 1.1rem;
    }
    
    .feature-description,
    .teacher-description,
    .story-description,
    .step-description,
    .scholarship-description {
      font-size: 0.9rem;
    }
  }


 /* 报名和咨询按钮 */

.enroll-buttons-container {
                    display: flex;
                    gap: 10px;
                    margin-top: 20px;
                }
                
                .enroll-buttons-container .enroll-btn {
                    flex: 1;
                    text-align: center;
                    padding: 12px 0;
                    border-radius: 8px;
                    text-decoration: none;
                    font-weight: bold;
                    transition: all 0.3s ease;
                }
                
                .enroll-buttons-container .enroll-btn:first-child {
                    background: #0052cc !important;
                    color: white !important;
                }
                
                .enroll-buttons-container .enroll-btn:last-child {
                    background: #ff9900 !important;
                    color: white !important;
                }
                
                .enroll-buttons-container .enroll-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                }


