:root {
  --page-width: 1200px;
  --navy: #1037a0;
  --navy-deep: #00142e;
  --navy-soft: #194ea9;
  --gold: #eed5b0;
  --red: #e60000;
  --text-dark: #111111;
  --text-main: #2a3457;
  --text-muted: #6a7189;
  --body-size: 16px;
  --title-size: 32px;
  --subtitle-size: 26px;
  --copy-size: 20px;
  --line: rgba(255, 255, 255, 0.22);
  --service-icon: url(./assets/figma/084aea64-8a2d-49cf-b910-72c8c9cc6a0f.png);
}

*{
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "DINOT-Bold";
  src: url("./assets/font/DINOT-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Source Han Serif SC";
  src: url("./assets/font/SourceHanSansSC-Regular-2.otf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'fa';
  src: url('./assets/font/优设标题黑.ttf');
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 1200px;
  overflow-x: hidden;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: var(--body-size);
  color: #111111;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.home-footer-records a{
  padding-right: 4px !important;
}

.home-footer-records a:hover{
  color: rgba(255, 255, 255, 0.82);
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 48px), var(--page-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1037A0;
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.brand span {
  font-family: 'fa';
  font-size: 26px;
  color: white;
  margin-left: 4px;
  font-weight: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 16px;
  color: var(--text-muted);
}

.main-nav > a,
.nav-contact > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 25px 0 24px;
  transition: color 0.25s ease;
  color: white;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-contact.is-open > a {
  color: white;
  font-weight: 600;
}

.main-nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 5px;
  background: white;
  transform: translateX(-50%);
}

.nav-contact {
  position: relative;
}

.contact-pop {
  position: absolute;
  /* top: calc(100% + 18px); */
  right: 50%;
  width: 175px;
  height: 228px;
  padding: 15px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(50%) translateY(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  pointer-events: none;
  z-index: 60;
}

.nav-contact.is-open .contact-pop {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
  pointer-events: auto;
}

.contact-pop::before {
  /* content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg); */
}

.contact-pop-code {
  width: 136px;
  height: 129px;
  margin: 0 auto;
  object-fit: cover;
}

.contact-pop-badge {
  position: absolute;
  top: 54px;
  left: 50%;
  width: 29px !important;
  height: 29px !important;
  transform: translateX(-50%);
  border-radius: 0 !important;
}

.contact-pop-meta {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #121212;
  /* padding:  0 28px; */
}

.contact-pop-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 0 4px;
  font-size: 16px;
  color: #121212;
  /* padding-left: 29px; */
}

.contact-pop-phone img {
  width: 12px;
  height: 12px;
}

.floating-contact {
  position: fixed;
  right: 28px;
  top: 50%;
  z-index: 960;
  width: 176px;
  padding: 8px;
  border: 1px solid rgba(16, 55, 160, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.98));
  /* box-shadow:
    0 18px 44px rgba(0, 20, 46, 0.14),
    0 2px 10px rgba(16, 55, 160, 0.08); */
  transform: translateY(-50%);
  /* backdrop-filter: blur(10px); */
  background: white;
}

.floating-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  /* border-radius: 22px; */
  /* background:
    radial-gradient(circle at top right, rgba(16, 55, 160, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(238, 213, 176, 0.24), transparent 30%); */
  pointer-events: none;
}

.floating-contact-inner {
  position: relative;
  z-index: 1;
}

.floating-contact-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1037a0, #2d61d7);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.floating-contact-title {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #12306e;
}

.floating-contact-desc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
  color: #66708a;
}

.floating-contact-code {
  width: 140px;
  height: 140px;
  margin: 14px auto 0;
  padding: 7px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(16, 55, 160, 0.08);
  position: relative;
}

.floating-contact-code img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.floating-contact-phone {
  /* display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; */
  margin-top: 12px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #1b2950;
  text-align: center;
  margin-bottom: 12px;
}

.floating-contact-phone img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.floating-contact-phone p{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

/* @media (min-width: 1025px) { */
  /* .nav-contact .contact-pop {
    position: fixed;
    top: var(--contact-pop-top, 90px);
    left: var(--contact-pop-left, auto);
    right: auto;
    width: 227px;
    height: 240px;
    padding: 20px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transform: translateX(-50%) translateY(8px);
  }

  .nav-contact.is-open .contact-pop {
    transform: translateX(-50%) translateY(0);
  }

  .nav-contact .contact-pop::before {
    display: none;
  }

  .nav-contact .contact-pop-code {
    width: 136px;
    height: 129px;
  }

  .nav-contact .contact-pop-meta {
    padding: 0 20px;
  }

  .nav-contact .contact-pop-phone {
    padding-left: 21px;
  }
} */

.footer-links {
  min-width: 1200px;
  background: #00142e;
  color: #dce6ff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links-inner {
  padding: 14px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-column h3 {
  flex: 0 0 auto;
  margin: 0;
  padding-top: 2px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

.footer-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}

.footer-link-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 22px;
  color: rgba(230, 238, 255, 0.88);
  font-size: 16px;
  line-height: 1.6;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.footer-link-list a:first-child {
  padding-left: 0;
}

.footer-link-list a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%);
}

.footer-link-list a:last-child::after {
  display: none;
}

.footer-link-list a:hover {
  color: #ffffff;
}

.copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 1200px;
  height: 90px;
  background: var(--navy-deep);
  color: #ffffff;
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  letter-spacing: -1.8px;
}

.copyright  div{
  display: flex;
  align-items: center;
  img{
    display: inline-block;
    width: 18px;
    vertical-align: middle;
    margin-right: 6px;
  }
}

.copyright p {
  margin: 0;
}

.home-footer-bar {
  min-width: 1200px;
  background: #00142E;
}

.home-footer-inner {
  position: relative;
  /* display: grid; */
  /* grid-template-columns: fit-content; */
  align-items: center;
  justify-items: stretch;
  min-height: 78px;
  gap: 24px;
  display: flex;
  justify-content: space-between;
}

.home-footer-links,
.home-footer-records {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
  color: #ffffff;
}

.home-footer-links {
  justify-content: flex-end;
  order: 2;
}

.home-footer-records {
  justify-content: flex-start;
  text-align: left;
  order: 1;
}

.home-footer-links a,
.home-footer-records a,
.home-footer-records span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 3px;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  white-space: nowrap;
}

.home-footer-links a:first-child {
  padding-left: 22px;
}
.home-footer-links a{
  padding-right: 29px;
  &:nth-last-child(1){
    padding-right: 0;
  }
}

.home-footer-records span:first-child {
  padding-left: 0;
}

.home-footer-links a:hover{
  color: rgba(255, 255, 255, 0.82);
}

.home-footer-links a::after,
.home-footer-records > *::after {
  /* content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%); */
}

.home-footer-links a:last-child::after,
.home-footer-records > *:last-child::after {
  display: none;
}

.home-footer-badge {
  display: none;
}

.home-footer-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.home-footer-records>img{
  display: inline-block;
  width: 17px;
  margin-left: 8px;
  margin-right: 4px;
}

.home-footer-records {
  justify-content: flex-start;
  gap: 0px !important;
}