.banner-container {
  height: 500px; /* PC默认高度 */
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner-title {
  color: white;
  font-weight: bold;
  font-size: 46px;
}

.banner-subtitle {
  color: white;
  font-size: 24px;
  margin-top: 6px;
}

/* 移动端样式 */
@media (max-width: 768px) {
  .banner-container {
    height: 35vh;
  }
  
  .banner-content {
    top: 8px;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .banner-subtitle {
    font-size: 16px;
  }
}