@charset 'utf-8';
/* ============================================================
   一级页面/css/news-detail.css —— 新闻详情页样式（设计稿 170:1957）
   说明：
   1. 1rem = 100px（与 common.css 自适应换算一致）
   2. 兼容 IE11：Flexbox 均书写 -ms- 前缀；关键尺寸提供 px 兜底
   3. 禁止 CSS Grid；头尾/面包屑/分页复用 common/topbottom-hh.css
   ============================================================ */

/* ---------- 内容区 ---------- */
.detail-main {
  padding-bottom: 10px;
  padding-bottom: 0.1rem;
}
.detail-inner {
  width: 1530px;
  width: 15.3rem;
  margin: 0 auto;
  padding-bottom: 30px;
  padding-bottom: 0.3rem;
}

/* ---------- 详情标题区（底部 #DFDFDF 分隔线） ---------- */
.detail-head {
  background: #ffffff;
  border-bottom: 1px solid #dfdfdf;
  text-align: center;
  padding: 0 30px 20px;
  padding: 0 0.3rem 0.2rem;
  box-sizing: border-box;
}
.detail-title {
  margin: 0;
  padding: 30px 10px 10px;
  padding: 0.3rem 0.1rem 0.1rem;
  font-family: "Microsoft YaHei";
  font-size: 36px;
  font-size: 0.36rem;
  font-weight: 700;
  color: #333333;
  line-height: 48px;
  line-height: 0.48rem;
  margin-bottom: 0.35rem;
  padding-top: 0;
}
.detail-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "Microsoft YaHei";
  font-size: 18px;
  font-size: 0.18rem;
  color: #999999;
  padding: 0 40px;
  padding: 0 0.4rem;
}
.detail-meta .meta-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.detail-meta .meta-right span {
  margin-left: 38px;
  margin-left: 0.38rem;
}
/* 字号切换按钮（大/中/小，可点击） */
.font-size-box a.font-size-btn {
  color: #999999;
  text-decoration: none;
  margin-left: 6px;
  margin-left: 0.06rem;
  cursor: pointer;
}
.font-size-box a.font-size-btn:hover {
  color: #623dc2;
}
.font-size-box a.font-size-btn.cur {
  color: #623dc2;
  font-weight: 700;
}
/* 正文字号：默认中号 16px，大号 18px，小号 14px */
.detail-body p {
  font-size: 16px;
  font-size: 0.16rem;
}
.detail-body.font-lg p {
  font-size: 18px;
  font-size: 0.18rem;
}
.detail-body.font-sm p {
  font-size: 14px;
  font-size: 0.14rem;
}
.article-topvideo video{
  max-width: 100%;
  margin: auto;
    display: block;
}
/* ---------- 详情正文 ---------- */
.detail-body {
  background: #ffffff;
  padding: 30px 60px 60px;
  padding: 0.3rem 0.6rem 0.6rem;
  box-sizing: border-box;
}
.detail-body p {
  margin: 0 0 20px;
  margin: 0 0 0.2rem;
  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 32px;
  line-height: 0.32rem;
  color: #333333;
  text-align: left;
  text-indent: 2em;
}
.detail-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.article-files {
  margin-top: 0.36rem;
}
.article-files div{
  line-height: 1.6;
  font-size: 0.2rem;
  color: #333;
}

.article-files a {
  line-height: 1.6;
  font-size: 0.2rem;
  color: #333;
  display: block;
}
.article-files a:hover {
  color: #144197;
}
.qrcode {
  margin: 51px auto 20px;
  text-align: center;
}

.qrcode p {
  font-size: 0.16rem;
  letter-spacing: 2px;
  color: #999999;
  margin-bottom: 10px;
}

#qrcode {
  width: auto;
  display: inline-block;
  padding: 15px;
  background-color: #ffffff;
  border: solid 1px rgba(219, 214, 231, 0.73);
}
.names {
  width: 100%;
  text-align: right;
  color: #666;
}

.names span {
  margin-left: 5px;
  font-size: 0.16rem;
}
/* ---------- 响应式（平板/移动端 ≤768px） ---------- */
@media screen and (max-width: 768px) {
  .detail-main {
    padding: 0 0.2rem 0.1rem;
  }
  .detail-inner {
    width: 100%;
    padding-bottom: 0.2rem;
    box-sizing: border-box;
  }
  .detail-title {
    font-size: 0.3rem;
    line-height: 0.44rem;
    padding: 0.2rem 0.1rem 0.1rem;
  }
  .detail-meta {
    display: block;
    font-size: 0.24rem;
    text-align: center;
    padding: 0;
  }
  .detail-meta .meta-right {
    display: block;
    margin-top: 0.1rem;
  }
  .detail-meta .meta-right span {
    margin: 0 0.15rem;
  }
  .detail-body {
    padding: 0.2rem;
  }
  .detail-body p {
    font-size: 0.26rem;
    line-height: 0.44rem;
  }
/* 正文字号：默认中号 16px，大号 18px，小号 14px */
.detail-body p {
  font-size: 26px;
  font-size: 0.26rem;
}
.detail-body.font-lg p {
  font-size: 28px;
  font-size: 0.28rem;
}
.detail-body.font-sm p {
  font-size: 24px;
  font-size: 0.24rem;
}
  .detail-body .detail-img {
    width: 100%;
  }
  .detail-inner .hh-crumb,
  .detail-inner .hh-crumb a {
    font-size: 0.26rem;
  }
  .article-files div{
    font-size: 0.26rem;
  }
  .qrcode{
    display: none;
  }
}
