﻿/* ========== 1. BASELINE（与 index.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_ec7fb48::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 左侧二级导航（cwl gzdt 风格 - 红渐变+工作动态Tab） */
.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: "»";
}

/* 左侧热门推荐（cwl 资讯列表页常见右侧模块） */
.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 右侧主内容：资讯列表 - gzdt/tt 风格 */
.c-content {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #eee;
  padding: 22px 28px 32px;
  min-height: 600px;
}

.c-content-title {
  border-bottom: 2px solid #e60012;
  padding-bottom: 12px;
  margin-bottom: 20px;
  position: relative;
}

.c-content-title h1 {
  margin: 0;
  font-size: 24px;
  color: #333;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  padding-right: 20px;
}

.c-content-title .sub {
  color: #999;
  font-size: 13px;
  margin-left: 10px;
}

.c-content-title .more-sub {
  float: right;
  color: #999;
  font-size: 13px;
  line-height: 36px;
}

/* ============ 资讯列表核心样式：日期色块 + 标题 + 摘要（gzdt/tt 风格） ============ */
.c-news-list li {
  display: flex;
  align-items: stretch;
  padding: 18px 0;
  border-bottom: 1px dashed #e4e4e4;
  gap: 20px;
  transition: background .2s;
}

.c-news-list li:last-child {
  border-bottom: 0;
}

.c-news-list li:hover {
  background: #fbfbfb;
}

/* 日期色块（cwl 特色：左侧月+日双色块） */
.c-news-date {
  flex: 0 0 84px;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  font-family: "Arial", "Segoe UI", sans-serif;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
}

.c-news-date .m {
  background: #e60012;
  color: #fff;
  font-size: 14px;
  padding: 4px 0;
  letter-spacing: 1px;
  font-weight: 600;
}

.c-news-date .d {
  background: #fff5f6;
  color: #c00000;
  font-size: 30px;
  font-weight: 700;
  padding: 4px 0 6px;
  line-height: 1.1;
}

.c-news-date .y {
  background: #f1f1f1;
  color: #888;
  font-size: 11px;
  padding: 3px 0;
}

/* 资讯文字信息区（含缩略图 litpic） */
.c-news-main {
  flex: 1;
  display: flex;
  gap: 18px;
  min-width: 0;
}

.c-news-thumb {
  flex: 0 0 160px;
  width: 160px;
  height: 110px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
  background: #f5f5f5;
}

.c-news-thumb a,
.c-news-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s;
}

.c-news-thumb img:hover {
  transform: scale(1.06);
}

.c-news-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-news-body .title {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}

.c-news-body .title a:hover {
  color: #e60012;
}

.c-news-body .w_1428549 {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.c-news-body .w_569b6d3 {
  margin-top: 10px;
  color: #999;
  font-size: 12px;
}

.c-news-body .w_569b6d3 i {
  font-style: normal;
  display: inline-block;
  margin-right: 14px;
}

.c-news-body .w_569b6d3 i::before {
  color: #c00000;
  margin-right: 4px;
}

/* 分页 */
.c-page {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
}

.c-page .pagination {
  display: inline-block;
}

.c-page .pagination li {
  display: inline-block;
  margin: 0 3px;
}

.c-page .pagination li a,
.c-page .pagination li span {
  display: inline-block;
  min-width: 36px;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  color: #555;
}

.c-page .pagination li a:hover {
  color: #fff;
  border-color: #e60012;
  background: #e60012;
}

.c-page .pagination li.active span {
  color: #fff;
  border-color: #e60012;
  background: #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;
  }
}

/* ========== 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: 14px 16px 22px;
    min-height: 300px;
  }

  .c-content-title {
    padding-bottom: 10px;
    margin-bottom: 14px;
  }

  .c-content-title h1 {
    font-size: 19px !important;
    line-height: 1.4 !important;
  }

  .c-content-title .more-sub {
    display: none;
  }

  /* 资讯列表 移动端：日期色块 50px + 文字 右 */
  .c-news-list li {
    padding: 14px 0;
    gap: 12px;
  }

  .c-news-date {
    flex: 0 0 56px;
  }

  .c-news-date .m {
    font-size: 11px;
    padding: 3px 0;
  }

  .c-news-date .d {
    font-size: 20px;
    padding: 3px 0;
  }

  .c-news-date .y {
    font-size: 10px;
  }

  .c-news-main {
    flex-direction: column;
    gap: 10px;
  }

  .c-news-thumb {
    flex: none;
    width: 100%;
    height: 160px;
  }

  .c-news-body .title {
    font-size: 16px;
    -webkit-line-clamp: 2;
  }

  .c-news-body .w_1428549 {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  /* 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 字号阶梯 */
  h1 {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }

  h2,
  h3,
  h4 {
    font-size: 17px !important;
  }

  p,
  li,
  a,
  div {
    font-size: 14px !important;
    line-height: 1.65 !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;
  }

  h1 {
    font-size: 20px !important;
  }

  .c-news-body .title {
    font-size: 15px;
  }

  .c-news-body .w_1428549 {
    font-size: 12.5px;
  }
}

/* 6b2199 */
:root {
    line-break: strict;
}
[data-979] {
    scroll-behavior: auto;
}
