﻿/* ========== 1. BASELINE（与 lists_article.htm v6 风格一致，cwl PC 风） ========== */
* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
  color: #333;
  background: #f5f5f5;
  line-height: 1.7;
}

body {
  min-width: 1200px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #e60012;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-wrap {
  width: 1200px;
  margin: 0 auto;
}

.c-red {
  color: #e60012;
}

.c-gray {
  color: #999;
}

.w_99322dd::after {
  content: "";
  display: table;
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/* ① 顶栏红条（与首页一致） */
.c-topbar {
  background: #c00000;
  color: #fff;
  height: 34px;
  line-height: 34px;
  font-size: 13px;
}

.c-topbar a {
  color: #fff;
  margin: 0 8px;
}

.c-topbar a:hover {
  color: #ffe95a;
}

.c-topbar-left b {
  margin-right: 10px;
  letter-spacing: 1px;
}

.c-topbar-right span {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.5);
}

/* ② 头部（与首页一致：Logo + 搜索 + 导航） */
.c-header {
  background: #fff;
}

.c-header-inner {
  padding: 18px 0;
  display: flex;
  align-items: center;
}

.c-logo {
  flex: 0 0 260px;
}

.c-logo img {
  height: 62px;
}

.c-header-center {
  flex: 1;
  text-align: center;
  padding: 0 30px;
}

.c-slogan {
  font-family: "KaiTi", "楷体", sans-serif;
  font-size: 22px;
  letter-spacing: 8px;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 6px;
  margin-bottom: 10px;
}

.c-search {
  display: inline-flex;
  max-width: 420px;
  width: 100%;
  border: 1px solid #e60012;
  border-radius: 4px;
  overflow: hidden;
}

.c-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  background: #fff;
}

.c-search button {
  flex: 0 0 84px;
  border: 0;
  background: #e60012;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.c-header-right {
  flex: 0 0 220px;
  text-align: right;
  font-size: 13px;
  color: #666;
}

.c-header-right .tel {
  font-size: 18px;
  color: #e60012;
  font-weight: bold;
  letter-spacing: 1px;
}

.c-nav {
  background: #c00000;
  border-top: 2px solid #9b0000;
}

.c-nav-list {
  display: flex;
  height: 52px;
  line-height: 52px;
}

.c-nav-item {
  flex: 1;
  text-align: center;
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background .2s;
}

.c-nav-item:last-child {
  border-right: 0;
}

.c-nav-item:hover,
.c-nav-item.active {
  background: #9b0000;
  color: #fff;
}

/* ③ 面包屑 Banner */
.c-crumb {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  font-size: 14px;
  color: #666;
}

.c-crumb a:hover {
  color: #e60012;
}

.c-crumb .sep {
  color: #bbb;
  margin: 0 8px;
}

.c-crumb .sep::before {
  content: "›";
}

/* ④ 左右两栏详情区 */
.c-main {
  padding: 24px 0 40px;
}

.c-main-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: flex-start;
}

/* ④-1 左侧二级导航 + 热门推荐（与 lists_article 一致） */
.c-side-block {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #eee;
  overflow: hidden;
  margin-bottom: 20px;
}

