.colorText {
  background: linear-gradient(
    160deg,
    #c865f7 0%,
    #3166f4 57.51953125%,
    #a2cdff 100%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.colorText-1 {
  background: linear-gradient(0deg, #6b66fd 0%, #0067ed 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.info-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 56px;
}
.list-unstyled li {
  display: flex;
  align-items: center;
}
.list-unstyled li + li {
  margin-top: 16px;
}
.list-unstyled li span::before {
  content: "";
  width: 12px;
  height: 9px;
  display: inline-flex;
  margin-right: 10px;
  background: url(../images/default/blue-check.png) no-repeat center / contain;
}
.radius-row {
  border-radius: 18px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .info-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 28px;
  }
  .list-unstyled li {
    flex-direction: column;
    align-items: flex-start;
  }
  .radius-row {
    border-radius: 0;
  }
}
/*banner*/
.default-banner {
  min-height: 770px;
  padding-top: 150px;
  background: url(../images/default/banner-bj.webp) no-repeat center;
  background-size: cover;
}
.bannerChannel{
  width: 100%;
  max-width: 400px;
  margin-left: -8px;
}
.banner-freeTrial-btn {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  padding: 20px 50px;
  border-radius: 30px;
  background: linear-gradient(-90deg, #8884ff, #0067ed);
  transition: color cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.banner-freeTrial-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.banner-schedule-btn {
  color: #0067ed;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  padding: 20px 50px;
  border-radius: 30px;
  border: 1px solid #0067ed;
  transition: color cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.banner-schedule-btn:hover {
  color: rgba(0, 103, 237, 0.8);
}
.default-banner video {
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: transparent;
}
.default-banner .banner-mobile{
  width: 100%;
  display: none;
}

/* 移动端视频优化 */
@media screen and (max-width: 768px) {
  .default-banner .banner-mobile {
    display: block;
  }
  .default-banner video {
    display: none;
    max-height: 300px; /* 限制最大高度 */
    object-fit: cover; /* 移动端使用 cover 填充容器 */
  }
}
@media screen and (max-width: 768px) {
  .default-banner {
    padding-top: 100px;
  }
  .banner-freeTrial-btn,
  .banner-schedule-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}
.banner-feature {
  gap: 10px 20px;
}
.banner-feature li {
  display: flex;
  align-items: center;
}
.banner-feature li::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-flex;
  margin-right: 7px;
  background: url(../images/default/blue-check-solid.webp) no-repeat center /
    contain;
}
/*页面索引*/
.section-nav-wrap {
  width: fit-content;
  max-width: 948px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  margin: 0 auto;
  padding: 9px;
  border-radius: 39px;
  position: relative;
}

/* 浮动导航样式 */
.section-nav-wrap.nav-fixed {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 默认隐藏状态（用于初始加载时的过渡） */
.section-nav-wrap:not(.nav-fixed) {
  opacity: 1;
  visibility: visible;
}

/* 渐变边框伪元素 */
.section-nav-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 39px;
  background: linear-gradient(270deg, #a165f6, #136bef);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
/* section-nav-wrap 固定在顶部的状态 */
.section-nav-wrap.nav-fixed {
  position: fixed;
  top: 16px !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

/* 双导航显示状态：section-nav-wrap 在主导航下方 */
.section-nav-wrap.nav-fixed.nav-both-visible {
  top: 76px !important; /* 16px + 主导航高度约60px */
}

/* 锚点跳转偏移：防止固定导航遮挡内容 */
section[id] {
  scroll-margin-top: 120px; /* 默认偏移量，覆盖单导航情况 */
  scroll-padding-top: 120px; /* 备用方案，增强兼容性 */
}

/* 双导航显示时的锚点偏移 */
body.nav-both-visible-mode section[id] {
  scroll-margin-top: 160px; /* 增加偏移量，覆盖双导航情况 */
  scroll-padding-top: 160px; /* 备用方案，增强兼容性 */
}
.section-nav{
  position: relative;
}
.section-nav li {
  padding: 18px 30px;
  font-size: 16px;
  cursor: pointer;
  word-break: keep-all;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.section-nav li a {
  color: inherit;
  text-decoration: none;
}

.section-nav li.active {
  color: #132420;
}

.li-bg {
  position: absolute;
  background: #eff4fa;
  box-shadow: 0px 1px 6px 0px rgba(23, 23, 25, 0.1);
  border-radius: 30px;
  height: 100%;
  top: 0px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border: 1px solid transparent;
  background-clip: padding-box;
}

/* 背景渐变边框伪元素 */
.li-bg::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(270deg, #a165f6, #136bef);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* 平板响应式 (768px - 991px) */
@media screen and (max-width: 991px) {
  .section-nav-wrap {
    max-width: 100%;
    padding: 6px;
    border-radius: 30px;
  }

  .section-nav-wrap::before,
  .li-bg {
    border-radius: 30px;
  }

  .section-nav li {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* 手机响应式 (小于 768px) */
@media screen and (max-width: 767px) {
  .section-nav-wrap {
    width: 100%;
    max-width: 100%;
    padding: 4px;
    border-radius: 20px;
    overflow: visible;
  }

  .section-nav-wrap.nav-fixed {
    width: calc(100% - 30px);
    max-width: fit-content;
    top: 70px;
  }

  .section-nav-wrap::before,
  .li-bg {
    border-radius: 20px;
  }

  .section-nav {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-wrap: nowrap;
  }

  .section-nav::-webkit-scrollbar {
    display: none;
  }

  .section-nav li {
    padding: 6px 8px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    flex-grow: 0;
  }
}

/* 小屏手机 (小于 480px) */
@media screen and (max-width: 479px) {
  .section-nav li {
    padding: 8px 12px;
    font-size: 12px;
  }
}
/*为什么选择米多客*/
.why-title-img {
  max-height: 48px;
  margin-left: 20px;
}
.why-card-wrap .row > div {
  padding: 0 10px;
}
.why-card-1,
.why-card-2,
.why-card-3,
.why-card-4 {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 18px;
  padding: 63px 0 63px 40px;
  margin-bottom: 20px;
  overflow: hidden;
  z-index: 1;
}
.why-card-wrap .row > div > div * {
  max-width: 50%;
  z-index: 1;
}
.why-card-1 {
  background-color: #f2f2f2;
}
.why-card-1::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  background: url(../images/default/why/whyCard-1.webp) no-repeat right bottom /
    contain;
  z-index: 0;
}
.why-card-2 {
  background-color: #6e7efb;
}
.why-card-wrap .row .why-card-2 * {
  max-width: 85%;
}
.why-card-2::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../images/default/why/whyCard-2.webp) no-repeat right bottom /
    contain;
  z-index: 0;
  transform: scale(0.93);
  transform-origin: right bottom;
}
.why-card-3 {
  background-color: #6e7efb;
}
.why-card-3::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../images/default/why/whyCard-3.webp) no-repeat right bottom /
    contain;
  z-index: 0;
  transform: scale(0.9);
  transform-origin: right bottom;
}
.why-card-4 {
  color: #110065;
  background-color: #c8bdff;
}
.why-card-4::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../images/default/why/whyCard-4.webp) no-repeat right bottom /
    contain;
  z-index: 0;
  transform: scale(0.93);
  transform-origin: right bottom;
}
.border-solid-btn {
  height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 39px;
  border-radius: 23px;
  border: 1px solid #132420;
  font-size: 16px;
  color: #132420;
  cursor: pointer;
}
.border-solid-btn:hover {
  border-color: #0067ed;
  color: #0067ed;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .why-card-wrap .row .why-card-1 * {
    max-width: 60%;
  }
  .why-card-1::before {
    width: 68%;
  }
}
@media screen and (max-width: 768px) {
  .why-title-img {
    max-height: 30px;
    margin-left: 10px;
  }
  .whyWrap .f-16 {
    font-size: 14px;
  }
  .whyWrap .mt10 {
    margin-top: 5px;
  }
  .why-num-wrap .row > div {
    text-align: center;
  }
  .why-card-1,
  .why-card-2,
  .why-card-3,
  .why-card-4 {
    min-height: 140px;
    padding: 30px 0 30px 30px;
    margin-bottom: 15px;
  }
}
/*AI智能客服*/
.AIchatbot .row {
  position: relative;
  background: linear-gradient(-45deg, #d5ebff, #f2faff);
}
.AIchatbot .row::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 100%;
  background: url(../images/default/default-8.webp) no-repeat right bottom /
    contain;
  z-index: 0;
  transform: scale(1);
  transform-origin: right bottom;
  transition: transform 0.5s ease;
}
.AIchatbot:has(.AIchatbot-img:hover) .row:before {
  transform: scale(1.02);
}
.AIchatbot-img img {
  max-width: 500px;
  margin-top: 70px;
  transition: transform 0.5s ease;
  position: relative;
}
.AIchatbot-img:hover img {
  transform: translateY(8px);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .AIchatbot-img img {
    margin-top: 50%;
    width: 90%;
    transform: scale(90%);
    transform-origin: right bottom;
  }
  .AIchatbot-img:hover img {
    transform: scale(90%) translateY(8px);
  }
}
@media screen and (max-width: 992px) {
  .AIchatbot-img img {
    display: none;
  }
  /* .AIchatbot .row::before {
    transform: scale(0.85);
  } */
}
/*全渠道接入*/
.allChannel .row {
  position: relative;
  background: linear-gradient(-45deg, #d8f4f3, #f3fdfc);
}
.allChannel .row::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  background: url(../images/default/default-5.webp) no-repeat right bottom /
    contain;
  z-index: 0;
  transform: scale(0.93);
  transform-origin: right bottom;
  transition: transform 0.5s ease;
}
.allChannel:has(.allChannel-img:hover) .row::before {
  transform: scale(0.95);
}
.allChannel-img img {
  margin-left: 75px;
  max-height: 415px;
  transition: margin 0.5s ease;
}
.allChannel-img:hover img {
  margin-left: 85px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .allChannel .row::before {
    transform: scale(0.75);
  }
  .allChannel:has(.allChannel-img:hover) .row::before {
    transform: scale(0.76);
  }
  .allChannel-img img {
    margin-left: 35px;
    max-height: 350px;
  }
  .allChannel-img:hover img {
    margin-left: 45px;
  }
}
@media screen and (max-width: 992px) {
  .allChannel .row::before {
    width: 50%;
    transform: scale(0.85);
  }
  .allChannel-img img {
    display: none;
  }
}
/*营销获客*/
.marketing .row {
  background: linear-gradient(-45deg, #feecd5, #fffbf6);
}
.marketing-img {
  position: relative;
}
.marketing-img::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/default/default-3.webp) no-repeat left bottom /
    contain;
  z-index: 0;
  transform: scale(1);
  transform-origin: left bottom;
  transition: transform 0.5s ease;
}
.marketing-img:hover::before {
  transform: scale(1.05);
}
.marketing-img img {
  width: 40%;
  position: absolute;
  transition: all 0.5s ease;
  z-index: 1;
  right: 7%;
  bottom: 4%;
}
.marketing-img:hover img {
  width: 42%;
  transform: translate(-10px, -10px);
  bottom: 6%;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .marketing-img {
    height: 400px;
  }
  .marketing-img::before {
    background-position: right bottom;
    transform-origin: right bottom;
  }
  .marketing-img img {
    width: 25%;
  }
  .marketing-img:hover img {
    width: 26%;
  }
}
/*国际化*/
.international .row {
  position: relative;
  background: linear-gradient(-45deg, #dae7ff, #f3f2ff);
}

.international .row::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%; /* 最大尺寸 */
  height: 100%;
  background: url(../images/default/default-1.webp) no-repeat right bottom /
    contain;
  transform: scale(0.88); /* 初始 55% / 60% ≈ 0.917 */
  transform-origin: right bottom;
  transition: transform 0.5s ease;
}

.international:has(.international-img:hover) .row::before {
  transform: scale(0.9);
}
.international-img {
  transition: transform 0.5s ease;
}
.international-img:hover {
  transform: translateY(10px);
}
@media screen and (min-width: 992px) {
  .international-img img {
    margin-top: 30%;
  }
}
@media screen and (min-width: 1200px) {
  .international-img img {
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .international-img img {
    width: 60%;
    margin-top: 0px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .marketing-img img,
  .international-img img {
    display: none;
  }
}
.forDetails {
  height: 46px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  padding: 0 26px;
  background: linear-gradient(-90deg, #6b66fd, #0067ed);
  border-radius: 23px;
}
/*安全架构*/
.security-architecture {
  margin: auto;
  width: calc(100vw - 40px);
  max-width: 1800px;
  background: #f4f7ff url(../images/default/security/security-bg.webp) no-repeat
    center top / 100% auto;
  border-radius: 26px;
  padding: 80px 100px;
}
.security-architecture em,
.security-architecture i {
  font-style: normal;
}
.security-card-one,
.security-card-two {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 0;
  color: #005d8c;
  background: linear-gradient(0deg, #c9edfe, #7bccf2);
  border-radius: 16px;
}
.security-card-two {
  background: #fff;
  color: initial;
}
.security-card-two img {
  max-width: 80%;
  max-height: 136px;
}
.security-card-other + .security-card-other {
  margin-top: 16px;
}
.security-card-other {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
}
.security-card-other img {
  max-width: 106px;
  max-height: 106px;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .security-card-other img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .security-architecture {
    padding: 40px 15px;
  }
  .security-card-one img {
    max-width: 40%;
  }
}
/*deploy-method 灵活部署*/
.deploy-method em,
.deploy-method i {
  font-style: normal;
}
.deploy-method-card {
  width: 100%;
  gap: 24px;
  display: flex;
}
.deploy-method-card li {
  flex: 1;
  min-height: 260px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background-color: #f6f6fb;
  border-radius: 16px;
}
.deploy-method-card img {
  max-width: 48px;
  max-height: 48px;
}
/* 小屏幕（平板，大于等于 768px） */
@media screen and (max-width: 768px) {
  .deploy-method-card {
    margin: 0 15px;
    gap: 12px;
  }
  .deploy-method-card li {
    min-height: 130px;
    /* margin: 0 24px; */
    padding: 20px;
  }
  .small-space-mb16 {
    margin-bottom: 16px;
  }
}
