/* Banner组件样式 */
.banner-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 var(--spacing-lg);
  color: #ffffff;
}

.banner-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #ffffff;
}

.banner-subtitle {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #ffffff;
  opacity: 0.95;
}

.banner-description {
  font-size: 20px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #ffffff;
  opacity: 0.9;
}

.banner-actions {
  margin-top: 40px;
}

.banner-button {
  display: inline-block;
  padding: 16px 48px;
  background: #ffffff;
  color: #EA580C;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.banner-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-carousel-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ffffff;
  width: 30px;
  border-radius: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .banner-title {
    font-size: 36px;
  }
  
  .banner-subtitle {
    font-size: 20px;
  }
  
  .banner-description {
    font-size: 16px;
  }
  
  .banner-button {
    padding: 12px 32px;
    font-size: 16px;
  }
}