.c-side-title {
  background: linear-gradient(180deg, #d60000, #b30000);
  color: #fff;
  padding: 16px 18px;
}

.c-side-title .cn {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.c-side-title .en {
  font-size: 12px;
  opacity: .85;
  margin-top: 2px;
  letter-spacing: 1px;
}

.c-side-nav li {
  border-bottom: 1px solid #f3f3f3;
}

.c-side-nav li:last-child {
  border-bottom: 0;
}

.c-side-nav li a {
  display: block;
  padding: 13px 20px 13px 26px;
  font-size: 15px;
  color: #444;
  position: relative;
  transition: all .2s;
}

.c-side-nav li a::before {
  content: "›";
  position: absolute;
  left: 14px;
  top: 14px;
  color: #e60012;
  font-size: 18px;
  line-height: 1;
}

.c-side-nav li a:hover,
.c-side-nav li.active a {
  color: #e60012;
  background: #fff5f6;
  font-weight: 600;
}

.c-side-nav li.active a::before {
  content: "»";
}

.c-side-hot {
  padding: 14px 18px 18px;
}

.c-side-hot h4 {
  font-size: 17px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
  letter-spacing: 1px;
}

.c-side-hot li {
  padding: 8px 0;
  border-bottom: 1px dashed #f0f0f0;
  font-size: 14px;
  position: relative;
  padding-left: 26px;
}

.c-side-hot li:last-child {
  border-bottom: 0;
}

.c-side-hot .n {
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 11px;
  color: #fff;
  background: #bbb;
  border-radius: 3px;
  font-weight: 600;
}

.c-side-hot li:nth-child(1) .n,
.c-side-hot li:nth-child(2) .n,
.c-side-hot li:nth-child(3) .n {
  background: #e60012;
}

.c-side-hot li a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-side-hot li a:hover {
  color: #e60012;
}

/* ④-2 右侧主内容：cwl 详情页结构（标题+元信息+正文+上下篇+相关推荐） */
.c-content {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #eee;
  padding: 30px 40px 40px;
  min-height: 700px;
}

.c-article-title {
  text-align: center;
  border-bottom: 1px dashed #e2e2e2;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.c-article-title h1 {
  margin: 0;
  font-size: 30px;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  font-family: "SimHei", "黑体", "Microsoft YaHei", sans-serif;
}

.c-article-meta {
  margin-top: 16px;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.c-article-meta i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.c-article-meta i::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e60012;
  display: inline-block;
}

.c-article-meta .c-share {
  display: inline-flex;
  gap: 6px;
  margin-left: 10px;
}

.c-article-meta .c-share a {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  background: #fafafa;
  font-size: 12px;
  color: #555;
}

.c-article-meta .c-share a:hover {
  color: #fff;
  border-color: #e60012;
  background: #e60012;
}

/* 正文区（cwl 公文风格：仿宋 17px + 行高 2 + 首行缩进 2em） */
.c-article-body {
  padding: 14px 0 28px;
  font-family: "FangSong_GB2312", "FangSong", "仿宋", "SimSun", "宋体", serif;
  font-size: 17px;
  line-height: 2.0;
  color: #1f1f1f;
  text-align: justify;
}

.c-article-body p {
  margin: 0 0 16px 0;
  text-indent: 2em;
}

.c-article-body p:last-child {
  margin-bottom: 0;
}

.c-article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px auto;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
}

.c-article-body h2,
.c-article-body h3,
.c-article-body h4 {
  font-family: "SimHei", "黑体", "Microsoft YaHei", sans-serif;
  margin: 24px 0 12px;
  line-height: 1.5;
  color: #1a1a1a;
  font-weight: 700;
}

.c-article-body h2 {
  font-size: 20px;
}

.c-article-body h3 {
  font-size: 18px;
}

.c-article-body h4 {
  font-size: 16px;
}

.c-article-body ul,
.c-article-body ol {
  margin: 10px 0 16px 30px;
}

.c-article-body ul li {
  list-style: disc;
  margin: 6px 0;
}

.c-article-body blockquote {
  margin: 14px 0;
  padding: 10px 16px;
  background: #fdf6ec;
  border-left: 4px solid #f5a623;
  color: #a86000;
}

/* 附件区 */
.c-article-files {
  margin: 10px 0 24px;
  padding: 14px 20px;
  border: 1px dashed #e8d8c8;
  background: #fdfaf5;
  border-radius: 5px;
}

.c-article-files h5 {
  margin: 0 0 10px 0;
  font-size: 15px;
  color: #a86000;
}

.c-article-files li {
  padding: 6px 0;
  font-size: 14px;
}

.c-article-files li a {
  color: #c00000;
  text-decoration: underline;
}

/* 上一篇 / 下一篇 */
.c-article-pn {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  margin: 14px 0 26px;
  font-size: 14px;
  color: #555;
}

.c-article-pn .row {
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-article-pn .label {
  flex: 0 0 70px;
  color: #888;
  font-weight: 600;
}

.c-article-pn .txt {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-article-pn a:hover {
  color: #e60012;
  text-decoration: underline;
}

/* 相关推荐/猜你喜欢 */
.c-article-rel {
  margin: 8px 0 14px;
}

.c-rel-title {
  border-left: 4px solid #e60012;
  padding: 2px 12px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px 0;
}

.c-rel-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 30px;
}

.c-rel-list li {
  padding: 7px 0;
  border-bottom: 1px dashed #eee;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.c-rel-list li:last-child:nth-child(odd) {
  grid-column: span 2;
}

.c-rel-list li::before {
  content: "·";
  color: #c00000;
  font-size: 20px;
  line-height: 1;
  margin-right: 6px;
  flex-shrink: 0;
}

.c-rel-list li .t {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-rel-list li .d {
  color: #aaa;
  font-size: 12px;
  flex-shrink: 0;
}

.c-rel-list li a:hover {
  color: #e60012;
}

/* ⑤ Footer（与首页一致） */
.c-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 28px 0 24px;
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

.c-foot-main {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1fr;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #eee;
}

.c-foot-logo {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.c-foot-logo img {
  height: 42px;
}

.c-foot-copy p {
  margin: 5px 0;
  line-height: 1.8;
}

.c-foot-copy a {
  color: #e60012;
}

.c-foot-col h4 {
  font-size: 15px;
  margin: 0 0 10px;
  color: #333;
}

.c-foot-col ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.c-foot-col li a {
  color: #666;
  font-size: 13px;
}

.c-foot-col li a:hover {
  color: #e60012;
}

.c-foot-qr {
  text-align: center;
}

.c-foot-qr img {
  width: 180px;
  height: auto;
  border: 1px solid #f0f0f0;
  padding: 6px;
  background: #fff;
  border-radius: 4px;
}

.c-foot-qr p {
  color: #999;
  margin-top: 6px;
  font-size: 12px;
}

.c-foot-tip {
  background: #fff6e9;
  border: 1px solid #ffe0a3;
  color: #a86000;
  border-radius: 6px;
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}

/* ========== 2. PC GUARD >= 1200px 显式锁死 ========== */
@media (min-width: 1200px) {
  body {
    min-width: 1200px !important;
    width: auto !important;
  }

  .c-wrap {
    width: 1200px !important;
    max-width: 1200px !important;
  }

  .c-main-grid {
    grid-template-columns: 260px 1fr !important;
  }

  .c-nav-list {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    height: 52px !important;
  }

  .c-nav-item {
    flex: 1 !important;
    width: auto !important;
    border-bottom: 0 !important;
  }

  .c-foot-main {
    grid-template-columns: 1.3fr 2fr 1fr !important;
  }

  .c-rel-list {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ========== 3. MOBILE <= 767px cwl H5 流体风格 ========== */
@media (max-width: 767px) {

  html,
  body {
    min-width: 0 !important;
    width: 100% !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  body {
    font-size: 15px;
  }

  .c-wrap {
    width: 100% !important;
    padding: 0 12px;
    box-sizing: border-box;
  }

  /* 顶栏：两行居中 */
  .c-topbar {
    height: auto !important;
    line-height: 1.6;
    padding: 6px 10px;
    font-size: 12px;
  }

  .c-topbar .fl,
  .c-topbar .fr {
    float: none !important;
    display: block;
    text-align: center;
    padding: 2px 0;
  }

  .c-topbar a {
    margin: 0 4px;
  }

  /* 头部：垂直堆叠 */
  .c-header-inner {
    flex-direction: column !important;
    padding: 14px 12px !important;
    gap: 12px;
  }

  .c-logo {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .c-logo img {
    height: 48px !important;
  }

  .c-header-center {
    padding: 0 !important;
  }

  .c-slogan {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .c-search {
    max-width: 100%;
  }

  .c-header-right {
    flex: none;
    width: 100%;
    text-align: center;
  }

  /* 主导航：3列网格 */
  .c-nav-list {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    height: auto !important;
    line-height: 44px;
  }

  .c-nav-item {
    flex: 0 0 33.33% !important;
    width: 33.33% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    font-size: 14px;
  }

  .c-nav-item:nth-child(3n) {
    border-right: 0 !important;
  }

  /* 面包屑：字号缩小 */
  .c-crumb {
    padding: 10px 0;
    font-size: 13px;
  }

  /* 左右两栏 → 单列堆叠 */
  .c-main {
    padding: 14px 0 24px;
  }

  .c-main-grid {
    grid-template-columns: 100% !important;
    gap: 12px;
  }

  .c-side-title .cn {
    font-size: 18px;
  }

  .c-side-nav li a {
    font-size: 14px;
    padding: 11px 14px 11px 26px;
  }

  /* 主内容：详情页移动端 */
  .c-content {
    padding: 16px 16px 26px;
    min-height: 300px;
  }

  .c-article-title h1 {
    font-size: 20px !important;
    text-align: left !important;
    line-height: 1.35 !important;
  }

  .c-article-meta {
    margin-top: 12px;
    justify-content: flex-start;
    gap: 10px;
    font-size: 12px;
  }

  .c-article-meta .c-share {
    width: 100%;
    margin-left: 0;
  }

  /* 正文 */
  .c-article-body {
    padding: 10px 0 20px;
    font-size: 15px !important;
    line-height: 1.85 !important;
  }

  .c-article-body p {
    text-indent: 2em;
    font-size: 15px !important;
    margin-bottom: 12px;
  }

  /* 上一篇下一篇 */
  .c-article-pn .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0;
  }

  .c-article-pn .label {
    flex: none;
    color: #e60012;
  }

  .c-article-pn .txt {
    width: 100%;
    white-space: normal;
    line-height: 1.6;
  }

  /* 相关推荐：双列→单列 */
  .c-rel-list {
    grid-template-columns: 100% !important;
    gap: 2px 0;
  }

  .c-rel-list li:last-child:nth-child(odd) {
    grid-column: span 1;
  }

  /* Footer：单列堆叠 */
  .c-foot-main {
    grid-template-columns: 100% !important;
    gap: 18px;
    text-align: center;
  }

  .c-foot-logo {
    justify-content: center;
  }

  .c-foot-col ul {
    justify-content: center;
  }

  .c-foot-qr img {
    margin: 0 auto;
  }

  /* cwl H5 字号阶梯 */
  h2,
  h3,
  h4 {
    font-size: 17px !important;
  }
}

/* ========== 4. SMALL MOBILE <= 576px ========== */
@media (max-width: 576px) {
  .c-nav-item {
    flex: 0 0 50% !important;
    width: 50% !important;
    font-size: 13px !important;
  }

  .c-nav-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .c-nav-item:nth-child(2n) {
    border-right: 0 !important;
  }

  .c-article-title h1 {
    font-size: 18px !important;
  }

  .c-article-body {
    font-size: 14px !important;
  }

  .c-article-body p {
    font-size: 14px !important;
  }

  .c-rel-title {
    font-size: 16px;
  }
}

/* 0b7b8c */
[data-967] {
    scroll-behavior: auto;
}
[data-967] {
    line-break: strict;
}
::selection {
    text-rendering: optimizeLegibility;
}
