/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 02 2026 | 12:46:19 */
/* =========================
   CTA Banner Module CSS
   Popup handled by Woody global popup
   ========================= */

.b2b-cta-banner {
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

/* 背景图 + 半透明遮罩 */
.b2b-cta-banner__bg {
  width: 100%;
  height: 500px;
  background-image: url('https://beyouboss.com/wp-content/uploads/2026/05/s20BG.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.b2b-cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 63, 0.6);
}

/* 文字内容区 */
.b2b-cta-banner__content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 550px;
}

.b2b-cta-banner__title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px;
}

.b2b-cta-banner__desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 30px;
}

/* 按钮：调用 Woody 全站 Formspree 弹窗 */
.b2b-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #111111;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
  line-height: 1.2;
}

.b2b-cta-banner__btn::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.b2b-cta-banner__btn:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* 平板适配 */
@media (max-width: 1024px) {
  .b2b-cta-banner__bg {
    height: 400px;
  }

  .b2b-cta-banner__content {
    left: 30px;
    max-width: 90%;
  }

  .b2b-cta-banner__title {
    font-size: 36px;
  }
}

/* 手机适配 */
@media (max-width: 600px) {
  .b2b-cta-banner {
    border-radius: 12px;
  }

  .b2b-cta-banner__bg {
    height: 350px;
  }

  .b2b-cta-banner__content {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .b2b-cta-banner__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .b2b-cta-banner__desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .b2b-cta-banner__btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
