/* 行业方案页面公共样式（从源项目 css/style.css 提取，供搬移页面使用） */
.container-2 {
  width: 1600px;
  margin: 0 auto;
  position: relative;
}

.free-trial img {
  width: 24px;
  margin-left: 10px;
}
.phone-error-tip {
  color: #FE6C6C;
  display: none;
}

/* 通用按钮 */
.kaitong {
  height: 60px;
  background: #3762ec;
  box-shadow: 0px 12px 12px 1px rgba(12, 66, 255, 0.2);
  border-radius: 30px 30px 30px 30px;
  border: none;
  padding: 12px 36px;
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.15s, transform 0.15s;
  font-family: inherit;
  .right-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
  }
}
.kaitong:hover {
  background: #0c42ff;
  transform: translateY(-1px);
}

.g-bg-title {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 48px;
  color: #333333;
  position: relative;
}

/* 带背景图的标题 */
.g-bg-title > span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.g-bg-title > span::before {
  content: "";
  position: absolute;
  top: -54px;
  left: -3.5ch; /* 向左覆盖约两个字符宽度 */
  width: 228px;
  height: 124px;
  background-image: url('../assets/public/bt_dz@2x.png');
  background-size: 228px 124px;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: 0;
  pointer-events: none;
}
.g-title-content {
  text-align: center;
  margin-top: 20px;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
}

/* 带背景图的标题 */
.g-bg-title2 {
  position: relative;
  display: inline-block;
}
.g-bg-title2 > span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.g-bg-title2 > span::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -10px; /* 向左覆盖约两个字符宽度 */
  width: calc(100% + 20px);
  height: 67px;
  background-image: url('../assets/public/bt_tp@2x.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -1;
  pointer-events: none;
}
.g-bg-title2 > span::after {
    background: none !important;
  }
