#bzy-landing-page {
  min-width: 1400px;
  margin: 0 auto;
}

.hero-banner {
  background-image: url(../../img/wmAi/ads/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1920px;
  height: 400px;
}

.hero-banner-inner {
  width: 1400px;
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.hero-banner .banner-desc {
  position: absolute;
  top: 192px;
  left: 162px;
  font-size: 20px;
}

/* .hero-banner .button-container {
  position: relative;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
} */

/* 按钮定位优化 */
.button {
  position: absolute;
  /* width: 84px;
    height: 28px;
    font-size: 14px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}
.button-free-trial {
  background-color: #175cd6;
  color: #fff;
}
.button-free-trial:hover {
  color: #fff;
}
.button-schedule-demo {
  background-color: #fff;
  color: #175cd6;
  border: 1px solid #175cd6;
}
.button-schedule-demo:hover {
  color: #175cd6;
}

.hero-banner .button {
  top: 250px;
  width: 84px;
  height: 30px;
}
.hero-banner .button-free-trial {
  left: 162px;
}

.hero-banner .button-schedule-demo {
  left: 286px;
}

.hero-banner .button-pricing {
  position: absolute;
  top: 252px;
  left: 400px;
  font-size: 18px;
  text-decoration: none;
}
.hero-banner .button-pricing:hover {
  color: #000;
  text-decoration: underline;
}

/* 第三个按钮样式 */
.button-free2-trial {
  top: 64.88%;
  left: 36.2%;
  width: 11.13%;
  height: 10.47%;
}

.button-schedule2-demo {
  top: 64.88%;
  left: 52.79%;
  width: 11.13%;
  height: 10.47%;
}

.footer {
  font-size: 12px; /* 默认字体大小为12px */
  padding: 40px 0;
  background-color: #00203e;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.w1005 {
  width: 1005px;
  margin-left: auto;
  margin-right: auto;
}

.footer-intro {
  display: flex; /* 使用 flexbox 布局 */
  align-items: center; /* 垂直居中对齐 */
  margin-bottom: 20px; /* 添加一些间距 */
}

.footer-intro img {
  margin-right: 10px; /* 图片与文字之间的间距 */
}

.footer-intro span {
  font-size: 14px; /* 文字大小为14px */
  color: white; /* 文字颜色 */
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; /* 使用 flexbox 布局 */
  justify-content: space-between; /* 横向对齐 */
  flex: 1; /* 占据剩余空间 */
  margin-right: 20px; /* 与微信二维码的间距 */
}

/* 新增：包裹 footer-nav 和 微信二维码的容器 */
.footer-content {
  display: flex; /* 使用 Flexbox 布局 */
  justify-content: space-between; /* 让两个部分左右分布 */
  align-items: flex-start; /* 顶部对齐 */
}

/* 微信二维码样式 */
.footer-wechat {
  text-align: center; /* 文字居中 */
  margin-left: 20px; /* 与 footer-nav 的间距 */
}

.footer-wechat p {
  margin-top: 5px; /* 文字与图片的间距 */
  font-size: 12px;
  color: white;
}

.footer-nav li {
  flex: 1; /* 每个 li 占据相等的空间 */
  margin: 0 0px; /* 添加一些间距 */
}

.footer-nav-heading {
  font-size: 14px; /* 标题字体大小为14px */
  margin-bottom: 20px;
  text-align: left; /* 标题居中对齐 */
}

.footer-subnav {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-subnav li {
  margin-bottom: 5px;
}

.footer-subnav li img {
  margin-right: 5px; /* 图片与文字之间的间距 */
}

.footer-subnav li span {
  font-size: 12px; /* 文字大小为12px */
  color: white; /* 文字颜色 */
  text-align: left;
  width: 200px;
}

.footer-subnav a {
  color: white;
  text-decoration: none;
}

.footer-subnav a:hover {
  text-decoration: underline;
}

.footer-tel {
  font-size: 14px; /* 电话号码字体大小为14px */
  color: #ffcc00;
  margin-top: 10px;
  text-align: center; /* 电话号码居中对齐 */
}

.footer-qrcode {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center; /* 二维码居中对齐 */
}

.footer-qrcode li {
  margin-top: 10px;
}

.qrcode-wrap img {
  display: inline-block;
}

.qrcode-text {
  font-size: 12px; /* 二维码文字字体大小为12px */
  color: #ccc;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* 弹窗样式 */
.popup {
  display: none; /* 默认不显示弹窗 */
  position: fixed; /* 固定定位 */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  width: 300px;
  text-align: left;
  flex-direction: column;
  justify-content: space-between; /* 使内容分布在顶部和底部 */
}

/* 弹窗头部样式 */
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.popup-header p {
  margin: 0;
  font-size: 15px;
}

/* 修改 close-button 样式 */
.close-button {
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative; /* 为绝对定位的子元素提供参照 */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.close-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%; /* 缩短线条长度，看起来更精致 */
  height: 2px;
  background: #cecece; /* 使用深色，提高可视性 */
  transform-origin: center;
}

.close-button span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-button span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 表单容器样式 */
.form-container {
  display: flex;
  flex-direction: column;
  flex: 1; /* 占据剩余空间 */
  width: 100%;
  position: relative; /* 为绝对定位提供参考 */
}

/* 表单组样式 */
.form-group {
  width: 100%;
  margin-bottom: 15px;
  text-align: left;
  font-size: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

/* 必填字段红星样式（放在前面） */
.form-group.required label:not(.checkbox-group label)::before {
  content: "*";
  color: red;
  margin-right: 4px;
}

/* 输入框样式 */
.form-group input[type="text"] {
  width: calc(100% - 16px);
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* 复选框组样式 */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 5px;
}

.checkbox-group div {
  display: flex;
  align-items: center;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0;
  margin-right: 8px;
  width: auto;
}

.checkbox-group label {
  margin: 0;
  width: auto;
}

/* 提交按钮样式 - 固定在底部 */
.popup button[type="submit"] {
  width: calc(100% - 40px); /* 比弹窗宽度小40px */
  padding: 6px 0;
  background-color: #1552c1;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 30px; /* 自动上边距将按钮推到底部 */
  align-self: center; /* 水平居中 */
}

.popup button[type="submit"]:hover {
  background-color: #0093dc;
}

/* 确保表单内容不会溢出 */
.form-container form {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 单选框选中时的样式 */
.checkbox-group input[type="checkbox"]:checked {
  accent-color: #1552c1; /* 修改选中时的颜色，使用16进制颜色 */
}

/* Features Tab Component Styles */
.features {
  padding: 60px 0;
}

.features-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.features-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

.features-tabs {
  display: flex;
  flex-direction: column;
}

.features-tab-headers {
  display: flex;
  flex-direction: row;
  gap: 0;
  justify-content: stretch;
  flex-wrap: nowrap;
  background: white;
}

.features-tab-header {
  /* display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; */
  padding: 25px 20px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: none;
  flex: 1;
  border-bottom: 3px solid transparent;
}

.features-tab-header:hover {
  background-color: #f8f9fa;
  border-bottom: 3px solid #175cd6;
}

.features-tab-header.active {
  background: white;
  color: #175cd6;
  border-bottom: 3px solid #175cd6;
}

.features-tab-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.features-tab-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-tab-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

.features-tab-header.active .features-tab-title {
  color: #175cd6;
}

.features-tab-subtitle {
  font-size: 12px;
  color: #aaa;
  line-height: 1.4;
  text-align: center;
}

.features-tab-header.active .features-tab-subtitle {
  color: #175cd6;
}

.features-tab-panels {
  flex: 1;
  /* min-height: 400px; */
}

.features-tab-panel {
  display: none;
  padding: 40px;
  height: 100%;
}

.features-tab-panel.active {
  display: block;
}

#features-tab-panel-3 .features-image-extra {
    left: 10px;
    top: 20px;
    width: auto;
    right: 10px;
}

.features-panel-content {
  display: flex;
  gap: 30px;
}

.features-panel-content-left {
  flex: 1 0 40%;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  padding-top: 60px;
  padding-left: 30px;
  line-height: 2;
}

.features-panel-content-right {
  flex: 1 0 60%;
}

.features-image-container {
  padding: 30px;
  display: flex;
  align-items: center;
}

.features-image-inner {
  position: relative;
}

.features-image {
  /* width: 800px; */
  width: 100%;
}

.features-image-extra {
  position: absolute;
  width: 50%;
  right: -30px;
  bottom: -50px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .features-tab-headers {
    overflow-x: auto;
    justify-content: stretch;
    gap: 0;
    padding-bottom: 0;
  }

  .features-tab-header {
    flex-shrink: 0;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .features-tab-header {
    min-width: 180px;
    padding: 20px 16px;
  }

  .features-tab-icon {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .features-tab-title {
    font-size: 14px;
  }

  .features-tab-subtitle {
    font-size: 12px;
  }

  .features-panel-content {
    padding: 30px 20px;
  }

  .features-panel-content h3 {
    font-size: 24px;
  }
}

/* 关于我们 */
.about-us {
  background-image: url(../../img/wmAi/ads/about_us_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1920px;
  height: 503px;
}

.about-us-inner {
  width: 1400px;
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.about-us .about-us-desc {
  position: absolute;
  top: 180px;
  left: 752px;
  font-size: 18px;
  line-height: 1.6;
  width: 500px;
}

.about-us .about-us-statement {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #aaa;
}

.our-service {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 0;
}

.our-service-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.our-service-subtitle {
  text-align: center;
  font-size: 16px;
  color: #aaa;
  line-height: 1.4;
  margin-bottom: 30px;
}

.service-cells {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.service-cell {
  flex: 1 0 33%;
  display: flex;
  padding: 15px 20px;
  border: 1px solid #1552c1;
  border-radius: 4px;
}

.service-cell-left {
  flex: 1 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-cell-right {
  flex: 1 0 50%;
  line-height: 2;
}

.service-cell-consult {
  background-color: #175cd6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  width: 120px;
  height: 30px;
  margin-top: 10px;
}

.service-tabs {
  display: flex;
  flex-direction: column;
}

.service-tab-headers {
  display: flex;
  flex-direction: row;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background: white;
  margin-bottom: 30px;
}

.service-tab-header {
  /* display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; */
  padding: 20px 30px;
  font-size: 20px;
  line-height: 1;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-tab-header:hover {
  color: #175cd6;
}

.service-tab-header.active {
  background: #175cd6;
  color: #fff;
}

.pricing-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}
.pricing-card {
  flex: 1;
  max-width: 550px;
  background: #fff;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  padding: 30px 50px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}
.pricing-card.premium-plan {
  box-shadow: 0 3px 8px rgba(23, 92, 214, 1);
}
.pricing-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pricing-card-consult {
  background-color: #175cd6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  width: 120px;
  height: 30px;
  margin-top: 10px;
}

.pricing-card-price {
  font-size: 20px;
  color: #175cd6;
}

.pricing-card-feature {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-tab-panel {
  display: none;
}

.service-tab-panel.active {
  display: block;
}

.comparison-table {
  min-width: 900px;
  max-width: 1180px;
  margin: 0 auto;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #ddd;
  text-align: right;
}

.comparison-table th {
  font-size: 16px;
  font-weight: 400;
}

.comparison-table .note {
  font-size: 12px;
  line-height: 1;
  color: #999;
  height: 0;
  margin-top: 2px;
}

.faq {
  width: 800px;
  margin: 0 auto 30px;
}

.faq-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.faq-content {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  line-height: 1.6;
}

.faq-content-left,
.faq-content-right {
  flex: 1 0 50%;
}

.try-now {
  background-image: url(https://oss.wkefu.com/wm_resources/guanwang/assets/img/ads_automation/5.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1920px;
  height: 430px;
}

.try-now .button-container {
  width: 1400px;
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.try-now .button {
  top: 280px;
  height: 45px;
  width: 132px;
  background-color: transparent;
  border: 0;
}
.try-now .button-free-trial {
  left: 535px;
}
.try-now .button-schedule-demo {
  left: 735px;
}
