:where([class^="ri-"])::before {
  content: "\f3c2";
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.gradient-bg {
  background: linear-gradient(135deg, #3470ff, #5fa8ff);
}

.hero-bg {
  background-image: url('../../../skin/images/bannerbg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 600px;
}

.hero-bg .right {
  width: 588px;
  height: 460px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.hero-bg .right .old-img {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 0;
  height: 460px;
  overflow: hidden;
  animation: mymove 5s infinite linear;
}
.hero-bg .right .old-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 588px;
  height: 460px;
  object-fit: cover;
  /* 防止被拉伸 */
}
.hero-bg .right .new-img {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
}
.hero-bg .right .new-img img {
  width: 588px;
  height: 460px;
  object-fit: cover;
}
.hero-bg .right .huagan {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  height: 460px;
  margin-left: -20px;
  animation: mymove-gan 5s infinite linear;
}
@keyframes mymove {
  0% { width: 0; }
  50% { width: 100%; }
  100% { width: 0; }
}
@keyframes mymove-gan {
  0% { left: 0; }
  50% { left: 100%; }
  100% { left: 0; }
}
@media (max-width: 1024px) {
  .hero-bg .right { display: none; }
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, #3470ff, #5fa8ff);
}

input:focus {
  outline: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.feature-card {
  box-shadow: 0 5px 10px 0 hsla(0, 0%, 53%, .1);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 125, 0, 0.1);
}

@keyframes fade-in-out {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  90% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.animate-fade-in-out {
  animation: fade-in-out 3s ease-in-out;
}

.floating-btn {
  position: relative;
}

.tooltip {
  z-index: 9999;
}

.floating-btn .tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.floating-btn .wechat-tooltip {
  width: 200px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.floating-btn .wechat-tooltip img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.process-flow-container {
  max-width: 80rem;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.floating-btn .customer-service-btn {
  animation: breathe 2s ease-in-out infinite;
}

.floating-btn .customer-service-btn:hover {
  animation: none;
  transform: scale(1.1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  /* 初始透明 */
  box-shadow: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: #fff;
  /* 下滑后变白 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* 业务亮点栏 SUBMAIL风格 */
.section-business-row {
  background: #fff;
  padding: 32px 0 0 0;
}

.mod-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.mod-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(52, 112, 255, 0.06);
  padding: 24px 24px 24px 24px;
  min-width: 220px;
  max-width: 320px;
  margin: 0 8px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.mod-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-right: 16px;
  flex-shrink: 0;
}

.mod-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.mod-text {
  font-size: 15px;
  color: #6c7d99;
  line-height: 1.6;
}

.mod-item:hover {
  box-shadow: 0 8px 32px 0 rgba(52, 112, 255, 0.12);
  transform: translateY(-4px) scale(1.03);
}

.line {
  width: 1px;
  background: #e1e6ed;
  margin: 0 8px;
  height: auto;
}

.right-free {
  background: linear-gradient(90deg, #3470ff 0, #5fa8ff 100%);
  border-radius: 16px;
  padding: 20px 32px;
  margin-top: 24px;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(52, 112, 255, 0.08);
  min-width: 260px;
  max-width: 480px;
}

.right-free .free-ico {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.right-free h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.right-free .fn14 {
  font-size: 15px;
  color: #fff;
}

@media (max-width: 1024px) {
  .mod-list {
    flex-direction: column;
    align-items: center;
  }

  .line {
    display: none !important;
  }

  .mod-item {
    margin-bottom: 16px;
  }

  .right-free {
    margin-top: 16px;
  }
}

@media (max-width: 640px) {

  .mod-item,
  .right-free {
    max-width: 100%;
    min-width: 0;
    padding: 16px 12px;
  }

  .mod-title {
    font-size: 17px;
  }

  .mod-text,
  .right-free .fn14 {
    font-size: 13px;
  }

  .right-free h6 {
    font-size: 17px;
  }

  .mod-item img,
  .right-free .free-ico {
    width: 36px;
    height: 36px;
  }
}

.business-highlight-bar {
  background: #fff;
  width: 100%;
  padding: 0;
}

.bhb-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 96px;
  padding: 0 24px;
}

.bhb-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 18px 0;
  background: #fff;
  text-align: left;
  position: relative;
}

.bhb-row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.bhb-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: none;  // 不要背景 */
  /* border-radius: 50%; // 可选：如需完全无圆角可去掉 */
}

.bhb-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bhb-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.bhb-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.3s, filter 0.3s;
  transform: scaleX(-1) rotate(45deg); /* 默认镜像+右上 */
  filter: none;
}
.bhb-link:hover .bhb-arrow {
  transform: scaleX(-1) rotate(0deg);  /* 悬停镜像+向右 */
  filter: brightness(0) saturate(100%) invert(36%) sepia(97%) saturate(747%) hue-rotate(191deg) brightness(102%) contrast(101%); /* 变蓝色 */
}

.bhb-desc {
  font-size: 13px;
  color: #6c7d99;
  opacity: 0.9;
  margin-left: 50px;
  min-height: 18px;
}

.bhb-divider {
  width: 1px;
  height: 40px;
  background: #eee;
  margin: 0 24px;
}

.bhb-item-blue {
  background: #3470ff;
  color: #fff;
  border-radius: 8px;
  min-width: 220px;
  max-width: 320px;
  margin-left: 24px;
  padding: 24px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  box-shadow: none;
  text-decoration: none;
  transition: background 0.2s;
}

.bhb-item-blue:hover {
  background: #2563eb;
}

.bhb-free-label {
  background: #fff;
  color: #3470ff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  padding: 2px 10px;
  margin-right: 16px;
  min-width: 44px;
  text-align: center;
  height: 24px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bhb-item-blue .bhb-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bhb-item-blue .bhb-desc {
  color: #fff;
  opacity: 0.8;
  font-size: 13px;
  margin-left: 0;
}

@media (max-width: 900px) {
  .bhb-container {
    flex-wrap: wrap;
    padding: 0 8px;
  }

  .bhb-divider {
    display: none;
  }

  .bhb-item,
  .bhb-item-blue {
    min-width: 180px;
    margin: 8px 0;
    padding: 16px 0;
    align-items: flex-start;
  }

  .bhb-item-blue {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .bhb-desc {
    margin-left: 0;
  }
}

.fixed-icon-bar {
  position: fixed;
  right: 24px;
  top: 35%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.fixed-icon-item {
  position: relative;
  width: 56px;
  min-height: 56px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(52, 112, 255, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 6px 0;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.fixed-icon-item:hover {
  box-shadow: 0 8px 24px 0 rgba(52, 112, 255, 0.18);
  transform: translateY(-2px) scale(1.04);
}

.fixed-icon-item .icon-img {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}

.icon-label {
  font-size: 13px;
  color: #222;
  text-align: center;
  margin-top: 2px;
  line-height: 1.2;
  white-space: pre-line;
}

.online-consult {
  background: linear-gradient(to bottom, #4d88ff, #1764ff);
  box-shadow: 0 5px 10px 0 rgba(35, 50, 56, 0.18);
  color: #fff;
  min-height: 120px;
  padding-top: 0;
}

.online-consult .icon-label {
  color: #fff;
  font-weight: 500;
  margin-top: 8px;
}

.badge-num {
  position: absolute;
  left: 2.2rem;
  top: 0.2rem;
  background: #ff227a;
  color: #fff;
  font-size: 12px;
  border-radius: 12px;
  padding: 2px 7px;
  z-index: 1000;
  font-weight: bold;
}

.livechat-girl {
  width: 54px;
  height: 100px;
  border-radius: 50px;
  position: relative;
  opacity: 1;
  margin-top: 6px;
  background: none;
  box-shadow: none;
  cursor: pointer;
}

.livechat-girl .girl {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  z-index: 50;
  transform: translate(11px, 18px);
}

.livechat-girl .animated-circles .circle {
  background: rgba(60, 100, 231, 0.18);
  width: 54px;
  height: 100px;
  border-radius: 50px;
  position: absolute;
  z-index: 49;
  transform: scale(1);
}

.livechat-girl .animated-circles.animated .c-1 {
  animation: 2s scaleToggleOne cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.livechat-girl .animated-circles.animated .c-2 {
  animation: 2.5s scaleToggleTwo cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.livechat-girl .animated-circles.animated .c-3 {
  animation: 3s scaleToggleThree cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes scaleToggleOne {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes scaleToggleTwo {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1);
  }

  60% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes scaleToggleThree {
  0% {
    transform: scale(1);
  }

  33% {
    transform: scale(1);
  }

  66% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* 电话卡片特殊样式 */
.phone-item .icon-label.phone-label {
  width: 220px;
  background: #fff;
  color: #222;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(52, 112, 255, 0.08);
  padding: 8px 12px;
  position: absolute;
  right: 60px;
  top: 0;
  text-align: left;
  font-size: 13px;
  display: none;
}

.phone-item:hover .icon-label.phone-label {
  display: block;
}

.phone-item .icon-img {
  margin-bottom: 0;
}

.phone-item hr {
  background: #c1c1c1;
  margin: 8px 0 6px 0;
  height: 1px;
  border: none;
}

@media (max-width: 900px) {
  .fixed-icon-bar {
    right: 8px;
    top: unset;
    bottom: 24px;
    flex-direction: row;
    gap: 10px;
  }

  .fixed-icon-item,
  .online-consult {
    width: 48px;
    min-height: 48px;
    padding: 6px 0 4px 0;
  }

  .livechat-girl {
    width: 40px;
    height: 60px;
  }

  .livechat-girl .girl {
    width: 22px;
    height: 22px;
    transform: translate(7px, 10px);
  }

  .livechat-girl .animated-circles .circle {
    width: 40px;
    height: 60px;
  }

  .phone-item .icon-label.phone-label {
    right: 52px;
    width: 160px;
    font-size: 12px;
    padding: 6px 8px;
  }
}

.success-case-matrix-content-wrap {
  display: grid;
  grid-template-columns: repeat(8, 180px);
  gap: 24px;
  justify-content: center;
  /* 让内容整体居中 */
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 24px;
  /* 不要设置max-width */
}

.success-case-matrix-content-wrap .item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 10px 0 hsla(0, 0%, 53%, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}

.success-case-matrix-content-wrap .item:hover {
  box-shadow: 0 12px 32px 0 hsla(220, 80%, 60%, .18);
  transform: scale(1.08);
  z-index: 2;
}

@media (max-width: 1600px) {
  .success-case-matrix-content-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .success-case-matrix-content-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .success-case-matrix-content-wrap .item {
    width: 45vw;
    height: 18vw;
    min-width: 120px;
    min-height: 60px;
    max-width: 180px;
    max-height: 90px;
  }
}

.before-card {
  display: flex;
  align-items: center;
  background: #f5f6fa;
  color: #b0b3bb;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 16px;
  margin-bottom: 8px;
  min-width: 260px;
  max-width: 400px;
  font-weight: 500;
}
.before-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b0b3bb;
  font-size: 20px;
  margin-right: 10px;
  font-weight: bold;
}
.after-card {
  display: flex;
  align-items: center;
  background: #fff6ed;
  color: #ff7d1a;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 16px;
  margin-bottom: 8px;
  min-width: 260px;
  max-width: 400px;
  font-weight: 500;
}
.after-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff7d1a;
  font-size: 20px;
  margin-right: 10px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .before-card, .after-card {
    min-width: 0;
    max-width: 100%;
    font-size: 14px;
    padding: 8px 12px;
  }
}

@keyframes swayIcon {
  0% { width: 0; }
  50% { width: 100%; }
  100% { width: 0; }
}

.a2-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 或者 */
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.typed-content {
  font-size: 22px;
  font-weight: 500;
  font-family: inherit;
  display: flex;
  align-items: center;
}
.typed-cursor {
  color: #014DFF;
  font-weight: bold;
  animation: blink 1s infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.gradient-text {
  background: linear-gradient(90deg , #007AF7 0%,#014DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* 增加hover效果和箭头动画 */
.bhb-link .bhb-title {
  transition: color 0.3s;
}
.bhb-link:hover .bhb-title {
  color: #3470ff;
}
.bhb-arrow {
  display: inline-block;
  transition: all 0.3s;
}
.bhb-link:hover .bhb-arrow {
  /* 悬停时内容变为→ */
  font-family: inherit;
}

.bhb-arrow-white {
  filter: brightness(0) invert(1);
}
.bhb-item-blue .bhb-arrow {
  filter: brightness(0) invert(1); /* 保证白色 */
  transform: scaleX(-1) rotate(45deg); /* 默认镜像+右上 */
  transition: transform 0.3s, filter 0.3s;
}
.bhb-item-blue:hover .bhb-arrow {
  filter: brightness(0) invert(1); /* 保证白色 */
  transform: scaleX(-1) rotate(0deg); /* 悬停镜像+向右 */
}

.callout-list .callout-item {
  margin-bottom: 30px;
}
.callout-list .callout-item:last-child {
  margin-bottom: 0;
}