body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
  padding: 0 4px;
}

.container {
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.fade-up {
  opacity: 0;
  transform: translate3d(0, 20%, 0);
  transition: opacity 1s, transform 1s;
  transition-delay: 0.2s;
}

.fade-up.fade-up-scale {
  scale: 0.8;
  transition: opacity 1s, transform 1s, scale 1s;
}

.fade-up.fade-up-0-2 {
  transition-delay: 0.2s;
}

.fade-up.fade-up-0-4 {
  transition-delay: 0.4s;
}

.fade-up.fade-up-0-6 {
  transition-delay: 0.6s;
}

.fade-up.fade-up-0-8 {
  transition-delay: 0.8s;
}

.fade-up.fade-up-1-0 {
  transition-delay: 1s;
}

.fade-up.fade-up-1-2 {
  transition-delay: 1.2s;
}

.fade-up.visible {
  scale: 1;
  opacity: 1;
  transform: translateZ(0);
}

.gradient {
  background: linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button-color {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  height: 40px;
  cursor: pointer;
}

.button-color a {
  padding: 0 20px;
  height: 100%;
  display: flex !important;
  align-items: center;
  color: #fff;
  text-decoration: initial;
}

.button-black:hover,
.button-color:hover {
  transition: scale 0.3s ease 0s;
  scale: 1.075;
}

.homepage {
  background: url("../images/bg.webp") no-repeat;
  background-size: 100%;
}

.page-desktop {
  background: url("../images/desktop-bg.png") no-repeat;
  background-size: 100%;
}

.header {
  position: fixed;
  width: 100%;
  height: 72px;
  top: 0;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 2;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.header .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-left .logo {
  width: 150px;
}

.header-menu {
  padding: 12px;
  display: none;
}

.header-nav {
  margin-left: 48px;
  display: flex;
  align-items: center;
  color: #333;
  flex: 1;
}

.header-nav .nav-item {
  padding: 0 24px;
  cursor: pointer;
}

.header-nav .nav-item a {
  color: #333;
}

.header-nav .nav-item:hover a {
  background: linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav .nav-item.actived a {
  position: relative;
  background: linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav .nav-item.actived a::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%);
  width: 20px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
}

.header-nav .join-wx {
  position: relative;
}

.header-nav .join-wx .qrcode {
  display: flex;
  align-items: center;
  position: absolute;
  top: 32px;
  left: -64px;
  gap: 12px;
  flex-direction: column;
  padding: 16px;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(to right, #fff, #fff),
    linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
  box-shadow: 0 0 4px #f3f4f7;
  color: #333 !important;
  font-size: 13px;
  font-weight: 500;
  -webkit-text-fill-color: initial;
}

.header-nav .join-wx .qrcode.hidden {
  display: none;
}

.header-nav .join-wx .qrcode img {
  display: block;
  width: 180px;
}

.scroll-down {
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(189, 207, 237, 0.2);
  backdrop-filter: blur(50px);
}

.section-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  width: 100%;
}

.section-main .content {
  position: relative;
  padding: 0 24px;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-main .content .title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-main .content .desc {
  color: #706699;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}

.section-main .content .desc.min {
  font-size: 17px;
}

.section-main .content .max-desc {
  margin-top: 16px;
}

.section-main .content .min-desc {
  display: none;
}

.section-main .button-color {
  height: 48px;
  border-radius: 48px;
  margin-top: 48px;
}

.section-main .button-color a {
  font-size: 17px;
  gap: 0 6px;
}

.section-main .header-img {
  border: 2px solid #fff;
  border-radius: 200px;
}

.section-main .header-1 {
  position: absolute;
  top: 44px;
  right: -350px;
  width: 120px;
}

.section-main .header-2 {
  position: absolute;
  top: 135px;
  right: -240px;
  width: 160px;
}

.section-main .header-3 {
  position: absolute;
  top: 300px;
  right: -360px;
  width: 100px;
}

.section-main .header-4 {
  position: absolute;
  top: 140px;
  left: -220px;
  width: 140px;
}

.section-main .header-5 {
  position: absolute;
  top: 280px;
  left: -380px;
  width: 124px;
}

.section-main .header-6 {
  position: absolute;
  top: 48px;
  left: -440px;
  width: 168px;
}

.section-main .header-7 {
  position: absolute;
  top: 182px;
  right: -450px;
  width: 100px;
}

.icon-star {
  width: 30px;
}

.icon-window {
  width: 22px;
  margin-right: 2px;
}

.icon-arrow {
  width: 30px;
}

.fragement-title {
  margin-top: 40px;
  width: 100%;
  text-align: center;
  margin-bottom: 72px;
}

.fragement-title .title {
  display: inline-flex;
  gap: 0 8px;
  align-items: center;
  font-size: 32px;
  font-weight: 600;
}

.fragement-title .desc {
  color: #a39eb8;
  font-size: 17px;
  font-weight: normal;
  margin-top: 8px;
}

.fragement-title .icon-star-light {
  width: 40px;
  margin-top: -1px;
}

.sub-title {
  width: 100%;
  text-align: center;
  padding: 0 28px;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #333;
}

.section-two {
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 60px;
}

.row-demo {
  padding: 0 66px;
  display: flex;
  align-items: center;
  gap: 0 8%;
  margin-bottom: 160px;
}

.row-demo .demo {
  width: 51%;
  min-width: 51%;
}

.row-demo .demo img {
  width: 100%;
}

.row-demo .detail .title {
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

.row-demo .detail .desc {
  color: #777;
  font-size: 16px;
  margin-top: 24px;
  line-height: 1.7;
}

.row-demo .detail .button-color {
  margin-top: 44px;
  height: 48px;
  border-radius: 48px;
}

.avatar-create .create-top {
  display: flex;
  padding: 32px;
  border-radius: 32px;
  background: #fff;
  gap: 48px;
  box-shadow: -8px 0 60px 0 #f3f4f7, 16px 16px 60px 0 #f3f4f7;
}

.swiper {
  display: none !important;
}

.avatar-create .create-top .left {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.avatar-create .create-top .button-color {
  margin-top: auto;
  margin-bottom: 24px;
  height: 48px;
  border-radius: 48px;
}

.avatar-create .create-top .title {
  font-size: 26px;
  font-weight: 600;
}

.avatar-create .create-top .desc {
  font-size: 16.5px;
  line-height: 30px;
  color: #777;
  margin-top: 16px;
  padding-bottom: 20px;
}

.avatar-create .create-top .right {
  width: 46%;
  min-width: 46%;
}

.avatar-create .create-top .right img {
  width: 100%;
}

.avatar-create .create-bottom {
  display: flex;
  margin-top: 32px;
  gap: 0 32px;
}

.avatar-create .card {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 0;
  padding: 32px;
  border-radius: 32px;
  background: #fff;
  box-shadow: -8px 0 60px 0 #f3f4f7, 16px 16px 60px 0 #f3f4f7;
}

.avatar-create .card-top {
  width: 100%;
}

.avatar-create .card-top img {
  width: 100%;
}

.avatar-create .card-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
  flex: 1;
}

.avatar-create .card-bottom .title {
  font-size: 26px;
  font-weight: 600;
}

.avatar-create .card-bottom .desc {
  font-size: 16.5px;
  line-height: 30px;
  color: #777;
  margin-top: 16px;
  padding-bottom: 40px;
}

.avatar-create .card-bottom .button-color {
  margin-top: auto;
  height: 48px;
  border-radius: 48px;
}

.section-three {
  padding: 0 100px;
  margin-top: 120px;
}

.video-list {
  display: flex;
  align-items: center;
  gap: 0 28px;
  padding-bottom: 28px;
  padding-top: 6px;
}

.video-card {
  position: relative;
  flex: 1;
  width: 0;
  cursor: pointer;
  overflow: hidden;
}

.video-card .video {
  position: relative;
  width: 100%;
  padding-top: 133.33%;
  border-radius: 24px;
  overflow: hidden;
  box-sizing: border-box;
}

.video-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-card .title {
  position: absolute;
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  top: 0;
  left: 0;
  font-weight: 500;
  font-size: 18px;
}

.video-card .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #777;
  padding: 20px 24px;
  line-height: 24px;
  text-align: justify;
  font-size: 14.5px;
}

.video-card .bg {
  width: 500px;
  height: 260px;
  background: #fbfcff;
  filter: blur(60px);
  position: absolute;
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

.video-card .border-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1.5px solid #c1b6f8;
  z-index: 3;
  border-radius: 24px;
}

.section-four {
  padding: 0 40px;
  margin-top: 120px;
}

.section-four .solution-main {
  padding: 60px 100px;
  border-radius: 40px 40px 0 0;
  background: linear-gradient(
    180deg,
    #eef0ff -11.35%,
    rgba(238, 240, 255, 0) 96%
  );
}

.solution-main .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: center;
}

.solution-main .tabs-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 140px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
}

.solution-main .tabs-item.actived {
  color: #fff !important;
  background: linear-gradient(
    94deg,
    #a143ff -15.57%,
    #2634ff 110.38%
  ) !important;
}

.solution-main .tabs-item:hover {
  color: #fff;
  background: linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
}

.solution-list {
  display: flex;
  align-items: center;
  gap: 0 40px;
  margin-top: 48px;
}

.solution-list .left {
  width: 440px;
}

.solution-list .left .title {
  font-size: 28px;
  font-weight: 500;
}

.solution-list .left .desc {
  font-size: 16px;
  color: #777;
  margin-top: 24px;
  line-height: 1.7;
}

.solution-list .left .button-color {
  height: 48px;
  border-radius: 48px;
  margin-top: 48px;
}

.solution-list .right {
  flex: 1;
  width: 0;
}

.solution-list .right .list-swiper {
  width: 100%;
}

.solution-list .right .video {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  border-radius: 24px;
  background-color: #eff1fd;
}

.solution-list .right video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.section-five {
  margin-top: 100px;
}

.section-five .time {
  padding: 0 24px 12px 24px;
  color: #a39eb8;
  font-size: 20px;
  text-align: center;
  width: 100%;
}

.section-user {
  text-align: center;
}

.section-user img {
  width: 72%;
}

.section-desktop-upgrade img {
  width: 100%;
}

.section-desktop-out img {
  margin-top: -40px;
  width: 90%;
}

.section-desktop-wrapper {
  text-align: center;
}

.section-desktop-wrapper .button-color {
  margin-top: 60px;
  height: 48px;
  border-radius: 48px;
}

.section-six {
  margin-top: 120px;
}

.comment-box {
  width: 100%;
  height: 1200px;
  overflow: hidden;
  position: relative;
  background: url("../images/comment-bg.svg") center -100px no-repeat;
  background-size: 120% 1400px;
}

@media only screen and (max-width: 1400px) {
  .comment-box {
    background-size: 120% 1400px;
  }
}

@media only screen and (min-width: 1401px) {
  .comment-box {
    background-size: 1800px 1400px;
  }
}

.comment-box .container {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0 24px;
  padding: 0 60px;
  height: 100%;
  isolation: isolate;
}

.comment-box .container .list {
  flex: 1;
  width: 0;
  height: 100%;
  position: relative;
  --content-height: 329px;
  --visible-count: 10;
  --content-count: 10;
  --duration: 100s;
  position: relative;
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.comment-box .container .list.list-two {
  flex: 1;
  width: 0;
  height: 100%;
  position: relative;
  --duration: 120s;
}

.comment-box .container .list.list-three {
  flex: 1;
  width: 0;
  height: 100%;
  position: relative;
  --duration: 140s;
}

.comment-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  border-radius: 24px;
  border: 2px solid #fff;
  background: linear-gradient(122deg, #fff -6%, rgba(255, 255, 255, 0) 113.02%);
  backdrop-filter: blur(2px);
  padding: 32px;
  margin-bottom: 24px;
  height: var(--content-height);
  transform: translate3d(
    0,
    calc(var(--content-height) * var(--visible-count)),
    0
  );
  animation: scrollTop var(--duration) linear infinite;
  animation-delay: calc(
    var(--duration) / var(--visible-count) *
      (var(--visible-count) - var(--count)) * -1
  );
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  contain: strict;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comment-card.visible {
  opacity: 1;
}

.comment-card .icon-top {
  position: absolute;
  top: 28px;
  left: 24px;
  width: 36px;
  z-index: -1;
  transform: rotate(180deg);
}

.comment-card .icon-bottom {
  position: absolute;
  bottom: 110px;
  right: 24px;
  width: 36px;
  z-index: -1;
}

.comment-card:hover {
  background: linear-gradient(
    175deg,
    #e204ff -40.36%,
    #5748ff 29.28%,
    #33d3ff 107.63%
  );
  color: #fff !important;
}

.comment-card:hover .icon-top,
.comment-card:hover .icon-bottom {
  opacity: 0.2;
}

.comment-card:hover .fs,
.comment-card:hover .desc {
  color: #fff !important;
}

.list-two .comment-card {
  transform: translateY(calc(var(--content-height) * -1));
  animation-name: scrollBottom;
}

@keyframes scrollBottom {
  0% {
    transform: translate3d(0, calc(var(--content-height) * -1), 0);
  }
  100% {
    transform: translate3d(
      0,
      calc(var(--content-height) * var(--visible-count)),
      0
    );
  }
}

@keyframes scrollTop {
  0% {
    transform: translate3d(
      0,
      calc(var(--content-height) * var(--visible-count)),
      0
    );
  }
  100% {
    transform: translate3d(0, -100%, 0);
  }
}

.comment-card .title {
  font-size: 20px;
  font-weight: 500;
}

.comment-card .star {
  margin-top: 24px;
}

.comment-card .desc {
  font-size: 14px;
  margin-top: 16px;
  color: #001633;
  min-height: 60px;
}

.comment-card .star img {
  width: 15px;
}

.comment-card .user {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 0 16px;
}

.comment-card .user-header {
  width: 66px;
  border-radius: 66px;
  overflow: hidden;
  border: 2px solid #fff;
}

.comment-card .user-header img {
  width: 100%;
}

.comment-card .user-detail .name {
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.comment-card .user-detail .fs {
  color: #666;
  font-size: 16px;
  margin-top: 4px;
}

.list-content {
  position: absolute;
  width: 100%;
}

.section-seven {
  margin-top: 160px;
  margin-bottom: 120px;
}

.section-seven .btn {
  text-align: center;
  margin-top: 12px;
}

.section-seven .btn .button-color {
  height: 48px;
  border-radius: 48px;
}

.accordion {
  max-width: 100%;
  margin: 12px 100px 48px 100px;
  border-radius: 8px;
}

.accordion-item {
  position: relative;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 20px;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  background: #f7f8f9;
  font-weight: 500;
}

.accordion-header.active {
  padding-bottom: 16px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f7f8f9;
  padding: 0 20px;
  color: #666;
  font-size: 14px;
}

.accordion-content p {
  margin: 15px 0;
  margin-top: 0;
}

.accordion-content.active {
  max-height: 100px; /* 自适应内容高度 */
}

.arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #999;
  transition: transform 0.3s ease;
  transform: rotate(-90deg); /* 默认向右 */
}

.accordion-header.active .arrow {
  transform: rotate(0deg); /* 展开时向下 */
}

.section-footer {
  font-size: 13px;
  padding: 80px 60px;
  box-sizing: border-box;
  width: 100%;
  background: #f2f3fb;
}

.internet {
  padding: 12px 24px;
  background-color: #e2e3ed;
  color: #333;
  text-align: center;
}

.internet .beian {
  font-size: 13px;
  color: #666;
}

.internet .beian a {
  color: #666;
  margin-left: 12px;
}

.internet .beian a:hover {
  background: linear-gradient(93deg, #b64efe -24.88%, #6034f5 114.19%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-footer .container {
  display: flex;
  justify-content: space-between;
}

.section-footer .main-left .logo {
  width: 160px;
}

.section-footer .main-left .icon-list {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.section-footer .main-left .icon-list img {
  width: 34px;
}

.section-footer .main-left .icon-list .wx-qrcode {
  position: relative;
  flex-wrap: nowrap;
}

.section-footer .main-left .icon-list .wx-qrcode .code {
  display: flex;
  align-items: center;
  position: absolute;
  top: -172px;
  left: 0;
  gap: 0 16px;
  background-color: rgb(16, 9, 25);
  padding: 16px 32px;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(to right, #fff, #fff),
    linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
  box-shadow: 0 0 4px #f3f4f7;
  color: #333;
  text-align: center;
}

.section-footer .main-left .icon-list .item {
  position: relative;
}

.section-footer .main-left .icon-list .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: 15px;
}

.section-footer .main-left .icon-list .wx-qrcode .code.hidden {
  display: none;
}

.section-footer .main-left .icon-list .wx-qrcode .code img {
  width: 100px;
}

.section-footer .main-left .icon-list .wx-qrcode .code .gzh {
  position: relative;
  top: 2px;
}

.section-footer .main-right {
  display: flex;
  align-items: flex-start;
}

.section-footer .main-right .gradient {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  white-space: nowrap;
}

.section-footer .main-right .tl {
  text-align: left;
}

.section-footer .main-right .product {
  margin: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px 0;
  font-size: 14px;
}

.section-footer .main-right .product a {
  padding: 0;
  color: #333;
  text-decoration: initial;
  white-space: nowrap;
}

.section-footer .main-right .product a:hover {
  color: #6034f5;
}

.section-footer .main-right .product .text-white {
  color: #fff;
}

.section-footer .main-right .mini {
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 0;
}

.section-footer .main-right .gzh {
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 0;
}

.section-footer .main-right .mini img,
.section-footer .main-right .gzh img {
  width: 80px;
  border-radius: 12px;
}

.aboutus-bg a {
  display: block;
  padding: 0;
}

.aboutus-bg.mobile {
  display: none;
}

.aboutus-bg img {
  width: 100%;
  cursor: pointer;
}

.section-introduce {
  padding-top: 60px;
  padding-bottom: 160px;
}

.introduce-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.introduce-main .title {
  font-size: 28px;
  font-weight: 500;
}

.introduce-main .detail {
  margin-top: 12px;
}

.introduce-main .detail p {
  font-size: 17px;
  line-height: 28px;
  color: #777;
}

.introduce-main .btn {
  width: 100%;
  text-align: center;
}

.introduce-main .button-color {
  height: 48px;
  border-radius: 48px;
  margin-top: 64px;
}

.aboutus-page .section-main {
  background: url("../images/bg.webp");
  background-size: 100% 100%;
}

.aboutus-page .section-main .content {
  padding-top: 28;
  padding-bottom: 100px;
}

.section-api {
  margin-top: 160px;
}

.api-wrapper {
  display: flex;
  align-items: center;
  gap: 0 8%;
  padding-bottom: 120px;
}

.api-wrapper .img {
  width: 50%;
  min-width: 50%;
}

.api-wrapper .img img {
  display: block;
  width: 100%;
}

.api-wrapper .detail .title {
  font-size: 28px;
  font-weight: 500;
}

.api-wrapper .detail .desc {
  color: #777;
  font-size: 16px;
  line-height: 26px;
  margin-top: 32px;
}

.api-wrapper .detail .link {
  color: #777;
  font-size: 16px;
  line-height: 26px;
  margin-top: 16px;
  font-weight: 400;
}

.api-wrapper .detail .link .gradient {
  position: relative;
  padding: 0;
  cursor: pointer;
}

.api-wrapper .detail .link .gradient::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  content: "";
  height: 1px;
  background: linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
}

.api-wrapper .detail .button-color {
  height: 48px;
  border-radius: 48px;
  margin-top: 64px;
}

.contact {
  position: relative;
}

.contact-box {
  display: flex;
  align-items: center;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  gap: 12px;
  flex-direction: column;
  padding: 16px;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(to right, #fff, #fff),
    linear-gradient(94deg, #a143ff -15.57%, #2634ff 110.38%);
  box-shadow: 0 0 4px #f3f4f7;
  color: #333 !important;
  font-size: 13px;
  font-weight: 500;
  -webkit-text-fill-color: initial;
}

.contact-box.contact-box-btn {
  top: -190px;
}

.contact-box.contact-box-btn img {
  width: 140px;
}

.contact-box img {
  width: 100px;
}

.contact-box.hidden {
  display: none;
}

@media only screen and (max-width: 1100px) {
  .header-menu {
    position: fixed;
    top: 50%;
    right: 0;
    display: block;
    transform: translateY(-50%);
  }

  .header-menu img {
    width: 24px;
    cursor: pointer;
  }

  .header-nav {
    position: fixed;
    padding: 16px;
    box-sizing: border-box;
    right: 20px;
    top: 60px;
    width: 110px;
    gap: 18px 0;
    display: none;
    text-align: left;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    margin-left: 16px;
    white-space: nowrap;
    background-color: #fff;
    transition: opacity 0.3s ease-in-out;
    box-shadow: -7px 3px 53.7px 13px rgba(3, 193, 251, 0.2);
    border-radius: 4px;
  }

  .header-nav .nav-item.actived a::after {
    display: none;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav .nav-item {
    padding: 0;
  }

  .header-right {
    display: none;
  }
}

@media only screen and (max-width: 800px) {
  html,
  body {
    width: 100%;
    min-width: 100%;
  }

  .container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 24px;
  }

  .header {
    height: 56px;
    box-shadow: 0 4px 8px 0 rgba(189, 207, 237, 0.2);
    backdrop-filter: blur(50px);
  }

  .header-left .logo {
    width: 130px;
  }

  .homepage {
    overflow-x: hidden;
    background: url("../images/bg.webp") no-repeat;
    background-position: top center;
    background-size: 200% 300px;
  }

  .page-desktop {
    overflow-x: hidden;
    background: url("../images/desktop-bg.jpg") no-repeat;
    background-position: top center;
    background-size: 200% 300px;
  }

  .section-main .content {
    padding-top: 60px;
    padding-bottom: 52px;
  }

  .section-main .content .title {
    font-size: 26px;
  }

  .section-main .content .max-desc {
    display: none;
  }

  .section-main .content .min-desc {
    display: block;
  }

  .section-main .content .desc {
    font-size: 14px;
    line-height: 22px;
  }

  .section-main .header-1 {
    position: absolute;
    top: 24px;
    right: -78px;
    width: 50px;
  }

  .section-main .header-2 {
    position: absolute;
    top: 80px;
    right: -55px;
    width: 62px;
  }

  .section-main .header-3 {
    position: absolute;
    top: 150px;
    right: -55px;
    width: 45px;
  }

  .section-main .header-4 {
    position: absolute;
    top: 80px;
    left: -48px;
    width: 60px;
  }

  .section-main .header-5 {
    position: absolute;
    top: 150px;
    left: -63px;
    width: 45px;
  }

  .section-main .header-6 {
    position: absolute;
    top: 30px;
    left: -68px;
    width: 40px;
  }

  .section-main .header-7 {
    position: absolute;
    top: 100px;
    right: -120px;
    width: 45px;
  }

  .button-color {
    transform: scale(0.88);
  }

  .fragement-title {
    scale: 0.78;
    margin-bottom: 48px;
    white-space: nowrap;
  }

  .row-demo {
    padding: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 72px;
  }

  .row-demo.right {
    flex-direction: column-reverse;
  }

  .row-demo .button-color {
    transform-origin: 0 0;
  }

  .row-demo .demo {
    width: 100%;
    min-width: initial;
  }

  .row-demo .demo img {
    width: 100%;
  }

  .row-demo .detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .row-demo.right .detail {
    align-items: flex-end;
  }

  .row-demo.right .detail .desc {
    text-align: right;
  }

  .row-demo.right .button-color {
    transform-origin: 100% 0;
  }

  .row-demo .detail .title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
  }

  .row-demo .detail .desc {
    color: #777;
    font-size: 14px;
    margin-top: 12px;
  }

  .sub-title {
    padding: 0;
    white-space: nowrap;
    font-size: 22px;
    margin-bottom: 32px;
  }

  .section-two {
    padding: 0;
    padding-top: 24px;
  }

  .avatar-create {
    display: none;
  }

  .swiper {
    display: block !important;
    width: 100%;
    height: 520px;
  }

  .swiper-pagination {
    top: calc((100vw - 48px) * 0.638 + 28px) !important;
    bottom: auto !important;
  }

  .avatar-create .create-top {
    padding: 0;
    flex-direction: column-reverse;
    box-shadow: none;
  }

  .avatar-create .create-top .left {
    align-items: center;
  }

  .avatar-create .create-top .title {
    font-size: 20px;
    margin-top: 24px;
  }

  .swiper-pagination-bullet {
    opacity: 1 !important;
    background: rgba(207, 205, 209, 0.5) !important;
  }

  .swiper-pagination-bullet-active {
    background: rgba(207, 205, 209, 0.5) !important;
    width: 22px !important;
    border-radius: 20px !important;
  }

  .avatar-create .create-top .desc {
    font-size: 14px;
    line-height: 1.7;
    min-height: 140px;
  }

  .avatar-create .create-top .button-color {
    margin-bottom: 0;
  }

  .avatar-create .create-top .right {
    width: 100%;
  }

  .avatar-create .create-bottom {
    display: none;
  }

  .section-api {
    margin-top: 100px;
  }

  .api-wrapper {
    flex-direction: column;
    gap: 50px;
    padding-bottom: 80px;
  }

  .api-wrapper.mobile {
    flex-direction: column-reverse;
  }

  .api-wrapper .img {
    width: 100%;
  }

  .api-wrapper .detail .title {
    font-size: 20px;
  }

  .api-wrapper .detail .desc {
    font-size: 14px;
  }

  .api-wrapper .detail .link {
    font-size: 14px;
  }

  .api-wrapper .detail .button-color {
    margin-top: 40px;
    transform-origin: 0 0;
  }

  .aboutus-page .section-main {
    padding-top: 20px;
    background-position: center;
    background-size: 200% 100%;
  }

  .aboutus-page .section-main .content {
    padding-bottom: 40px;
  }

  .internet {
    padding: 24px;
  }

  .internet .beian {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .section-footer {
    padding: 40px 0;
  }

  .section-footer .container {
    flex-direction: column;
    gap: 32px;
  }

  .section-footer .container .main-left {
    transform: scale(0.9);
    transform-origin: 0 0;
  }

  .section-footer .container .main-right {
    gap: 0 12px;
  }

  .section-footer .main-right .product {
    margin: 0;
    align-items: center;
    flex: 1;
    width: 0;
  }

  .section-footer .main-right .gradient {
    margin-bottom: 2px;
  }

  .section-footer .main-right .product a {
    font-size: 13px;
  }

  .section-footer .main-right .mini {
    margin: 0 8px;
    flex: 1;
    width: 0;
  }

  .section-footer .main-right .gzh {
    margin: 0 8px;
    flex: 1;
    width: 0;
  }

  .section-footer .main-right .mini img,
  .section-footer .main-right .gzh img {
    width: 100%;
  }

  .aboutus-bg {
    display: none;
  }

  .aboutus-bg.mobile {
    display: block;
  }

  .section-introduce {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .introduce-main .title {
    font-size: 20px;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }

  .introduce-main .detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .introduce-main .detail p {
    font-size: 14px;
  }

  .accordion {
    margin: 0;
  }

  .accordion-header {
    font-size: 15px;
  }

  .accordion-content p {
    font-size: 13px;
  }

  .section-three {
    padding: 0;
    margin: 0 -24px;
    margin-top: 100px;
  }

  .video-wrapper {
    display: inline-flex;
    overflow-x: scroll;
    width: 100%;
    padding: 0 24px;
    gap: 0 16px;
  }

  .video-wrapper::-webkit-scrollbar {
    display: none;
  }

  .video-list {
    gap: 0 16px;
    padding-bottom: 0;
  }

  .video-card {
    width: 65vw;
    min-width: 65vw;
    flex: auto;
  }

  .section-four {
    padding: 0;
    margin-top: 100px;
  }

  .video-card .title {
    font-size: 16px;
  }

  .video-card .desc {
    font-size: 13px;
  }

  .section-four .solution-main {
    padding: 48px 24px;
    margin: 0 -24px;
    border-radius: 24px 24px 0 0;
  }

  .solution-main .tabs {
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 0 12px;
    justify-content: flex-start;
  }

  .solution-main .tabs::-webkit-scrollbar {
    display: none;
  }

  .solution-main .tabs-item {
    width: 88px;
    min-width: 88px;
    padding: 10px;
    font-size: 14px;
    border-radius: 8px;
  }

  .solution-list {
    flex-direction: column-reverse;
    gap: 48px;
  }

  .solution-list .left {
    text-align: center;
    width: 100%;
  }

  .solution-list .right {
    width: 100%;
    flex: auto;
  }

  .solution-list .left .title {
    font-size: 20px;
  }

  .solution-main .tabs-item:hover {
    background: #fff;
    color: #333;
  }

  .solution-list .left .desc {
    text-align: left;
    font-size: 14px;
  }

  .solution-list .right .video {
    border-radius: 16px;
  }

  .section-five {
    margin-top: 80px;
  }

  .section-five .time {
    font-size: 16px;
  }

  .section-user img {
    width: 100%;
    margin-top: 12px;
  }

  .section-six {
    margin-top: 80px;
  }

  .comment-box {
    background-size: 200% 1400px;
    background-position: center -400px;
  }

  .comment-box {
    height: 600px;
  }

  .comment-box .container {
    padding: 0 24px;
    gap: 0 16px;
  }

  .comment-box .container .list {
    height: 800px;
    --content-height: 212px;
  }

  .comment-card .icon-top {
    width: 16px;
    top: 12px;
    left: 14px;
  }

  .comment-card .icon-bottom {
    width: 16px;
    bottom: 48px;
    right: 12px;
  }

  .comment-card {
    padding: 14px 10px;
    border-radius: 12px;
  }

  .comment-card .star {
    margin-top: 8px;
  }

  .comment-card .star img {
    width: 12px;
  }

  .comment-card .title {
    font-size: 14px;
    white-space: nowrap;
  }

  .comment-card .desc {
    font-size: 12px;
    line-height: 18px;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 限制显示的行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 54px;
  }

  .comment-card .user {
    margin-top: 24px;
    gap: 0 8px;
  }

  .comment-card .user-detail .name {
    font-size: 14px;
  }

  .comment-card .user-detail .fs {
    font-size: 12px;
  }

  .comment-card .user-header {
    width: 42px;
  }

  .comment-box .container .list.list-three {
    display: none;
  }

  .section-seven {
    margin-top: 140px;
    margin-bottom: 80px;
  }

  .section-seven .btn {
    margin-top: 48px;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    scale: 0;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
