/* 数字员工页面 */
.de-banner {
  min-height: 560px;
  background-color: #f5f0ff;
  background-image: url("../img/ai/de-banner-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "PingFang SC", sans-serif;
}

.de-banner-inner {
  display: flex;
  align-items: center;
  min-height: 800px;
  margin: 0 auto;
}

.de-banner-label {
  margin: 0;
  line-height: 0;
}

.de-banner-label img {
  display: block;
  height: 48px;
  width: auto;
}

.de-banner-title {
  margin: 20px 0 0;
  font-size: 72px;
  font-weight: 600;
  color: #222;
  line-height: 100px;
}

.de-banner-desc {
  margin: 20px 0 0;
  font-family: "PingFang SC", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #333;
  line-height: 40px;
}

.de-banner-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 47px;
}

.de-banner-actions .RegProduct{
    display: none;
}

.de-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  height: 56px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  text-decoration: none;
}

.de-banner .de-btn-primary.goToExpAiProduct::after,
.banner-de-ai .de-btn-primary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../img/ai/de-btn-arrow-white.png") no-repeat center / contain;
}

.de-banner .de-btn-secondary.video-btn::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("../img/ai/de-btn-arrow-purple.png") no-repeat center /
    contain;
}

.de-btn-primary {
  background-image: linear-gradient(
    106deg,
    #ff44e3 0%,
    #9844ff 32%,
    #6a49fe 66%,
    #2e9dff 100%
  );
  color: #ffffff;
}

.de-btn-primary:hover,
.de-btn-primary:focus {
  color: #ffffff;
  opacity: 0.92;
  transform: translateY(-1px);
}

.de-btn-secondary {
  background: #ffffff;
  color: #8546ff;
}

.de-btn-secondary:hover,
.de-btn-secondary:focus {
  opacity: 0.92;
  transform: translateY(-1px);
}

.de-banner-right {
  flex: 1;
}

/* 通用内容模块 */
.de-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 100px 0 0;
}

.de-section-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}

.de-section-title {
  margin: 0;
  font-family: "PingFang SC", sans-serif;
  font-size: 46px;
  font-weight: 600;
  color: #333333;
  line-height: 65px;
}

