/* ========== 全局重置 ========== */
/* 旧版头部样式 */
.content {
  width: 1000px;
  height: auto;
  margin: 0px auto;
  text-align: left;
}

.body_content {
  display: block;
  float: left;
  width: 998px;
  height: auto;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}

.header {
  display: block;
  float: left;
  width: 1000px;
  height: 145px;
}

.top {
  display: block;
  float: left;
  width: 1000px;
  height: 22px;
  background-color: #cc3333;
}

.user {
  display: block;
  float: left;
  width: 680px;
  height: 22px;
}

.set_home {
  display: block;
  float: left;
  width: 280px;
  height: 22px;
  margin-left: 20px;
  font-size: 12px;
  line-height: 20px;
  color: #FFFFFF;
}

.set_home a {
  color: #FFFFFF;
  text-decoration: none;
}

.set_home a:hover {
  color: #ffdd00;
}

.logo {
  display: block;
  float: left;
  width: 1000px;
  height: 122px;
  background-color: #FFFFFF;
}

.menu {
  display: block;
  float: left;
  width: 1000px;
  height: 60px;
  background: linear-gradient(to bottom, #cc3333, #aa2222);
}

.main_menu {
  display: block;
  width: 980px;
  margin: 0px auto;
  height: 30px;
  text-align: center;
}

.sub_menu {
  display: block;
  float: left;
  padding: 0px 3px;
  margin: 0px 5px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.sub_menu a {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  text-decoration: none;
}

.sub_menu a:hover,
.sub_menu a.active {
  color: #ffdd00;
  text-decoration: underline;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", Arial, sans-serif;
  background-color: #faf6f0;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}
a { color: #333; text-decoration: none; }
a:hover { color: #c8102e; }
ul { list-style: none; }
.wrap { width: 1000px; margin: 0 auto; }

/* ========== 顶部区域 ========== */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #e0d6c8;
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo-area {
  display: flex;
  align-items: center;
}
.logo-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #c8102e, #8b0000);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 56px;
  margin-right: 12px;
  border-radius: 4px;
}
.site-title {
  font-size: 24px;
  font-weight: bold;
  color: #8b0000;
  letter-spacing: 2px;
}
.site-sub {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
.top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.top-utils {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.util-sep {
  color: #ccc;
}
.search-box {
  display: flex;
  border: 1px solid #c8102e;
  border-radius: 2px;
  overflow: hidden;
}
.search-box input {
  width: 180px;
  height: 28px;
  border: 0;
  padding: 0 8px;
  outline: none;
  font-size: 13px;
}
.search-box button {
  background: #c8102e;
  color: #fff;
  border: 0;
  padding: 0 12px;
  cursor: pointer;
  font-size: 13px;
}
.top-link {
  font-size: 13px;
  color: #666;
}
.top-link:hover { color: #c8102e; }

/* ========== 主导航 ========== */
.main-nav {
  background: linear-gradient(to bottom, #c8102e, #8b0000);
}
.nav-list {
  display: flex;
  width: 100%;
}
.nav-item {
  position: relative;
  flex: 1;
}
.nav-item.long {
  flex: 1.5;
}
.nav-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 6px 4px;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
}
.nav-item > a:hover {
  background: #8b0000;
  color: #fff;
}
.nav-item > a.idx-style-active {
  background: #8b0000;
}
/* 下拉菜单 纯CSS实现 */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #c8102e;
  border-top: 0;
  display: none;
  z-index: 100;
}
.nav-item:hover .sub-menu { display: block; }
.sub-menu li a {
  display: block;
  height: 34px;
  line-height: 34px;
  color: #333;
  font-size: 13px;
  font-weight: normal;
  background: #fff;
  padding: 0 8px;
  text-align: center;
}
.sub-menu li a:hover {
  background: #faf6f0;
  color: #c8102e;
}

/* ========== 轮播图 ========== */
.headline-section {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.headline-left {
  width: 450px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e0d6c8;
  display: flex;
  flex-direction: column;
}
.carousel {
  position: relative;
  overflow: hidden;
  height: 300px;
  background: #8b0000;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
}
.carousel-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.carousel-caption {
  position: relative;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 30px 16px 12px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.carousel-dots {
  position: absolute;
  bottom: 10px;
  right: 16px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dot.active {
  background: #fff;
}
.headline-right {
  flex: 3;
  min-width: 0;
  background: #fff;
  border: 1px solid #e0d6c8;
}
.box-title {
  background: #faf6f0;
  border-bottom: 2px solid #c8102e;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: bold;
  color: #8b0000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box-title .more {
  font-size: 12px;
  color: #999;
  font-weight: normal;
}
.notice-list {
  padding: 8px 12px;
}
.notice-list li {
  height: 32px;
  line-height: 32px;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 1px dashed #eee;
}
.notice-list li::before {
  content: "\00B7";
  color: #c8102e;
  margin-right: 6px;
  font-weight: bold;
}
.notice-list li:last-child { border-bottom: 0; }
.notice-list .date {
  float: right;
  color: #999;
  font-size: 12px;
  margin-left: 8px;
}

/* ========== 三栏主体 ========== */
.main-content {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.col-left { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.col-center { flex: 2; min-width: 0; display: flex; flex-direction: column; }
.col-right { flex: 1; min-width: 0; display: flex; flex-direction: column; }

/* 通用列表卡片 */
.card {
  background: #fff;
  border: 1px solid #e0d6c8;
  margin-bottom: 12px;
  flex: 1;
}
.card:last-child { margin-bottom: 0; }
.card .box-title { background: #faf6f0; }
.card-body {
  padding: 8px 12px;
}
.text-list li {
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 1px dashed #eee;
}
.text-list li::before {
  content: "\00B7";
  color: #c8102e;
  margin-right: 6px;
}
.text-list li:last-child { border-bottom: 0; }
.text-list .date {
  float: right;
  color: #999;
  font-size: 12px;
  margin-left: 8px;
}

/* 左栏 协会介绍链接列表 */
.intro-list li {
  height: 32px;
  line-height: 32px;
  padding-left: 16px;
  font-size: 13px;
  border-bottom: 1px dashed #eee;
  position: relative;
}
.intro-list li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: #c8102e;
}
.intro-list li:last-child { border-bottom: 0; }

/* ========== 特色板块 ========== */
.feature-section {
  margin-top: 12px;
  background: #fff;
  border: 1px solid #e0d6c8;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px;
  align-items: stretch;
}
.feature-card {
  flex: 1 1 calc(25% - 12px);
  min-width: 0;
  border: 1px solid #e0d6c8;
  padding: 12px;
  background: #faf6f0;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: #c8102e;
  background: #fff;
}
.feature-card .fc-title {
  font-size: 14px;
  font-weight: bold;
  color: #8b0000;
  margin-bottom: 6px;
}
.feature-card .fc-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  flex: 1;
}
.feature-card .fc-tag {
  display: inline-block;
  background: #c8102e;
  color: #fff;
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 2px;
  margin-bottom: 6px;
}

/* ========== 视频区域 ========== */
.video-section {
  margin-top: 12px;
  background: #fff;
  border: 1px solid #e0d6c8;
  display: flex;
  gap: 12px;
}
.video-left {
  flex: 1;
  border-right: 1px solid #e0d6c8;
}
.video-right {
  width: 280px;
}
.video-link {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  border-bottom: 1px dashed #eee;
  position: relative;
  padding-left: 28px;
}
.video-link::before {
  content: "\25B6";
  position: absolute;
  left: 12px;
  color: #c8102e;
  font-size: 10px;
}
.video-link:last-child { border-bottom: 0; }
.video-link:hover {
  background: #faf6f0;
  color: #c8102e;
}
.video-link .v-tag {
  display: inline-block;
  background: #8b0000;
  color: #fff;
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 2px;
  margin-right: 6px;
}
.tv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
}
.tv-item {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px;
  border: 1px solid #eee;
  border-radius: 4px;
  color: #333;
  font-size: 13px;
  transition: box-shadow .15s, border-color .15s;
}
.tv-item:hover {
  border-color: #c8102e;
  box-shadow: 0 0 6px rgba(200,16,46,.2);
  color: #c8102e;
}
.tv-item img {
  width: 72px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 6px;
  background: #f5f5f5;
  border-radius: 2px;
}

/* ========== 其他板块三栏 ========== */
.other-section {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}
.other-section .col {
  flex: 1;
  min-width: 0;
}

/* ========== 底部区域 ========== */
.footer-links {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #e0d6c8;
  padding: 12px;
}
.footer-links .fl-title {
  font-size: 14px;
  font-weight: bold;
  color: #8b0000;
  margin-bottom: 8px;
}
.footer-links .fl-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.footer-links .fl-list a {
  font-size: 12px;
  color: #666;
}
.footer-links .fl-list a:hover { color: #c8102e; }

.footer {
  margin-top: 12px;
  background: #8b0000;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
  line-height: 1.8;
}
.footer > div + div {
  margin-top: 6px;
}
.footer a {
  color: #fff;
  text-decoration: underline;
}
.footer a:hover {
  color: #ffd9d9;
}
.footer-stat {
  font-size: 12px;
  color: #ffd9d9;
}
.footer a { color: #fff; margin: 0 6px; }
.footer a:hover { color: #ffd; }

/* ========== 404 错误页 ========== */
.error-page { text-align: center; padding: 80px 0; }
.error-code { font-size: 72px; color: #c8102e; margin-bottom: 16px; }
.error-msg  { font-size: 18px; color: #666; margin-bottom: 24px; }
.error-back-btn {
    display: inline-block;
    background: #c8102e;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 14px;
}
.error-back-btn:hover { color: #ffd9d9; }

/* ========== 经典案例三栏布局 ========== */
.anli-layout { display: flex; gap: 12px; align-items: flex-start; margin-top: 12px; }
.anli-nav { width: 160px; flex-shrink: 0; border: 1px solid #e0d6c8; background: #fff; }
.anli-menu-title { background: #c8102e; color: #fff; font-size: 14px; font-weight: bold; text-align: center; line-height: 32px; }
.anli-menu-item { border-bottom: 1px solid #f0ebe0; }
.anli-menu-item a { display: block; padding: 8px 12px; font-size: 13px; color: #333; text-align: center; }
.anli-menu-item a:hover { color: #c8102e; background: #fdf6f0; }
.anli-menu-item.active a { background: #fdf6f0; color: #c8102e; font-weight: bold; border-left: 3px solid #c8102e; }
.anli-content { flex: 1; min-width: 0; }

@media (max-width: 768px) {
  .anli-layout { flex-direction: column; }
  .anli-nav { width: 100%; }
}

/* ========== 列表页样式 ========== */
.list-header {
  background: #fff;
  border: 1px solid #e0d6c8;
  padding: 12px 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.list-header .breadcrumb {
  font-size: 13px;
  color: #999;
}
.list-header .breadcrumb a { color: #666; }
.list-header .breadcrumb span { color: #c8102e; }
.list-title {
  font-size: 18px;
  font-weight: bold;
  color: #8b0000;
  margin-top: 6px;
}
.article-list {
  background: #fff;
  border: 1px solid #e0d6c8;
}
.article-list li {
  padding: 10px 16px;
  border-bottom: 1px dashed #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-list li:last-child { border-bottom: 0; }
.article-list li .al-title {
  font-size: 14px;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article-list li .al-date {
  font-size: 12px;
  color: #999;
  margin-left: 16px;
  white-space: nowrap;
}

/* ========== 详情页样式 ========== */
.detail-header {
  background: #fff;
  border: 1px solid #e0d6c8;
  padding: 20px;
  margin-top: 12px;
  text-align: center;
}
.detail-header h1 {
  font-size: 20px;
  color: #8b0000;
  margin-bottom: 12px;
  line-height: 1.4;
}
.detail-subtitle {
  font-family: '楷体', 'KaiTi', 'STKaiti', serif;
  font-size: 18px;
  color: #666;
  margin-bottom: 12px;
  font-weight: normal;
  line-height: 1.5;
}
.detail-meta {
  font-size: 13px;
  color: #999;
}
.detail-meta span { margin: 0 10px; }
.source-truncate {
  display: inline-block;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.detail-content {
  background: #fff;
  border: 1px solid #e0d6c8;
  border-top: 0;
  padding: 20px;
  line-height: 1.8;
  font-size: 15px;
}
.detail-content p { margin-bottom: 12px; }
.detail-content img { max-width: 100%; height: auto; }
.detail-nav {
  background: #fff;
  border: 1px solid #e0d6c8;
  border-top: 0;
  padding: 12px 20px;
  font-size: 13px;
}
.detail-nav a { color: #666; }
.detail-nav a:hover { color: #c8102e; }
.detail-nav .prev { float: left; }
.detail-nav .next { float: right; }
.detail-nav::after { content: ""; display: table; clear: both; }

/* ========== 分页样式 ========== */
.idx-style-pagination {
  text-align: center;
  padding: 16px 0;
}
.idx-style-pagination a,
.idx-style-pagination span {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 2px;
  border: 1px solid #e0d6c8;
  font-size: 13px;
  background: #fff;
  color: #666;
}
.idx-style-pagination a:hover {
  border-color: #c8102e;
  color: #c8102e;
}
.idx-style-pagination .idx-style-current {
  background: #c8102e;
  color: #fff;
  border-color: #c8102e;
}
.idx-style-pagination .idx-style-dots {
  border: 0;
  background: none;
  padding: 4px 6px;
}

/* ========== 搜索页样式 ========== */
.search-header {
  background: #fff;
  border: 1px solid #e0d6c8;
  padding: 12px 16px;
  margin-top: 12px;
}
.search-header .search-info {
  font-size: 14px;
  color: #666;
}
.search-header .search-info strong { color: #c8102e; }

/* ========== 列表页/详情页：带右侧边栏布局 ========== */
.page-with-sidebar {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.page-with-sidebar .main-col {
  flex: 1;
  min-width: 0;
}
.page-with-sidebar .side-col {
  width: 300px;
  flex-shrink: 0;
  margin-top: 12px;
}
.side-col .card {
  flex: none;
}

/* ========== 首页分隔横幅：4图拼接成 10:1 满宽条带（线上 index_ad 风格） ========== */
.band-strip {
  display: flex;
  width: 100%;
  height: 100px;
  overflow: hidden;
  margin: 20px 0;
}
.band-strip a {
  display: block;
  flex: 1 1 0;
  height: 100%;
}
.band-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== 响应式 768px ========== */
@media (max-width: 768px) {
  .wrap { width: 100%; padding: 0 8px; }
  .top-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .site-title { font-size: 18px; }
  .nav-list { flex-wrap: wrap; height: auto; }
  .nav-item { flex: 1 1 25%; }
  .nav-item > a { height: 36px; line-height: 36px; font-size: 13px; }
  .sub-menu { top: 36px; position: static; display: block; border: 0; }
  .headline-section, .main-content, .other-section, .banner-row { flex-direction: column; }
  .banner-item { width: 100%; }
  .headline-left, .headline-right, .col-left, .col-center, .col-right { width: 100%; }
  .feature-card { flex: 1 1 100%; }
  .video-section { flex-direction: column; }
  .video-right { width: 100%; }
  .video-left { border-right: 0; border-bottom: 1px solid #e0d6c8; }
  .article-list li { flex-direction: column; align-items: flex-start; }
  .article-list li .al-date { margin-left: 0; margin-top: 4px; }
  .page-with-sidebar { flex-direction: column; }
  .page-with-sidebar .side-col { width: 100%; margin-top: 0; }
}

/* ========== 登录页（去内联样式，配合严格 CSP） ========== */
.login-wrap { max-width: 400px; margin: 60px auto; padding: 0 8px; }
.login-card-body { padding: 20px; }
.login-error { color: #c8102e; margin-bottom: 12px; text-align: center; }
.login-field { margin-bottom: 12px; }
.login-label { display: block; margin-bottom: 4px; font-size: 14px; }
.login-input {
  width: 100%;
  height: 36px;
  border: 1px solid #ddd;
  padding: 0 10px;
  font-size: 14px;
}
.login-captcha-row { display: flex; gap: 8px; }
.login-captcha-img { height: 36px; cursor: pointer; }
.login-submit {
  width: 100%;
  height: 40px;
  background: #c8102e;
  color: #fff;
  border: 0;
  font-size: 15px;
  cursor: pointer;
}
.login-back { text-align: center; margin-top: 16px; }
.login-back a { font-size: 13px; color: #999; }

/* ========== 详情页图集（去内联样式） ========== */
.detail-imgs { margin-top: 16px; }
.detail-img-item { text-align: center; margin-bottom: 12px; }

/* ========== 列表/搜索空结果提示 ========== */
.empty-tip { text-align: center; color: #999; padding: 20px 0; }

/* ========== 其他前台内联样式外置 ========== */
.login-field--captcha { margin-bottom: 16px; }
.login-captcha-input {
  width: 120px;
  height: 36px;
  border: 1px solid #ddd;
  padding: 0 10px;
  font-size: 14px;
}
.zzjg-subtitle { margin-top: 20px; }
.detail-empty { text-align: center; padding: 40px; color: #999; }

/* ========== 网站置灰（国家哀悼日） ========== */
body.site-grayscale {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}

/* ========== 三栏布局样式（旧版还原） ========== */
.classic-three-columns {
  display: flex;
  gap: 10px;
  width: 998px;
}

.classic-three-columns .col-left,
.classic-three-columns .col-center,
.classic-three-columns .col-right {
  flex: none;
  min-width: auto;
  display: flex;
  flex-direction: column;
}

.classic-three-columns .col-left {
  width: 240px;
}

.classic-three-columns .col-center {
  width: 380px;
}

.classic-three-columns .col-right {
  width: 358px;
}

.classic-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* 左栏样式 */
.classic-title-bar {
  width: 240px;
  height: 29px;
  line-height: 29px;
  background-image: url(../images/outsizetitle.jpg);
  background-repeat: no-repeat;
}

.classic-body {
  width: 240px;
  min-height: 160px;
  background-image: url(../images/outsizemiddle.jpg);
  background-repeat: repeat-y;
}

.classic-bottom {
  width: 240px;
  height: 9px;
  background-image: url(../images/outsizebottom.jpg);
  background-repeat: no-repeat;
}

/* 中栏样式 */
.classic-title-bar-center {
  width: 380px;
  height: 29px;
  line-height: 29px;
  background-image: url(../images/anli_top.jpg);
  background-repeat: no-repeat;
}

.classic-body-center {
  width: 380px;
  min-height: 150px;
  background-image: url(../images/anli_middle.jpg);
  background-repeat: repeat-y;
}

.classic-bottom-center {
  width: 380px;
  height: 9px;
  background-image: url(../images/anli_bottom.jpg);
  background-repeat: no-repeat;
}

/* 右栏样式 */
.classic-title-bar-right {
  width: 358px;
  height: 29px;
  line-height: 29px;
  background-image: url(../images/jieda_top.jpg);
  background-repeat: no-repeat;
}

.classic-body-right {
  width: 358px;
  min-height: 150px;
  background-image: url(../images/jieda_middle.jpg);
  background-repeat: repeat-y;
}

.classic-bottom-right {
  width: 358px;
  height: 9px;
  background-image: url(../images/jieda_bottom.jpg);
  background-repeat: no-repeat;
}

/* 标题文字样式 */
.classic-title {
  text-align: left;
  text-indent: 30px;
  font-size: 14px;
  font-weight: bold;
  color: #cc3333;
}

.classic-title a {
  color: #cc3333;
  text-decoration: none;
}

.classic-title a:hover {
  color: #ff0000;
}

/* 列表样式 */
.classic-intro-list {
  padding: 10px 15px;
}

.classic-intro-list li {
  height: 32px;
  line-height: 32px;
  border-bottom: 1px dashed #ccc;
  text-align: center;
}

.classic-intro-list li:last-child {
  border-bottom: none;
}

.classic-intro-list a {
  color: #333;
  font-size: 13px;
  text-decoration: none;
}

.classic-intro-list a:hover {
  color: #cc3333;
}

.classic-text-list {
  padding: 10px 15px;
}

.classic-text-list li {
  height: 28px;
  line-height: 28px;
  border-bottom: 1px dashed #ccc;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.classic-text-list li:last-child {
  border-bottom: none;
}

.classic-text-list a {
  color: #333;
  font-size: 13px;
  text-decoration: none;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.classic-text-list a:hover {
  color: #cc3333;
}

.classic-date {
  color: #666;
  font-size: 12px;
  margin-left: 10px;
  white-space: nowrap;
}

/* ========== 旧版布局样式 ========== */
/* 电视调解推荐区域 */
.index_ad {
  display: block;
  width: 998px;
  min-height: 130px;
  text-align: center;
  clear: both;
  display: flex;
  margin-top: 10px;
}

.tv-side-nav {
  float: left;
  width: 80px;
  text-align: left;
  text-indent: 10px;
}

.tv-container {
  float: left;
  width: 900px;
}

.tv_tj {
  width: 155px;
  height: 54px;
  line-height: 54px;
  float: left;
  text-align: center;
  text-indent: 2em;
}

.tv_tj a {
  font-size: 12px;
  color: #333;
  text-decoration: none;
}

.tv_tj a:hover {
  color: #ff0000;
}

.tv_tj img {
  vertical-align: middle;
  margin-bottom: 5px;
}

/* 频道区域 */
.channel {
  display: inline;
  float: left;
  width: 482px;
  height: 230px;
  margin-left: 10px;
  margin-top: 10px;
  border: 1px solid #CCCCCC;
}

.channel_top {
  display: block;
  float: left;
  width: 482px;
  height: 30px;
  background: linear-gradient(to right, #cc3333, #aa2222);
}

.channel_top_nav {
  display: block;
  float: left;
  width: 438px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  font-weight: bold;
  text-indent: 30px;
  color: #FFFFFF;
}

.channel_top_more {
  display: block;
  float: left;
  width: 44px;
  height: 30px;
  line-height: 30px;
}

.channel_top_more a {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 30px;
}

.channel_top_more a:hover {
  color: #ff0000;
  text-decoration: underline;
}

.channel_container {
  display: block;
  float: left;
  width: 482px;
}

.channel_list {
  display: block;
  float: left;
  width: 472px;
  height: 25px;
  line-height: 25px;
  margin-left: 5px;
  font-size: 13px;
}

.channel_content_title {
  display: block;
  float: left;
  width: 376px;
  height: 25px;
  line-height: 25px;
  overflow: hidden;
}

.channel_content_title a {
  color: #000000;
  line-height: 25px;
}

.channel_content_title a:hover {
  color: #ff0000;
  line-height: 25px;
  text-decoration: underline;
}

/* 两栏布局 */
.two-column-channels {
  width: 998px;
  display: flex;
  flex-wrap: wrap;
}

/* 四栏布局 */
.four-column-channels {
  width: 998px;
  display: flex;
  flex-wrap: wrap;
}

.four-column-channels .channel {
  width: 482px;
  margin-bottom: 10px;
}

/* Banner广告 */
.index-ad-banner {
  display: block;
  width: 998px;
  margin: 10px auto;
  text-align: center;
}

.index-ad-banner img {
  width: 980px;
  height: 110px;
}

/* 友情链接 */
/* ========== 访问计数器数字图片样式 ========== */
.counter-digit {
  vertical-align: middle;
  margin: 0 1px;
}

/* 友情链接 */
/* ========== 频道板块中的文章列表样式 ========== */
.channel .article-list {
  background: #fff;
  border: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.channel .article-list li {
  padding: 8px 12px;
  border-bottom: 1px dashed #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  position: relative;
  padding-left: 20px;
}

.channel .article-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #c8102e;
  font-size: 14px;
}

.channel .article-list li:last-child {
  border-bottom: 0;
}

.channel .article-list li .al-title {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.channel .article-list li .al-title a {
  color: #333;
}

.channel .article-list li .al-title a:hover {
  color: #c8102e;
}

.channel .article-list li .al-date {
  font-size: 12px;
  color: #999;
  margin-left: 12px;
  white-space: nowrap;
}

/* 友情链接 */
/* ========== 访问计数器数字图片样式 ========== */
.counter-digit {
  vertical-align: middle;
  margin: 0 1px;
}

/* 友情链接 */
.index_links {
  display: block;
  float: left;
  margin: 10px 0px;
  width: 998px;
  text-align: center;
}

.index_links a {
  margin: 0 5px;
}

.index_links img {
  border: 0;
}

/* 底部版权（旧版风格） */
.footer {
  display: block;
  float: left;
  width: 1000px;
  height: auto;
}

/* 错误页（403/404/500）底部：抵消旧版 float/width，恢复居中 */
.footer.error-footer {
  float: none;
  width: auto;
  background: #8b0000;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
  line-height: 1.8;
}

.footer_top {
  display: block;
  float: left;
  width: 1000px;
  height: 25px;
  background-color: #cc3333;
  text-align: center;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 25px;
}

.footer_body {
  display: block;
  float: left;
  width: 1000px;
  height: auto;
  background-color: #e9e9e9;
  text-align: center;
  color: #000000;
  font-size: 12px;
  line-height: 25px;
  padding: 10px 0;
}

.footer_body a {
  color: #000;
}

.footer_body a:hover {
  color: #cc3333;
  text-decoration: underline;
}

.beian-link {
  text-decoration: underline;
  color: #0000FF;
}
