.section-gap {
  padding: 60px 0;
}

.common-h2 {
  color: #181c25;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto;
}

.common-h3 {
  color: #181c25;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.wrapper {
  padding-top: 55px;
  min-width: 1340px;
}

.wrapper__banner {
  background-color: #fafcff;
  height: 480px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.wrapper__banner .banner-container {
  width: 100%;
  max-width: 1200px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  box-sizing: border-box;
}

.wrapper__banner .banner-container .banner-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 536px;
}

.wrapper__banner .banner-container .banner-left h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4em;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wrapper__banner .banner-container .banner-left .banner-description {
  width: 100%;
  font-size: 16px;
  color: #181c25;
  line-height: 1.625em;
  margin-top: 10px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.button-group .btn-primary {
  margin-left: 0;
  background: #ff8000;
  border-radius: 24px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: 48px;
  padding: 0 24px;
  height: 48px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button-group .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.button-group .btn-primary:hover::before {
  left: 100%;
}

.btn-primary-outline {
  margin-left: 0;
  line-height: 48px;
  color: #181c25 !important;
  background: #fff !important;
  border: 1px solid #181c25;
  border-radius: 24px;
  width: auto !important;
  padding: 0 24px;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-outline:hover {
  color: #ffffff !important;
  background: #ff8000 !important;
  border: 1px solid #ff8000 !important;
  text-decoration: none;
}

.btn-primary-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ff8000 !important;
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-primary-outline:hover::before {
  width: 100%;
}

.wrapper__banner .banner-container .banner-img {
  width: 620px;
  height: 346px;
  background-color: #f3f8ff;
  box-sizing: border-box;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.banner-img-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-img-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* 功能模块部分样式 */
.features-section {
  padding: 80px 0;
  background: #fff;
}

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

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-title {
  font-size: 40px;
  font-weight: 600;
  color: #181c25;
  margin-bottom: 16px;
}

.feature-module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.feature-content {
  flex: 1;
  max-width: 520px;
}

.feature-title {
  font-size: 32px;
  font-weight: 600;
  color: #181c25;
  margin-bottom: 24px;
  line-height: 1.4em;
}

.feature-description {
  font-size: 16px;
  line-height: 26px;
  color: #545861;
  margin-bottom: 32px;
  white-space: pre-line;
}

.feature-image {
  flex: 1;
  max-width: 580px;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.btn-one {
  display: flex;
  gap: 16px;
}

.common-btn-m {
  min-width: 144px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 48px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.primary-btn {
  background: #ff8000;
  color: #ffffff;
  border: none;
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.primary-btn:hover::before {
  left: 100%;
}

/* 介绍文本区域 */
.intro-section {
  padding: 68px 0 40px;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  padding: 48px 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-title {
  font-size: 40px;
  font-weight: 600;
  color: #181c25;
  line-height: 1.4em;
  text-align: center;
  margin: 0;
}

.comparison-cards {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.comparison-card {
  flex: 1;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-card.before {
  background: linear-gradient(152deg, rgba(254, 244, 240, 1) 0%, rgba(255, 250, 240, 1) 100%);
}

.comparison-card.after {
  background: linear-gradient(148deg, rgba(244, 252, 241, 1) 0%, rgba(251, 253, 247, 1) 100%);
}

.comparison-header {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0px 6px 28px 0px rgba(191, 53, 20, 0.06);
  align-self: stretch;
}

.comparison-card.after .comparison-header {
  box-shadow: 0px 6px 28px 0px rgba(20, 191, 154, 0.06);
}

.comparison-header-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: left;
}

.comparison-card.before .comparison-header-text {
  color: #ff8000;
}

.comparison-card.after .comparison-header-text {
  color: #30c776;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 8px;
  margin: 0;
  list-style: none;
}

.comparison-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  padding-left: 20px;
}

.comparison-item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.714em;
  color: #181c25;
  text-align: left;
}

.comparison-item-title::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #181c25;
  line-height: 1;
  font-weight: 600;
}

.comparison-item-content {
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.714em;
  color: #181c25;
  text-align: left;
}

.marketing-h2 {
  color: #181C25;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
}

.marketing-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.marketing-feature-list li {
  color: #181c25;
  font-style: normal;
  line-height: 26px;
  position: relative;
  padding-left: 24px;
}

.marketing-feature-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #181c25;
  border-radius: 50%;
}

/* 媒体查询 - max-width: 1200px */
@media screen and (max-width: 1200px) {
  .wrapper__banner .banner-container {
    padding: 64px 24px;
  }

  .feature-module {
    padding: 60px 24px;
  }
}

/* 媒体查询 - max-width: 800px */
@media screen and (max-width: 800px) {
  .common-h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .common-h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .wrapper {
    min-width: 0;
  }

  .wrapper__banner {
    height: auto;
    min-height: auto;
    padding: 40px 0 60px;
  }

  .wrapper__banner .banner-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .wrapper__banner .banner-container .banner-left {
    width: 100%;
    text-align: center;
  }

  .wrapper__banner .banner-container .banner-left h1 {
    font-size: 28px;
    line-height: 1.3em;
    justify-content: center;
    flex-wrap: wrap;
  }

  .wrapper__banner .banner-container .banner-left h1 img {
    width: 28px !important;
    height: 28px !important;
  }

  .wrapper__banner .banner-container .banner-left .banner-description {
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 16px;
    text-align: left;
  }

  .button-group {
    flex-direction: row;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .button-group .btn-primary {
    font-size: 14px;
    line-height: 36px;
    height: 36px;
    padding: 0 16px;
    width: auto;
    flex: 0 1 auto;
  }

  .btn-primary-outline {
    font-size: 14px;
    line-height: 36px;
    height: 36px;
    padding: 0 16px;
    width: auto !important;
    flex: 0 1 auto;
  }

  .wrapper__banner .banner-container .banner-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
  }

  .features-section {
    padding: 40px 20px;
  }

  .features-container {
    padding: 0;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-title {
    font-size: 24px;
    line-height: 34px;
  }

  .feature-module {
    padding: 40px 20px;
    gap: 32px;
    flex-direction: column;
  }

  .feature-module.reverse {
    flex-direction: column-reverse;
  }

  .feature-content {
    max-width: 100%;
    width: 100%;
  }

  .feature-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .feature-description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .feature-image {
    width: 100%;
    max-width: 100%;
  }

  .feature-image img {
    border-radius: 12px;
  }

  .btn-one {
    justify-content: center;
  }

  .common-btn-m {
    font-size: 14px;
    height: 36px;
    padding: 0 16px;
    width: auto;
    flex: 0 1 auto;
  }

  .intro-section {
    padding: 40px 20px;
  }

  .intro-container {
    padding: 0;
  }

  .intro-content {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .intro-title {
    font-size: 24px;
    line-height: 1.3em;
  }

  .comparison-cards {
    flex-direction: column;
    gap: 16px;
  }

  .comparison-card {
    padding: 20px;
    border-radius: 12px;
  }

  .comparison-header-text {
    font-size: 18px;
  }

  .comparison-item-title {
    font-size: 13px;
  }

  .comparison-item-text {
    font-size: 13px;
    line-height: 1.6em;
  }
}
