header.header-nav {
  border-bottom: 1px solid #e5e8ed !important;
  box-shadow: none !important;
}

.header-nav .header-default {
  border: none !important;
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #2183e9;
}

.loading .load-img {
  width: calc(100vw / 1920 * 30);
  height: calc(100vw / 1920 * 30);
  margin-bottom: 10px;
  /* 开启动画 */
  animation: spin 0.8s linear infinite;
}

/* 定义旋转动画 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.loading.show {
  display: flex !important;
}

@media only screen and (min-width: 1025px) {
  .mobil_footer,
  .mobilheader_box {
    display: none;
  }
}

.fixed-right img {
  width: 100%;
  height: auto;
  object-fit: fill;
}

.footer-guild .footer-right .footer-right-link-box:nth-child(3) {
  padding-left: 22px;
}

.footer-guild .footer-right .footer-right-link-box:nth-child(1) {
  transform: translateX(-20px) !important;
}

.footer-guild .footer-right .footer-right-link-box:nth-child(5) {
  transform: translateX(-10px) !important;
}

.message-box .zx-modal-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6%;
}

.message-box .zx-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #252b3a;
  width: 70%;
  margin: 0 auto;
}

.message-box .zx-modal-content img {
  object-fit: cover;
  margin-bottom: 6%;
}

.message-box .zx-modal-content .phone-num {
  font-size: 12px;
  margin-bottom: 6%;
  font-weight: 600;
}

#J_aichat {
  display: none;
  position: fixed;
  right: 10px;
  bottom: -590px;
  width: auto;
  height: auto;
  z-index: 12322;
  overflow: hidden;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#J_aichat {
  display: block;
  opacity: 0;
  right: 0;
  /* 起始略小且下移一点 */
  transform: scaleY(0.8);
  /* 使用scaleY来缩小垂直尺寸 */
  transform-origin: bottom center;
  /* 设置变换中心点为底部中央 */
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.6s ease-out;
  /* 添加bottom属性的过渡效果 */
  box-shadow: rgba(24, 24, 24, 0.16) 0px 16px 24px -8px,
    rgba(24, 24, 24, 0.08) 0px 12px 16px -8px;
}

#J_aichat.show {
  opacity: 1;
  transform: scaleY(1) translateY(0);
  bottom: 0px;
  z-index: 8888;
}

.j_aichat_center,
.before_login {
  display: none;
  position: relative;
}

.show {
  display: block !important;
}

.before_login .aichat_center .title {
  font-size: calc(100vw / 1920 * 22);
  color: #212121;
  padding: calc(100vw / 1920 * 16) 0 calc(100vw / 1920 * 8);
  font-weight: 600;
}

.before_login .aichat_center .dis {
  font-size: calc(100vw / 1920 * 16);
  color: #666666;
  line-height: 16px;
  text-align: center;
}

.aichat {
  width: calc(100vw / 1920 * 460);
  height: calc(100vh - 103px);
  background: #ffffff;
}

.before_login .aichat {
  padding: calc(100vw / 1920 * 18) calc(100vw / 1920 * 24);
  display: flex;
  padding-top: 25%;
}

.aichat_header,
.aichat_center {
  padding: calc(100vw / 1920 * 16);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto;
}

.close_aichat {
  position: absolute;
  right: calc(100vw / 1920 * 24);
  top: calc(100vw / 1920 * 20);
  width: calc(100vw / 1920 * 28);
  cursor: pointer;
  z-index: 99;
  height: auto;
}

.before_login .logo {
  position: absolute;
  left: calc(100vw / 1920 * 24);
  top: calc(100vw / 1920 * 20);
  height: calc(100vw / 1920 * 32);
}

.aichat_login_tip-box {
  position: relative;
  margin-top: calc(100vw / 1920 * 80);
  border-radius: 8px;
}

.aichat_login_tip {
  position: relative;
  padding: calc(100vw / 1920 * 32) calc(100vw / 1920 * 20);
  border-radius: 8px;
  text-align: center;
  z-index: 1;
  /* 确保内容位于伪元素之上 */
  background-color: #fff;
}

.aichat_login_tip-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -2px;
  bottom: -1px;
  background: linear-gradient(
    191deg,
    rgba(71, 206, 255, 1),
    rgba(49, 133, 248, 1)
  );
  z-index: 0;
  border-radius: 8px;
}

