/* Banner轮播图样式 */
.banner-container {
  width: 1136px;
  height: 300px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slides {
  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;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem;
  text-align: center;
}

.banner-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.banner-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

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

.banner-indicator.active {
  background-color: white;
}

.banner-indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* 首页内容布局 */
.home-about {
  margin-bottom: 2rem;
}

.home-stats {
  margin: 2rem 0;
}

.home-reasons {
  margin-bottom: 2rem;
}

.home-news {
  margin-bottom: 2rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-updates {
  margin-left: 2rem;
  margin-top: 1rem;
}
