* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. 专门针对p标签：强制覆盖浏览器默认样式（最高优先级） */
p {
  margin-block-start: 0 !important;
  /* 清零顶部默认边距 */
  margin-top: 0 !important;
  /* 兼容旧版浏览器 */

}

/* ========== 以下是你原有大屏样式，完全保留 ========== */
.banner-title {
  position: absolute;
  top: 86%;
  left: 7.2%;
  transform: translate(10%, -50%);
  z-index: 10;
  color: white;
  font-family: "Source Han Serif SC", "Source_Han_Serif_SC", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  font-family: "Source Han Serif SC", "Microsoft Yahei", "PingFang SC", sans-serif;
  letter-spacing: 4px;
}

.core-content {
  padding-left: 20%;
  padding-right: 20%;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 50px;
}


.mobile-nav-item {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease;
  padding: 1rem 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-link a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

/* 顶部Banner区域 */
.relative {
  position: relative;
  width: 100%;
  overflow: hidden;
}


/* 核心内容区 */
.core-content {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.nr {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
}

.title-content {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

.title-bottom {
  text-align: center;
  color: #999;
  font-size: 12px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.title-bottom span {
  margin: 0 0.5rem;
}

.content .zxxq-01-text-t1 {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 16px;
}

.content .zxxq-01-text-t2 {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.zxxq-01-desc {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.zxxq-01-desc img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1rem 0;
}

/* 返回列表按钮 */
.xgzx-pagin-01-href {
  text-align: center;
  margin-top: 2rem;
}

.xgzx-pagin-01-href a {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background-color: #f5f5f5;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.xgzx-pagin-01-href a:hover {
  background-color: #e8e8e8;
}

/* 清除浮动 */
.clear {
  clear: both;
}

/* 美化返回列表按钮 - 核心样式 */
.pagin {
  width: 100%;
  padding: 20px 0;
  /* 让内容靠右显示 */
  text-align: right;
  /* 防止超出容器 */
  box-sizing: border-box;
}

.pagin a {
  /* 按钮化样式 */
  display: inline-block;
  padding: 8px 18px;
  background-color: #efeeed;
  /* 主色调，可根据网站调整 */
  color: #717171 !important;
  /* 强制白色文字，覆盖原有样式 */
  text-decoration: none;
  /* 去掉下划线 */
  border-radius: 20px;
  /* 圆角，提升美观度 */
  font-size: 14px;
  transition: all 0.3s ease;
  /* 过渡动画，交互更丝滑 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* 轻微阴影，增加立体感 */
}

/* 鼠标悬停效果 */
.pagin a:hover {
  background-color: #afaead;
  color: white !important;
  /* 深色hover效果 */
  transform: translateY(-1px);
  /* 轻微上移 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  /* 阴影加深 */
}

/* 点击按压效果 */
.pagin a:active {
  transform: translateY(0);
  /* 恢复位置 */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  /* 阴影变浅 */
}

/* 清除默认间距，避免错位 */
.pagin span {
  margin: 0;
  padding: 0;
}

/* 响应式适配 */
@media (max-width: 768px) {
  #menuBtn {
    display: block;
  }

  .title-content {
    font-size: 22px;
  }



  .nr {
    padding: 1.5rem;
  }
}

@media (max-width: 1023px) {

  /* Banner标题适配 */
  .banner-title {
    top: 80%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 1.2;
  }

  .core-content {
    padding-left: 6%;
    padding-right: 6%;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 5px;
  }
}