@charset "UTF-8";
/* ===================== Reset & Base ===================== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 15px;
}

body {
  background: transparent;
  color: #2b2b2b;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, 微软雅黑, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  letter-spacing: 0.2px;
  font-weight: 400;
  padding-top: 80px; /* 为 fixed 头部让位：与 header 高度一致 */
}

@media (max-width: 767px) {
  body {
    padding-top: 55px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.35;
  color: #222;
}

p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

a:hover, a:focus {
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

i {
  font-style: normal;
}

ul, li {
  list-style: none;
  font-size: 0;
}

li {
  list-style-type: none;
}

strong {
  display: block;
}

.bg-white {
  background-color: #fff;
}

.section-box {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  background: hsla(0, 0%, 98%, 0.9);
  border-radius: 6px;
}

/* ===================== Keyframes（保留常用） ===================== */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
/* ===================== Header（固定+下拉） ===================== */
.pb-header {
  position: fixed; /* 覆盖 sticky，确保始终可见 */
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.pb-header .pb-header-lg {
  height: 80px;
  max-width: 1420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

.pb-header .header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pb-header .header-logo img {
  height: 48px;
  margin-right: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.pb-header .header-logo img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.pb-header .header-nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pb-header .header-nav .nav-item {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pb-header .header-nav .nav-item:last-child {
  margin-right: 0;
}

.pb-header .header-nav .nav-title {
  padding: 0 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #333;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  height: 80px; /* 命中区域 */
}

/* 含下拉的项添加箭头（方案2：伪元素）。兼容：支持 :has 或手动加 .has-sub */
.pb-header .header-nav .nav-item:has(.nav-sub) .nav-title::after,
.pb-header .header-nav .nav-item.has-sub .nav-title::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

/* 下拉卡片 */
.pb-header .header-nav .nav-sub {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, 6px);
          transform: translate(-50%, 6px);
  min-width: 220px;
  max-width: 560px;
  z-index: 100;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 0.6rem;
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1), 0 6px 14px rgba(0, 0, 0, 0.06);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1), 0 6px 14px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.18s ease, visibility 0s linear 0.18s, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, visibility 0s linear 0.18s, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s, -webkit-transform 0.18s ease;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  max-height: 60vh;
  overflow: auto;
}

/* 超过6项自动两列 */
.pb-header .header-nav .nav-sub:has(a:nth-child(7)) {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
}

.pb-header .header-nav .nav-sub a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #2e2e2e;
  white-space: nowrap;
  -webkit-transition: background-color 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.pb-header .header-nav .nav-sub a:hover,
.pb-header .header-nav .nav-sub a:focus {
  background: rgba(22, 142, 255, 0.08);
  color: #1e3c72;
}

/* 触发显示 + 箭头旋转 + 底部渐变线 */
.pb-header .header-nav .nav-item:hover .nav-title,
.pb-header .header-nav .nav-item:focus-within .nav-title,
.pb-header .header-nav .nav-item.active .nav-title {
  color: #1e3c72;
}

.pb-header .header-nav .nav-item:hover .nav-title::after,
.pb-header .header-nav .nav-item:focus-within .nav-title::after,
.pb-header .header-nav .nav-item.active .nav-title::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.pb-header .header-nav .nav-item:hover::after,
.pb-header .header-nav .nav-item.active::after {
  position: absolute;
  content: "";
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#1357e6), color-stop(70%, #11c3b6), to(#b1d154));
  background: linear-gradient(to right, #1357e6, #11c3b6 70%, #b1d154);
}

.pb-header .header-nav .nav-item:hover .nav-sub,
.pb-header .header-nav .nav-item:focus-within .nav-sub,
.pb-header .header-nav .nav-item.active .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: opacity 0.18s ease, visibility 0s, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, visibility 0s, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s, -webkit-transform 0.18s ease;
}

/* 右侧两项防止溢出屏幕 */
.pb-header .header-nav .nav-item:last-child .nav-sub,
.pb-header .header-nav .nav-item:nth-last-child(2) .nav-sub {
  left: auto;
  right: 0;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.pb-header .header-nav .nav-item:last-child:hover .nav-sub,
.pb-header .header-nav .nav-item:last-child:focus-within .nav-sub,
.pb-header .header-nav .nav-item:last-child.active .nav-sub,
.pb-header .header-nav .nav-item:nth-last-child(2):hover .nav-sub,
.pb-header .header-nav .nav-item:nth-last-child(2):focus-within .nav-sub,
.pb-header .header-nav .nav-item:nth-last-child(2).active .nav-sub {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 平板尺寸微调 */
@media (max-width: 1440px) {
  .pb-header .pb-header-lg {
    max-width: 95%;
  }
  .pb-header .header-nav .nav-item {
    margin-right: 12px;
  }
  .pb-header .header-nav .nav-title {
    font-size: 0.98rem;
    padding: 0 10px;
  }
}
@media (max-width: 1199px) {
  .section-box {
    width: 95%;
    max-width: 95%;
  }
  .pb-header .pb-header-lg {
    max-width: 95%;
    padding: 0;
  }
  .pb-header .header-logo img {
    height: 47px;
  }
  .pb-header .header-nav .nav-item .nav-title {
    font-size: 0.95rem;
    padding: 0 8px;
    text-align: center;
  }

}
/* 手机：隐藏桌面导航，展示汉堡 */
@media (max-width: 767px) {
  .pb-header .pb-header-lg {
    height: 55px;
  }
  .pb-header .header-logo img {
    height: 30px;
  }
  .pb-header .header-nav {
    display: none;
  }
  .pb-header .header-menu {
    display: block;
    color: rgb(75, 85, 99);
  }
  .pb-header .header-menu .menu-icon {
    width: 26px;
    height: 26px;
    cursor: pointer;
  }
}
/* ===================== Footer ===================== */
.pb-footer .footer-top {
  background-color: #b3e1f7;
  background-image: url("../assets/bg-footer.png");
  background-size: 1920px 418px;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.pb-footer .footer-top .footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 288px;
}

.pb-footer .footer-left {
  padding-top: 40px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pb-footer .footer-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.pb-footer .footer-content:last-child {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.pb-footer .footer-title {
  font-size: 1.1rem;
  color: #2f308a;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.pb-footer .footer-list .footer-item,
.pb-footer .footer-list p {
  display: block;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}

.pb-footer .footer-list .footer-item {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.pb-footer .footer-list .footer-item:hover {
  color: #2f308a;
}

.pb-footer .footer-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pb-footer .footer-contact {
  max-width: calc(50% - 32px);
}

.pb-footer .footer-contact:first-child {
  margin-right: 32px;
}

.pb-footer .contact-info {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-top: 8px;
  letter-spacing: 0.2px;
}

.pb-footer .footer-record {
  min-height: 85px;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 18px;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #168eff), color-stop(60%, #12c4bf), to(#98d4f2));
  background: linear-gradient(to right, #168eff 10%, #12c4bf 60%, #98d4f2 100%);
}

/* 备案号链接继承父色 */
.pb-footer .footer-record a {
  color: inherit;
  text-decoration: none;
}

.pb-footer .footer-record a:hover {
  color: inherit;
  text-decoration: underline;
}

/* Footer 响应式 */
@media (max-width: 767px) {
  .pb-footer .footer-top {
    background-size: cover;
  }
  .pb-footer .footer-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    padding: 40px 0;
  }
  .pb-footer .footer-left {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .pb-footer .footer-content {
    margin-bottom: 24px;
  }
  .pb-footer .footer-title {
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 0.15px;
  }
  .pb-footer .footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pb-footer .footer-list .footer-item,
  .pb-footer .footer-list p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-right: 10px;
  }
  .pb-footer .footer-right {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .pb-footer .footer-contact {
    max-width: 40%;
  }
  .pb-footer .contact-info {
    font-size: 0.92rem;
    letter-spacing: 0.15px;
  }
  .pb-footer .footer-record {
    font-size: 0.85rem;
    min-height: 60px;
    padding: 14px;
  }
}
/* ===================== Mobile Side Menu（合并去重） ===================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-overlay .menu-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80vw;
  max-width: 420px; /* 更宽一点，看着舒服 */
  background: #fff;
  padding: 20px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.mobile-menu-overlay .menu-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu-overlay .menu-name {
  font-weight: 600;
  color: #333;
  font-size: 1.125rem;
  letter-spacing: 0.2px;
}

.mobile-menu-overlay .menu-close {
  border: 0;
  background: none;
  color: rgb(75, 85, 99);
  padding: 6px;
  cursor: pointer;
}

.mobile-menu-overlay .menu-icon {
  width: 26px;
  height: 26px;
}

.mobile-menu-overlay .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 16px;
}

.mobile-menu-overlay .menu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu-overlay .menu-item:last-child {
  border-bottom: 0;
}

/* 一级项：更大字号 & 触控高度 */
.mobile-menu-overlay .menu-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 4px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
}

/* 含子菜单的箭头 */
.mobile-menu-overlay .menu-item.has-children > a::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  opacity: 0.9;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.mobile-menu-overlay .menu-item.is-open > a::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/* 子菜单：折叠（收起时完全遮住） */
.mobile-menu-overlay .menu-item .menu-sub {
  overflow: hidden;
  max-height: 0;
  padding: 0;
  margin: 0;
  border-left: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: max-height 0.28s ease, padding 0.2s ease, opacity 0.2s ease, border-left 0.2s ease;
  transition: max-height 0.28s ease, padding 0.2s ease, opacity 0.2s ease, border-left 0.2s ease;
}

/* 展开：一行一个 + 放大字号 */
.mobile-menu-overlay .menu-item.is-open .menu-sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px 0 12px 14px;
  border-left: 2px solid rgba(0, 0, 0, 0.06);
  opacity: 1;
  pointer-events: auto;
  max-height: 999px; /* 兜底，真实高度由 JS 设置 */
}

.mobile-menu-overlay .menu-item .menu-sub a {
  display: block;
  font-size: 1.03rem;
  line-height: 1.55;
  padding: 10px 8px;
  color: #444;
  border-radius: 10px;
}

.mobile-menu-overlay .menu-item .menu-sub a:hover,
.mobile-menu-overlay .menu-item .menu-sub a:active {
  color: #1e3c72;
  background: rgba(22, 142, 255, 0.08);
}

/* 中屏再适配一下侧栏宽度 */
@media (max-width: 375px) {
  .mobile-menu-overlay .menu-box {
    width: 86vw;
  }
}

/* 方案2：顶部固定，只有菜单列表滚动 */
.mobile-menu-overlay .menu-box {
  display: flex;
  flex-direction: column;
}
.mobile-menu-overlay .menu-top {
  flex: 0 0 auto;
}
.mobile-menu-overlay .menu-list {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

/* ===== 悬浮操作按钮（首页/返回顶部） ===== */
.float-actions{
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
  display: flex;
  flex-direction: column; /* 上下排列：上方=首页(仅手机)，下方=返回顶部 */
  align-items: center;
  gap: 10px;
  z-index: 980; /* 低于 mobile-menu-overlay(1000)，高于内容 */
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.float-actions.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 按钮外观 */
.float-actions .fa-btn{
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.float-actions .fa-btn img{
  width: 60%;
  height: 60%;
  object-fit: contain;
  pointer-events: none;
}
.float-actions .fa-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
.float-actions .fa-btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

/* 仅手机端显示“首页”按钮 */
@media (min-width: 768px){
  .float-actions .fa-home{ display: none; }
}

/* 当侧栏菜单打开时，隐藏悬浮按钮（避免遮挡） */
.mobile-menu-overlay:not(.hidden) ~ .float-actions{
  opacity: 0 !important;
  pointer-events: none !important;
}

/* 减少动画偏好：禁用过渡（无障碍） */
@media (prefers-reduced-motion: reduce){
  .float-actions,
  .float-actions .fa-btn{
    transition: none !important;
  }
}

.footer-contacts {
  display: grid;
}

.footer-contacts .contact-row {
  display: flex;
  margin-bottom: 6px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #555;
}

.footer-contacts .label {
  display: inline-block;
  width: 90px;         /* 统一宽度，保证冒号排齐 */
  text-align: left;    /* 左对齐 */
  margin-right: 8px;
  font-weight: 500;
  color: #333;
}

.footer-contacts .value {
  flex: 1;
  text-align: left;
}

.pb-footer .footer-list1 {
  display: grid;
}

/* 让左右内容顶端对齐 */
.pb-footer .footer-info {
  display: flex;
  align-items: flex-start; /* 顶部对齐 */
  justify-content: space-between;
}

/* 左边：保持原有分块 */
.pb-footer .footer-left {
  display: flex;
  flex: 2;
  gap: 32px;
}

/* 右边二维码：整体居右，和左边内容顶部对齐 */
.pb-footer .footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* 靠右 */
  align-items: flex-start;   /* 顶部对齐 */
  padding-top: 40px;         /* 保持与左边相同的顶部间距 */
}

/* 二维码块 */
.pb-footer .footer-contact {
  text-align: center;
}

.pb-footer .footer-contact img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}

.pb-footer .contact-info {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

/* ===== 手机端 Footer 二维码最终修复 ===== */
@media (max-width: 768px){

  /* 父容器彻底打散：不再左右分栏，强制独占整行 */
  .pb-footer .footer-top,
  .pb-footer .footer-info,
  .pb-footer .footer-left,
  .pb-footer .footer-right {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 5px;
  }

  /* 二维码外层：居中，整行展示 */
  .pb-footer .footer-qr,
  .pb-footer .footer-qrcode,
  .pb-footer .qrcode {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 16px auto !important;
  }

  /* 二维码图片：强制方形+固定大小，不随父级压缩 */
  .pb-footer .footer-qr img,
  .pb-footer .footer-qrcode img,
  .pb-footer .qrcode img {
    display: inline-block !important;
    width: 200px !important;   /* 固定宽度 */
    height: 200px !important;  /* 固定高度 */
    max-width: 70vw !important;  /* 避免小屏过大 */
    max-height: 70vw !important;
    object-fit: contain !important;
  }

  /* 说明文字 */
  .pb-footer .footer-qr .qr-caption,
  .pb-footer .footer-qrcode .qr-caption {
    font-size: 14px !important;
    margin-top: 6px !important;
    color: #333 !important;
  }
}