.before_login .aichat_login_tip .title {
  font-weight: 600;
  font-size: calc(100vw / 1920 * 16);
  color: #212121;
  padding: 0 0 calc(100vw / 1920 * 9);
}

.before_login .aichat_login_tip .tips-item {
  font-size: calc(100vw / 1920 * 16);
  color: #212121;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .before_login .aichat_center .title {
    font-size: calc(100vw / 1920 * 20);
  }

  .before_login .aichat_login_tip .title {
    font-size: calc(100vw / 1920 * 16);
  }

  .before_login .aichat_center .dis {
    font-size: calc(100vw / 1920 * 16);
  }

  .before_login .aichat_login_tip .tips-item {
    font-size: calc(100vw / 1920 * 16);
  }
}

.before_login .blue,
.before_login .blue_rigister {
  color: #3185f8;
}

.before_login .aichat_login_tip .tips-item .blue,
.before_login .aichat_login_tip .tips-item .blue_rigister {
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  .loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #2183e9;
  }

  .loading.show {
    display: flex !important;
  }

  .loading .load-img {
    width: calc(100vw / 750 * 50);
    height: calc(100vw / 750 * 50);
    margin-bottom: 10px;
    /* 开启动画 */
    animation: spin 0.8s linear infinite;
  }

  #J_aichat {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 12322;
    overflow: hidden;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    display: block;
    opacity: 0;
    /* 起始略小且下移一点 */
    transform: scaleY(0.8);
    /* 使用scaleY来缩小垂直尺寸 */
    transform-origin: bottom center;
    /* 设置变换中心点为底部中央 */
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55),
      opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.6s ease-out;
  }

  #J_aichat.show {
    opacity: 1;
    transform: scaleY(1) translateY(0);
    bottom: 0px;
  }

  .j_aichat_center,
  .before_login {
    display: none;
    position: relative;
    height: 100%;
  }

  .show {
    display: block !important;
  }

  .before_login .login-logo {
    width: calc(100vw / 750 * 200);
    height: auto;
    margin-bottom: calc(100vw / 750 * 52);
  }

  .before_login .aichat_center .title {
    font-size: calc(100vw / 750 * 36);
    font-weight: 900;
    color: #212121;
  }

  .before_login .aichat_center .dis {
    font-size: calc(100vw / 750 * 28);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
  }

  .before_login .aichat {
    width: 100%;
    height: 100%;
    background: #ffffff;
    box-sizing: border-box;
    padding: calc(100vw / 750 * 30);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 37%;
  }

  .aichat_header,
  .aichat_center {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0 auto;
  }

  .close_aichat {
    position: absolute;
    right: calc(100vw / 750 * 30);
    top: calc(100vw / 750 * 30);
    width: calc(100vw / 750 * 52);
    cursor: pointer;
    z-index: 99;
    height: auto;
  }

  .before_login .logo {
    position: absolute;
    left: calc(100vw / 750 * 24);
    top: calc(100vw / 750 * 20);
    height: calc(100vw / 750 * 32);
  }

  .aichat_login_tip-box {
    width: 100%;
    position: relative;
    margin-top: calc(100vw / 750 * 80);
    border-radius: 8px;
  }

  .aichat_login_tip {
    position: relative;
    padding: calc(100vw / 750 * 60) calc(100vw / 750 * 20);
    border-radius: 8px;
    text-align: center;
    z-index: 1;
    /* 确保内容位于伪元素之上 */
    background-color: #fff;
  }

  .aichat_login_tip-box::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -2px;
    bottom: -1px;
    background: linear-gradient(
      191deg,
      rgba(71, 206, 255, 1),
      rgba(49, 133, 248, 1)
    );
    z-index: 0;
    border-radius: 8px;
  }

  .before_login .aichat_login_tip .title {
    font-size: calc(100vw / 750 * 30);
  }

  .before_login .aichat_login_tip .tips-item {
    font-size: calc(100vw / 750 * 28);
    color: #212121;
    line-height: 2;
    text-align: center;
  }

  .before_login .blue,
  .before_login .blue_rigister {
    color: #3185f8;
  }

  .before_login .aichat_login_tip .tips-item .blue,
  .before_login .aichat_login_tip .tips-item .blue_rigister {
    cursor: pointer;
  }

  iframe.aichat {
    width: 100%;
    height: 100%;
  }
}
