.footer {
  margin-top: 180px;
  background: url(/assets/img/pages/home/index3/new/footer-partner-network-background.png), linear-gradient(180deg, #1d2364, #191c39);
  background-position: top;
  background-repeat: no-repeat;
}

.footer .title {
  padding-top: 65px;
  color: #fff;
  font-family: Poppins-Medium;
  font-size: 38px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
}

.footer .start_btn {
  display: block;
  width: 304px;
  height: 50px;
  margin: 44px auto 55px;
  border-radius: 8px;
  background-color: #ffbd00;
  color: #222525;
  font-family: Poppins-Medium;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}

.footer .start_btn:hover {
  background-color: #ffc727;
}

.footer .start_btn .iconfont {
  font-size: 20px;
}

.footer_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 35px;
  border-top: 1px solid #28318a;
}

.footer_first {
  max-width: 240px;
}

.footer_contact {
  margin-top: 34px;
}

.footer .support_box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}

.footer .support_box a:hover {
  color: #ffbd00;
}

.footer .support_box a .iconfont {
  width: auto;
  height: auto;
  margin: 0;
  font-size: 18px;
}

.footer .support_box a span {
  display: inline;
  width: auto;
  margin-top: 0;
}

.footer_top .xy_box {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, auto));
  gap: 50px;
  width: calc(100% - 300px);
}

.footer_top .xy_box > div {
  color: #fff;
  font-size: 14px;
}

.footer_top .xy_box > div p {
  margin-bottom: 12px;
}

.footer_top .xy_box > div .xy_box_title {
  color: #fff;
  font-size: 13px;
  opacity: 0.6;
}

.footer_top .xy_box_top {
  margin-top: 50px;
}

.footer .xy_box a {
  margin-right: 20px;
  color: #fff;
  font-size: 13px;
}

.footer .xy_box a:hover {
  color: #ffbd00;
}

.footer .footer_banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-top: 50px;
  margin-bottom: 28px;
  padding: 24px 0;
  border-top: 1px solid #2a3068;
  border-bottom: 1px solid #2a3068;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.footer .footer_banner > div {
  display: flex;
  align-items: center;
  width: max-content;
  overflow: hidden;
  gap: 20px;
  will-change: transform;
}

.footer_banner .footer_banner_1 {
  animation: moveLeftTrack 42s linear infinite;
}

.footer_banner .footer_banner_2 {
  margin-top: 18px;
  animation: moveRightTrack 38s linear infinite;
}

.footer_banner .img_box {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  width: max-content;
  padding-right: 20px;
  animation: none !important;
}

.footer_banner_div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  min-width: 110px;
  height: 56px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.04);
}

.footer_banner .img_box img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes moveLeftTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes moveRightTrack {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.footer .footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}

.footer .footer_bottom p,
.footer .footer_bottom a {
  color: #fff;
  font-size: 12px;
  line-height: 28px;
}

.footer .footer_bottom p {
  opacity: 0.6;
}

.footer .footer_bottom a {
  opacity: 1;
}

.footer_detile {
  display: none;
  margin-bottom: 40px;
}

.footer_detile_de {
  margin-top: 24px;
}

.footer_detile_sum {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_detile_sum span {
  color: #fff;
  font-size: 15px;
}

.footer_detile_sum .iconfont {
  display: block;
  color: #fff;
  font-size: 12px;
  transform: rotate(90deg);
  transition: all 0.2s;
}

.footer_detile_de[open] .footer_detile_sum .iconfont {
  transform: rotate(-90deg);
}

.footer_detile_div a,
.footer_detile_div p {
  display: block;
  margin-top: 24px;
  color: #6d7c90;
  font-size: 15px;
}

.footer_detile_div a:hover,
.footer_detile_div p:hover {
  color: #3066f5;
}

@media only screen and (max-width: 1100px) {
  .footer .title {
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.2;
    padding-top: 56px;
  }

  .footer_top {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    padding-top: 30px;
  }

  .footer_first {
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .footer_contact {
    margin-top: 20px;
  }

  .footer .support_box a {
    justify-content: center;
  }

  .footer_top .xy_box {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 44px;
  }

  .footer_top .xy_box > div {
    min-width: 0;
  }

  .footer_top .xy_box_top {
    margin-top: 28px;
  }

  .footer .xy_box a {
    margin-right: 0;
  }
}

@media only screen and (max-width: 980px) {
  .footer {
    background: linear-gradient(180deg, #1d2364 0%, #1a2253 48%, #191c39 100%);
  }

  .footer .start_btn {
    width: min(304px, calc(100% - 56px));
    margin-top: 30px;
    margin-bottom: 46px;
  }

  .footer .footer_bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer_top .xy_box {
    gap: 28px 28px;
  }

  .footer .footer_banner {
    display: none;
  }

  .footer_top {
    padding-bottom: 24px;
    border-bottom: 1px solid #2a3068;
  }

  .footer .footer_bottom {
    padding-top: 18px;
    padding-bottom: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .footer_top .xy_box {
    display: none;
  }

  .footer_detile {
    display: block;
  }

  .footer_first {
    max-width: none;
    width: 100%;
  }

  .footer_top {
    justify-content: center;
    text-align: center;
  }

  .footer .support_box a {
    justify-content: center;
  }

  .footer .footer_banner {
    margin-top: 36px;
    padding: 18px 0;
  }

  .footer .footer_banner > div {
    gap: 14px;
  }

  .footer_banner .img_box {
    gap: 14px;
    padding-right: 14px;
  }

  .footer_banner_div {
    width: 96px;
    min-width: 96px;
    height: 50px;
  }
}

@media only screen and (max-width: 650px) {
  .footer {
    margin-top: 100px;
  }

  .footer .title {
    font-size: 24px;
  }

  .footer .start_btn {
    margin-top: 24px;
    margin-bottom: 40px;
  }

  .footer .footer_banner {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  }

  .footer .support_box a {
    font-size: 14px;
  }
}
