
.cta-inquiry-module {
  position: relative;
  background-image: url('//ueeshop.ly200-cdn.com/u_file/UPBE/UPBE114/2604/07/photo/2bc4067d6b.jpg'); /* 修改背景图 */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
}

.cta-overlay {
  background: rgba(0,0,0,0.6); /* 半透明遮罩增强可读性，可调整 */
  padding: 60px 20px;
  border-radius: 15px;
}

.cta-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta-content {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background-color: #C1272E; /* 按钮颜色 */
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* 按钮悬停效果 */
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* 移动端适配 */
@media screen and (max-width: 992px) {
  .cta-title {
    font-size: 30px;
  }
  .cta-content {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .cta-inquiry-module {
    padding: 60px 10px;
  }
  .cta-overlay {
    padding: 40px 10px;
  }
  .cta-title {
    font-size: 24px;
  }
  .cta-content {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }
}
