/* Footer Banner样式 */
.footer_banner {
  width: 100%;
  height: auto;
  position: relative;
  background: linear-gradient(90deg, #9bb0d9 0%, #0739a1 74%);
  padding: 100px 0;
  overflow: hidden;
}

.footer_particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.footer_particles canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.footer_banner .document_width {
  position: relative;
  z-index: 1;
}

.footer_banner_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer_banner_title {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 40px 0;
  line-height: 1.2;
  font-family: "Montserrat", "Poppins", sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* 通用霓虹发光按钮效果类 */
.neon_glow_btn {
  position: relative;
  z-index: 1;
  --angle: 0deg;
}

.neon_glow_btn::before {
  content: "";
  position: absolute;
  box-sizing: content-box;
  border-radius: 100px;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.5s;
  animation: rotateuc_neon_glowing_button_effect_elementor_e30c317 2000ms linear
    infinite;
  filter: blur(21px) brightness(1);
  background: conic-gradient(
    from var(--angle),
    #ff003700 150deg,
    #ffffff 230deg,
    #ffffff 360deg
  );
}

.neon_glow_btn:hover::before {
  animation: none;
  opacity: 0;
  visibility: hidden;
}

@keyframes rotateuc_neon_glowing_button_effect_elementor_e30c317 {
  to {
    --angle: 360deg;
  }
}

/* Learn More 按钮样式 - 白色按钮带旋转边框，保留原有布局 */
.learn_more_btn {
  padding: 15px 34px 15px 34px;
  position: relative;
  background: #fff;
  font-weight: 700;
  font-size: 18px;
  color: #1947ba !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  overflow: visible;
  transition: 0.5s;
  --angle: 0deg;
  z-index: 0;
  isolation: isolate;
}

/* ::before - 旋转的阴影/发光效果 */
.learn_more_btn::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border-radius: 100px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  transition: all 0.5s;
  animation: more_btn_effect 2000ms linear infinite;
  filter: blur(15px) brightness(1.2);
  --angle: 0deg;
  background: conic-gradient(
    from var(--angle),
    transparent 150deg,
    #0739a1 230deg,
    #0739a1 360deg
  );
  pointer-events: none;
  opacity: 0.6;
}

/* ::after - 旋转的边框线条 */
.learn_more_btn::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: more_btn_effect 2000ms linear infinite;
  --angle: 0deg;
  background: linear-gradient(#fff, #fff) padding-box,
    conic-gradient(
        from var(--angle),
        transparent 100deg,
        #0739a1 215deg,
        #0739a1 360deg
      )
      border-box;
  border: 2px solid transparent;
  transition: all 0.5s;
  pointer-events: none;
}

.learn_more_btn:hover {
  animation: none;
  background: #1947ba !important;
  color: #fff !important;
  box-shadow: 0 0 30px rgba(25, 71, 186, 0.5), 0 0 50px rgba(25, 71, 186, 0.4),
    0 0 70px rgba(25, 71, 186, 0.3);
}

.learn_more_btn:hover::before {
  animation: none;
  opacity: 0;
}

.learn_more_btn:hover::after {
  animation: none;
  background: linear-gradient(#1947ba, #1947ba) padding-box,
    conic-gradient(
        from var(--angle),
        transparent 100deg,
        #0739a1 215deg,
        #0739a1 360deg
      )
      border-box;
}
@keyframes more_btn_effect {
  0% {
    --angle: 0deg;
  }
  50% {
  }
  100% {
    --angle: 360deg;
  }
}
.footer_banner_btn {
  display: inline-block;
  padding: 16px 36px;
  background: #fff;
  color: #1947ba;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s;
  font-family: "Montserrat", "Poppins", sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer_banner_btn:hover {
  background: #1947ba;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
    0 0 60px rgba(255, 255, 255, 0.4), 0 0 80px rgba(255, 255, 255, 0.3),
    0 0 100px rgba(255, 255, 255, 0.2);
}

/* Footer样式 */
.bottomdiv_new {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #f8f8f8 url(../images/1-footer-scaled.webp) top center no-repeat;
  background-size: cover;
  padding: 70px 0 0 0;
  position: relative;
}

.footer_content {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.footer_left {
  width: 28%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  box-sizing: border-box;
}

.footer_logo {
  width: 100%;
  height: auto;
  display: flex;
  margin-bottom: 16px;
}

.footer_logo img {
  height: 60px;
}

.footer_intro {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.footer_intro p {
  width: 100%;
  height: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #333;
  margin: 0;
}

.footer_social {
  width: 100%;
  height: auto;
  display: flex;
  gap: 12px;
}

.footer_social .social_link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1947ba;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  line-height: 1;
}

.footer_social .social_link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer_social .social_link i {
  display: block;
}

.footer_middle_left,
.footer_middle_right {
  width: 18%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  box-sizing: border-box;
}

.footer_title {
  width: 100%;
  height: auto;
  font-size: 24px;
  font-weight: bold;
  color: #1947ba;
  margin: 0 0 16px 0;
  padding: 0;
  line-height: 1.2;
}

.footer_links {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_links li {
  width: 100%;
  height: auto;
  display: flex;
  margin-bottom: 14px;
}

.footer_links li:last-child {
  margin-bottom: 0;
}

.footer_links li a {
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 30px;
  color: #333;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.footer_links li a:hover {
  color: #1947ba;
}

.footer_right {
  width: 28%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  box-sizing: border-box;
}

.footer_subscribe {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-top: 45px;
}

.footer_email_input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 0 18px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  box-sizing: border-box;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.3s;
}

.footer_email_input:focus {
  border-color: #1947ba;
}
.footer_textarea{
  width: 100%;
  height: 100px;
  line-height: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 10px 18px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  box-sizing: border-box;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.footer_textarea:focus {
  border-color: #1947ba;
}
.footer_subscribe_btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #1947ba;
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}

.footer_subscribe_btn:hover {
  opacity: 0.9;
  background: #153a8a;
}

.bqxxdiv_new {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 28px 0 40px;
  position: relative;
}

.bqxxdiv_new .document_width {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bqxxdiv_new p {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 28px;
  font-size: 16px;
  color: #333;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.bqxxdiv_new p a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.bqxxdiv_new p a:hover {
  color: #1947ba;
}

/* Footer Banner 响应式样式 */
@media (max-width: 768px) {
  .footer_banner {
    padding: 40px 0;
  }

  .footer_banner_title {
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0 20px;
    line-height: 1.3;
  }

  .footer_banner_btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  /* Footer内容区域移动端适配 */
  .footer_content {
    flex-direction: column;
    gap: 30px;
  }

  .footer_left,
  .footer_middle_left,
  .footer_middle_right,
  .footer_right {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 20px;
  }

  .footer_logo {
    margin-bottom: 20px;
  }

  .footer_logo img {
    height: 50px;
  }

  .footer_intro p {
    font-size: 14px;
    line-height: 22px;
  }

  .footer_title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer_links li {
    margin-bottom: 10px;
  }

  .footer_links li a {
    font-size: 14px;
    line-height: 24px;
  }

  .footer_subscribe {
    margin-top: 0;
  }

  .footer_email_input,
  .footer_textarea {
    font-size: 14px;
    padding: 12px 15px;
  }

  .footer_textarea {
    height: 80px;
  }

  .footer_subscribe_btn {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }

  .bqxxdiv_new {
    padding: 20px 0;
  }

  .bqxxdiv_new p {
    font-size: 12px;
    line-height: 20px;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .footer_banner {
    padding: 30px 0;
  }

  .footer_banner_title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer_banner_btn {
    padding: 10px 24px;
    font-size: 13px;
  }

  .footer_logo img {
    height: 40px;
  }

  .footer_title {
    font-size: 18px;
  }

  .footer_intro p {
    font-size: 13px;
  }
}
