/* 强制页脚法律条款为一行 */
.footer-legal {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;   /* ← 关键：居中 */
  gap: 0;
}

/* 链接基础样式 */
.footer-legal a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* 分隔符（核心） */
.footer-legal a:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin: 0 8px;
  opacity: 0.6;
}





/* 页脚整体导航容器 */
.footer-nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;              /* 列间距 */
  padding-left: 20px;
  box-sizing: border-box;
}

/* 每列容器 */
.footer-nav .footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
}

/* LOGO + Social 特殊列 */
.footer-col.footer-brand {
  gap: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* 主菜单标题 */
.footer-nav .footer-title {
  font-size: 14px;
  font-weight: 600;
  color: #004CA0;
  margin-bottom: 0px;    /* 主菜单和子菜单间距 */
  text-decoration: none;
  line-height: 1;
  transition: color 0.3s;
}

/* 主菜单悬停 */
.footer-nav .footer-title:hover {
  color: #33BEFF !important;
}

/* 子菜单链接 */
.footer-nav .footer-col a:not(.footer-title):not(.footer-social) {
  font-size: 12px;
  font-weight: 400;
  color: #1c1c1c;
  text-decoration: none;
  margin-bottom: 0px;    /* 子菜单行间距 10px */
  line-height: 1;
  transition: color 0.3s;
}

/* 子菜单悬停 */
.footer-nav .footer-col a:not(.footer-title):not(.footer-social):hover {
  color: #33BEFF !important;
}

/* Social 图标 */
.footer-social img {
  display: block;
  width: 24px;
  height: 24px;
  transition: filter 0.3s;
  filter: invert(36%) sepia(80%) saturate(3923%) hue-rotate(196deg) brightness(95%) contrast(92%);
}

/* Social hover */
.footer-social:hover img {
  filter: invert(64%) sepia(57%) saturate(3155%) hue-rotate(178deg) brightness(100%) contrast(95%);
}

/* 最后一项不留空 */
.footer-col a:last-child {
  margin-bottom: 0;
}








/* =========================
   产品卡片标题按钮样式
========================= */
.product-title-btn a {
  display: inline-block;       /* 让内边距生效 */
  width: 100%;                 /* 跟随卡片宽度 */
  padding: 20px 0;             /* 上下内边距 20px */
	margin: 20px 0;							 /* 上下外边距 20px */
  text-align: center;          /* 文字居中 */
  background-color: #0077B5;   /* 按钮背景色 */
  color: #ffffff;              /* 按钮文字颜色 */
  font-weight: 600;            /* 字体加粗 */
  font-size: 16px;             /* 字体大小 */
  text-decoration: none;       /* 去掉下划线 */
  border-radius: 10px;          /* 圆角 */
  transition: all 0.3s ease;  /* 平滑过渡效果 */
}


/* 保留默认样式，悬停才变化 */
.product-title-btn a {
  display: inline-block;       /* 让内边距生效 */
  padding: 20px 0;             /* 上下内边距 20px，左右不改 */
	margin: 20px 0;							 /* 上下外边距 20px */
  width: 100%;                 /* 跟随卡片宽度 */
  text-align: center;          /* 文字居中 */
  transition: all 0.3s ease;   /* 平滑过渡 */
  background-color: transparent; /* 默认无背景 */
  color: inherit;              /* 保持默认字体颜色 */
  text-decoration: none;       /* 去掉下划线 */
  border-radius: 10px;          /* 可选圆角 */
}

/* 悬停效果 */
.product-title-btn a:hover {
  background-color: #004CA0;
  color: #FFFFFF;
}