.de-gradient-text {
  background: linear-gradient(90deg, #ec25ff 0%, #273dff 50%, #18cddf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.de-section-subtitle {
  margin: 30px auto 0;
  font-family: "PingFang SC", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #5d6776;
  line-height: 28px;
}

.de-section-img-wrap {
  margin: 48px auto 0;
}

.de-section-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* 对比模块 */
.de-compare {
  background-image: url("../img/ai/de-compare-bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

.de-agents {
  margin-bottom: 100px;
}

.de-compare .de-section-img-wrap img {
  filter: drop-shadow(0 0 30px rgba(231, 231, 255, 1));
}

.de-compare-footer {
  margin: 30px 0 0;
  padding: 20px 0;
  font-family: "PingFang SC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5d6776;
  line-height: 28px;
  background: #fefcff;
  filter: drop-shadow(0 0 30px rgba(231, 231, 255, 1));
  border-radius: 20px;
  margin-bottom: 100px;
}

/* Agent 卡片模块 */
.de-agents-cards {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.de-agent-card {
  flex: 1;
  border-radius: 20px;
  padding: 30px;
  background-repeat: no-repeat;
  background-position: right 8px bottom 18px;
  background-size: 200px 200px;
}

.de-agent-card--purple {
  background-color: #fbf6fe;
  background-image:
    url("../img/ai/de-agent-icon-1.png"),
    linear-gradient(180deg, #fdfbfe 0%, #f9f1fe 100%);
  background-repeat: no-repeat, no-repeat;
  background-position:
    right 8px bottom 18px,
    0 0;
  background-size:
    200px 200px,
    100% 100%;
    border: 1px solid rgba(240,240,240,1);
}

.de-agent-card--blue {
  background-color: #f4f6fe;
  background-image:
    url("../img/ai/de-agent-icon-2.png"),
    linear-gradient(180deg, #f9fafe 0%, #f1f4fe 100%);
  background-repeat: no-repeat, no-repeat;
  background-position:
    right 8px bottom 18px,
    0 0;
  background-size:
    200px 200px,
    100% 100%;
    border: 1px solid rgba(240,240,240,1);
}

.de-agent-card--green {
  background-color: #f5fafa;
  background-image:
    url("../img/ai/de-agent-icon-3.png"),
    linear-gradient(126deg, #f8fafa 0%, #edfafa 100%);
  background-repeat: no-repeat, no-repeat;
  background-position:
    right 8px bottom 18px,
    0 0;
  background-size:
    200px 200px,
    100% 100%;
    border: 1px solid rgba(240,240,240,1);
}

.de-agent-card-title {
  font-family: "PingFang SC", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  text-align: left;
}

.de-agent-card--purple .de-agent-card-title {
  color: #8f19ee;
}

.de-agent-card--blue .de-agent-card-title {
  color: #0269fe;
}

.de-agent-card--green .de-agent-card-title {
  color: #039965;
}

.de-agent-card-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  border-bottom: 1px solid;
  padding-bottom: 23px;
}
.de-agent-card--purple .de-agent-card-list {
  border-color: #ede0fb;
}
.de-agent-card--blue .de-agent-card-list {
  border-color: #dee6fa;
}

.de-agent-card--green .de-agent-card-list {
  border-color: #ddeeed;
}
.de-agent-card-list li {
  position: relative;
  padding-left: 20px;
  font-family: "PingFang SC", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #444444;
  line-height: 30px;
}

.de-agent-card-list li + li {
  /* margin-top: 4px; */
}

.de-agent-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.de-agent-card--purple .de-agent-card-list li::before {
  background-image: url("../img/ai/de-agent-list-purple.png");
}

.de-agent-card--blue .de-agent-card-list li::before {
  background-image: url("../img/ai/de-agent-list-blue.png");
}

.de-agent-card--green .de-agent-card-list li::before {
  background-image: url("../img/ai/de-agent-list-green.png");
}

.de-agent-card-body {
  display: flex;
  align-items: flex-end;
  margin-top: 24px;
  padding-right: 178px;
}

.de-agent-card-stats {
  flex: 1;
  min-width: 0;
}

.de-agent-stat + .de-agent-stat {
  margin-top: 16px;
}

.de-stat-label {
  margin: 0;
  font-family: "PingFang SC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #444444;
  line-height: 30px;
}

.de-stat-value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 32px;
}

.de-stat-arrow {
  display: block;
  width: 18px;
  height: auto;
  flex-shrink: 0;
}

.de-stat-arrow--up {
  transform: rotate(180deg);
}

.de-stat-value--purple {
  color: #8f19ee;
}

.de-stat-value--blue {
  color: #0269fe;
}

.de-stat-value--green {
  color: #039965;
}

/* 业务解决方案模块 */
.de-solution {
  background-color: #f6f5ff;
  background-image: url("../img/ai/de-solution-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.de-solution .de-btn {
  height: 42px;
  min-width: 140px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 60px;
}

.de-solution-card {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(100, 80, 200, 0.08);
  overflow: hidden;
  box-shadow: 0px 0px 40px 0px rgba(231, 231, 255, 1);
}

.de-solution-card + .de-solution-card {
  margin-top: 60px;
}

.de-solution-card-inner {
  display: flex;
  align-items: stretch;
}

.de-solution-card-inner--reverse {
  flex-direction: row-reverse;
}

.de-solution-card-inner--reverse .de-solution-left {
  padding: 48px 48px 48px 40px;
}

.de-solution-card-inner--reverse .de-solution-right {
  padding: 50px;
}

.de-solution-left {
  flex: 0 0 710px;
  padding: 60px 60px 60px 50px;
  text-align: left;
}

.de-solution-title {
  margin: 0;
  font-family: "PingFang SC", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #333333;
  line-height: 50px;
  text-align: left;
}

.de-solution-desc {
  margin: 12px 0 0;
  font-family: "PingFang SC", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6e6e70;
  line-height: 30px;
}

.de-solution-subtitle {
  margin: 20px 0 0;
  font-family: "PingFang SC", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 22px;
}

.de-solution-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.de-solution-list li {
  position: relative;
  padding-left: 26px;
  font-family: "PingFang SC", sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}

.de-solution-list li + li {
  margin-top: 8px;
}

.de-solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  background-image: url("../img/ai/de-agent-list-purple.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.de-solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.de-solution-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px 6px 6px 0px;
  font-family: "PingFang SC", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #bf6bff;
  line-height: 20px;
  white-space: nowrap;
  border: 1px solid rgba(191, 107, 255, 0.2);
  box-shadow: 0px 0px 6px 0px rgba(214, 182, 241, 0.2);
  background: #fbf5ff;
}

.de-solution-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.de-solution-right img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(230, 230, 255, 1));
}

/* 预告模块 */
.de-preview {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 100px;
}

.de-preview-cards {
  display: flex;
  gap: 30px;
  margin-top: 48px;
}

.de-preview-card {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(120, 90, 220, 0.1);
  overflow: hidden;
}

.de-preview-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 196px 32px 28px;
  min-height: 180px;
  border: 1px solid rgba(234, 235, 254, 1);
  background-repeat: no-repeat;
  background-position: right 20px top 28px;
  background-size: 160px 160px;
  box-shadow: 0px 0px 40px 0px rgba(231, 231, 255, 1);
  border-radius: 20px;
}

.de-preview-card:first-child .de-preview-card-inner {
  background-image: url("../img/ai/de-preview-icon-1.png");
}

.de-preview-card:last-child .de-preview-card-inner {
  background-image: url("../img/ai/de-preview-icon-2.png");
}

.de-preview-left {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.de-preview-card-title {
  font-size: 32px;
  color: #333333;
  text-align: left;
  line-height: 45px;
  font-weight: 600;
}

.de-preview-card-desc {
  font-size: 16px;
  color: #333333;
  line-height: 26px;
  margin-top: 17px;
  width: 400px;
}

.container.digital {
  width: 1440px;
  max-width: 100%;
  box-sizing: border-box;
}

/* AI 预约演示弹窗（与 ai.jsp / style-ai-introduce.css 保持一致） */
.ai-dialog .ui-dialog-content {
  padding: 0;
}

@media screen and (max-width: 993px) {
  /* 覆盖 style-base.css body { min-width: 1480px }，消除移动端横向滚动 */
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .container.digital,
  .container.sm {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* Banner */
  .de-banner {
    min-height: auto;
    background-position: left;
    background-size: cover;

  }

  .de-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 88px 0 40px;
  }

  .de-banner-left {
    width: 100%;
  }

  .de-banner-label img {
    height: 28px;
  }

  .de-banner-title {
    font-size: 32px;
    line-height: 44px;
    margin-top: 8px;
  }

  .de-banner-desc {
      font-size: 14px;
      line-height: 24px;
      margin-top: 12px;
  }

  .de-banner-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  .de-btn {
    min-width: 140px;
    height: 44px;
    font-size: 15px;
    line-height: 44px;
    border-radius: 8px;
    gap: 6px;
  }

  .de-banner .de-btn-primary.goToExpAiProduct::after,
  .banner-de-ai .de-btn-primary::after,
  .de-banner .de-btn-secondary.video-btn::after {
    width: 16px;
    height: 16px;
  }

  .de-banner-right {
    display: none;
  }

  /* 通用模块 */
  .de-section {
    padding: 48px 0 0;
  }

  .de-section-title {
    font-size: 24px;
    line-height: 34px;
  }

  .de-section-subtitle {
    margin-top: 12px;
    font-size: 14px;
    line-height: 22px;
  }

  .de-section-img-wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    overflow: hidden;
  }

  .de-section-img-wrap img {
    max-width: 100%;
    height: auto;
  }

  /* 对比模块 */
  .de-compare {
    margin-bottom: 0;
    background-size: 100% auto;
  }

  .de-compare-footer {
    margin-top: 24px;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 40px;
  }

  /* Agent 卡片 */
  .de-agents {
    margin-bottom: 60px;
  }

  .de-agents-cards {
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .de-agent-card {
    padding: 24px 20px;
    border-radius: 16px;
    background-size: 200px 200px;
    background-position: right 8px bottom 18px;
  }

  .de-agent-card--purple {
    background-size:
      200px 200px,
      100% 100%;
    background-position:
      right 8px bottom 18px,
      0 0;
  }

  .de-agent-card-body {
    margin-top: 16px;
    padding-right: 188px;
  }

  .de-agent-card-title {
    font-size: 22px;
    line-height: 32px;
  }

  .de-agent-card-list {
    padding-bottom: 16px;
  }

  .de-agent-card-list li {
    font-size: 14px;
    line-height: 24px;
    padding-left: 20px;
  }

  .de-agent-card-list li::before {
    top: 6px;
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }

  .de-agent-stat + .de-agent-stat {
    margin-top: 12px;
  }

  .de-stat-label {
    font-size: 13px;
    line-height: 22px;
  }

  .de-stat-value {
    margin-top: 8px;
    font-size: 26px;
    line-height: 28px;
    gap: 4px;
  }

  .de-stat-arrow {
    width: 14px;
  }

  /* 解决方案 */
  .de-solution {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .de-solution-card {
    margin-top: 28px;
  }

  .de-solution-card + .de-solution-card {
    margin-top: 24px;
  }

  .de-solution-card-inner,
  .de-solution-card-inner--reverse {
    flex-direction: column;
  }

  .de-solution-left,
  .de-solution-card-inner--reverse .de-solution-left {
    flex: none;
    width: 100%;
    padding: 28px 20px 20px;
  }

  .de-solution-title {
    font-size: 24px;
    line-height: 34px;
  }

  .de-solution-desc {
    font-size: 13px;
    line-height: 22px;
  }

  .de-solution-subtitle {
    margin-top: 16px;
    font-size: 15px;
    line-height: 22px;
  }

  .de-solution-list li {
    font-size: 13px;
    line-height: 20px;
    padding-left: 22px;
  }

  .de-solution-tag {
    font-size: 12px;
    line-height: 18px;
    white-space: normal;
  }

  .de-solution .de-btn {
    height: 44px;
    min-width: 140px;
    font-size: 15px;
    margin-top: 28px;
  }

  .de-solution-right,
  .de-solution-card-inner--reverse .de-solution-right {
    padding: 0 20px 24px;
  }

  .de-solution-right img {
    max-width: 100%;
  }

  /* 预告模块 */
  .de-preview {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .de-preview-cards {
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .de-preview-card-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 116px 24px 20px;
    min-height: auto;
    gap: 20px;
    background-size: 96px 96px;
    background-position: right 20px top 28px;
  }

  .de-preview-card-title {
    font-size: 22px;
    line-height: 32px;
  }

  .de-preview-card-desc {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    margin-top: 12px;
  }

}

.digitalEmployee .footer .footer-reg.de-cta .de-btn-primary.goToExpAiProduct{
    display: flex;
}
.digitalEmployee .footer .footer-reg.de-cta .de-btn-primary.RegProduct{
    display: none;
}
