@font-face {
  font-family: "zhuquefangsongceshiban";
  src: url("/statics/font/zhuquefangsongceshiban.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ===== 全局重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: #fff;
}

/* ===== 顶部导航（不固定，跟随滚动） ===== */
.navbar {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999;
}
.navbar .brand-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.navbar .nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.navbar .nav-links a {
  color: #1e2a41;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 40px;
  transition: 0.2s;
  letter-spacing: 0.3px;
  background: transparent;
}
.navbar .nav-links a:hover,
.navbar .nav-links a.active {
  background: #ae1623;
  color: #fff;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  cursor: pointer;
  z-index: 1000;
  background: rgb(179, 134, 85);
  padding: 6px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  border: none;
  outline: none;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  flex-shrink: 0;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 9999;
  padding: 80px 30px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu a {
  display: block;
  padding: 14px 20px;
  color: #1e2a41;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: 0.2s;
  letter-spacing: 0.5px;
}
.mobile-menu a:hover {
  background: #1a2639;
  color: #fff;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #1e2a41;
  background: none;
  border: none;
  padding: 8px;
  line-height: 1;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 16px;
  }
  .navbar .brand-logo img {
    height: 32px;
  }
  .navbar .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    width: 100%;
    right: -100%;
    padding: 80px 24px 30px;
  }
}

/* ===== Banner 图 ===== */
.page-banner {
  width: 100%;
  height: 320px;
  background: url("images/banner01.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px; /* 增加左右内边距，防止文字贴边 */
}

.page-banner .banner-text {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 1440px; /* 改用 max-width，而非固定 width */
  margin: 0 auto;
  padding: 0 20px; /* 内边距保证文字不贴边 */
  text-align: left;
  box-sizing: border-box;
}

.page-banner .banner-text p.bannertitle {
 
  font-size: 40px;
  letter-spacing: 2px;
  word-break: break-word; /* 防止长单词溢出 */
}

.page-banner .banner-text p.bannercontent {
    font-family: "zhuquefangsongceshiban", "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 20px;
  opacity: 0.85;
  margin-top: 8px;
  letter-spacing: 1px;
  word-break: break-word;
}

/* ===== 响应式适配 ===== */

/* 平板设备（768px - 1024px） */
@media (max-width: 1024px) {
  .page-banner {
    height: 280px;
  }
  .page-banner .banner-text p.bannertitle {
     
    font-size: 32px;
  }
  .page-banner .banner-text p.bannercontent {
      font-family: "zhuquefangsongceshiban", "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: 20px;
  }
}

/* 手机设备（768px 以下） */
@media (max-width: 768px) {
  .page-banner {
    height: 200px;
    padding: 0 16px;
  }
  .page-banner .banner-text {
    padding: 0 12px;
    text-align: center; /* 小屏居中更美观 */
  }
  .page-banner .banner-text p.bannertitle {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .page-banner .banner-text p.bannercontent {
    font-size: 16px;
    margin-top: 4px;
    letter-spacing: 0.5px;
  }
}

/* 小屏手机（480px 以下） */
@media (max-width: 480px) {
  .page-banner {
    height: 160px;
  }
  .page-banner .banner-text p.bannertitle {
       font-family: "zhuquefangsongceshiban", "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: 18px;
  }
  .page-banner .banner-text p.bannercontent {
      font-family: "zhuquefangsongceshiban", "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .page-banner {
    height: 220px;
  }
  .page-banner .banner-text h1 {
    font-size: 2.2rem;
  }
}

/* ===== 当前页面导航（面包屑） ===== */
.page-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  border-bottom: 1px solid #e8ecf2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #6a7f9b;
}
.page-nav a {
  color: #1a2639;
  text-decoration: none;
  transition: 0.2s;
}
.page-nav a:hover {
  color: #ae1623;
}
.page-nav .sep {
  color: #c0c8d6;
}
.page-nav .current {
  color: #ae1623;
  font-weight: 600;
}

/* ===== 底部 ===== */
.footer {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px 20px 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #2d4059;
  line-height: 1.7;
  background: #f8faff;
}
.footer .footer-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px 20px;
}
.footer .footer-row .sep {
  color: #b0b8c5;
  margin: 0 4px;
}
.footer .footer-row a {
  color: #3b6cb7;
  text-decoration: none;
}
.footer .footer-row a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 16px 16px;
    font-size: 0.7rem;
  }
}

/* ===== 分页样式 ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination ul li {
  display: inline-block;
}
.pagination ul li a,
.pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2639;
  background: #f4f7fc;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.pagination ul li a:hover {
  background: #e8ecf3;
  border-color: #cdd5e2;
  color: #1a2639;
}
.pagination ul li.active span {
  background: #ae1623;
  color: #fff;
  border-color: #ae1623;
  cursor: default;
}
.pagination ul li.disabled span {
  color: #b0b8c5;
  background: #f4f7fc;
  cursor: not-allowed;
  border-color: transparent;
}
.pagination ul li a.arrow {
  background: transparent;
  color: #6a7f9b;
}
.pagination ul li a.arrow:hover {
  background: #f0f3f8;
  color: #1a2639;
}


.page-banner .banner-text {
    width: 1440px;
    margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
}
.page-banner .banner-text p.bannertitle {
  
  font-size: 40px;
  letter-spacing: 2px;
}
.page-banner .banner-text p.bannercontent {
    font-family: "zhuquefangsongceshiban", "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 25px;
  opacity: 0.85;
  margin-top: 8px;
  letter-spacing: 1px;
}

@media (max-width: 480px) {
   
.page-banner .banner-text {
    width: 1440px;
    margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
}
.page-banner .banner-text p.bannertitle {

  font-size: 30px;
  letter-spacing: 2px;
}
.page-banner .banner-text p.bannercontent {
    font-family: "zhuquefangsongceshiban", "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 20px;
  opacity: 0.85;
  margin-top: 8px;
  letter-spacing: 1px;
} 
    
}