.success_banner {
  position: relative;
  width: auto;
  height: 446px;
  margin: 0 auto;
  overflow: hidden;
}

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

.success_banner .hero-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.btn-consult {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: skyblue;
  width: 100px;
  height: 30px;
  border-radius: 10px;
  margin: 10px;
}

/* 应用案例部分 */
.application-cases {
  text-align: center;
  padding: 50px 0;
  background-color: #f9f9f9;
  margin-bottom: 40px;
}

.cases-title {
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.video-item {
  margin: 0 20px;
  margin-bottom: 20px;
}

.view-introduce1,
.view-introduce2 {
  width: 355px;
}

/* 成绩卓越部分 */
.excellent-performance {
  padding: 50px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.excellent-performance h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.performance-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.stat-item {
  width: 30%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.stat-item h3 {
  font-size: 24px;
  color: #503379;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* 录取情况展示 */
.admission-showcase {
  padding: 50px 0;
  text-align: center;
  background-color: #f5f5f5;
}

.admission-showcase h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.country-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.country-tab {
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.country-tab.active {
  background-color: #503379;
  color: white;
}

.admission-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.admission-item {
  width: 300px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.admission-item:hover {
  transform: scale(1.05);
}

.admission-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .performance-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 80%;
    margin-bottom: 20px;
  }
  
  .admission-item {
    width: 100%;
    max-width: 350px;
  }
} 