/* 弹窗基础样式 */
.popup {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
  }
  
  /* 弹窗内容容器 */
  .popup-content {
    position: relative;
    margin: 5% auto;
    background: white;
    width: 360px;
    height: 360px;
    border: 2px solid #333;
    /* display: flex; */
    justify-content: center; 
    align-items: center;    
  }
  
  /* 弹窗图片 */
  .popup-content img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh; /* 限制最大高度 */
  }
  
  /* 关闭按钮 */
  .close-btn {
    position: absolute;
    right: 15px;
    top: 5px;
    font-size: 28px;
    cursor: pointer;
  }
  
  .btn-image {
    width: 90px;
    height: 90px;
    border: none;
    background-image: url('http://www.szlvke.com/assets/img/contact/10101.jpg');
    background-size: cover;  /* 确保图片覆盖整个按钮 */
    color: white;  /* 文字颜色 */
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;  /* 添加悬停动画 */
}

.contact-info {
  background-color: #34495e;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}
.contact-info h2 {
  margin-bottom: 20px;
}
.contact-info p {
  margin: 5px 0;
}
.contact-info .icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.phone-icon::before {
  content: "📞";
  font-size: 16px;
}
.email-icon::before {
  content: "✉️";
  font-size: 16px;
}
.website-icon::before {
  content: "🌐";
  font-size: 16px;
}
.location-icon::before {
  content: "📍";
  font-size: 16px;
}

.index-banner-title {
  font-size: 60px;
  line-height: 64px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
  color: #c70039;
  margin-bottom: 0;
}


 /* 轮播容器样式 */
 .carousel-slide {
  position: relative;
  max-width: 100%;
  /* margin: 20px auto; */
  overflow: hidden;
}

/* 轮播内容区域 */
.carousel-slide-inner {
  display: flex;
  transition: transform 0.5s ease;
}

/* 单个轮播项 */
.carousel-slide-item {
  min-width: 100%;
  height: 100%;
  margin-top: 5%;
}

/* 图片样式 */
.carousel-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 控制按钮样式 */
.carousel-slide-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 15px;
  cursor: pointer;
  border: none;
  font-size: 20px;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}