/* ========== 公共模块：顶部背景 开始 ========== */

.top-banner {
  width: 100%;
  min-height: 490px;
  height: auto;
  background: url(2026zjsdj_bg01.png) center top no-repeat #fff;
  background-size: 100% auto;
  position: relative;
  padding-bottom: 60px;
}
.top-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.top-banner .return-link {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  z-index: 10;
}
.top-banner .return-link:hover {
  color: #ffcccb;
}
.top-banner .logo-wrap {
  text-align: left;
  padding-top: 65px;
}
.top-banner .logo-wrap img {
  max-height: 280px;
}
.top-banner .main-nav {
  margin-top: 65px;
  background-color: #9A1010;
}
/* ========== 公共模块：顶部背景 结束 ========== */

/* ========== 公共模块：主导航 开始 ========== */
.main-nav {
  width: 100%;
}
.main-nav .container-custom.nav-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.main-nav .navbar {
  padding: 0;
}
.main-nav .navbar-nav {
  width: 100%;
  justify-content: space-between;
}
.main-nav .navbar .nav-link {
  color: #fff;
  padding: 14px 18px;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 700;
}
.main-nav .navbar .nav-link:hover,
.main-nav .navbar .nav-link:focus {
  color: #ffcccb;
  background-color: rgba(255, 255, 255, 0.12);
}
.main-nav .navbar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.18);
}
.main-nav .dropdown-menu {
  background-color: #b71c1c;
  border: none;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}
.main-nav .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 10px 24px;
  white-space: nowrap;
}
.main-nav .dropdown-menu .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffcccb;
}
.main-nav .nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}
/* ========== 公共模块：主导航 结束 ========== */

/* ========== 公共模块：移动端导航抽屉 开始 ========== */
.nav-drawer-toggle {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}
.nav-drawer-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}
.nav-drawer.active {
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #9A1010;
  color: #fff;
  flex-shrink: 0;
}
.nav-drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: opacity 0.25s ease;
}
.nav-drawer-close:hover {
  opacity: 0.7;
}

.nav-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-drawer-item > a {
  display: block;
  padding: 14px 20px;
  color: #333;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}
.nav-drawer-item > a:hover,
.nav-drawer-item > a.active {
  color: #9A1010;
  background: #fdf2f2;
}

.nav-drawer-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-drawer-parent .nav-drawer-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-left: 10px;
}
.nav-drawer-dropdown.expanded .nav-drawer-arrow {
  transform: rotate(-135deg);
}

.nav-drawer-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fafafa;
}
.nav-drawer-dropdown.expanded .nav-drawer-sub {
  max-height: 300px;
}
.nav-drawer-sub a {
  display: block;
  padding: 12px 20px 12px 36px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}
.nav-drawer-sub a:hover {
  color: #9A1010;
  background: #fdf2f2;
}

body.nav-drawer-open {
  overflow: hidden;
}
/* ========== 公共模块：移动端导航抽屉 结束 ========== */

/* ========== 公共模块：主要内容区 开始 ========== */
.main-content {
  padding: 0;
}
/* ========== 公共模块：主要内容区 结束 ========== */

/* ========== 公共模块：新闻板块（轮播+列表） 开始 ========== */
.top-banner .news-hero-row {
  margin-top: 48px;
  margin-bottom: 0;
}
.news-hero-row {
  display: flex;
  height: 470px;
  background: #fff;
}
.news-hero-carousel {
  flex: 0 0 58%;
  height: 470px;
  position: relative;
  overflow: hidden;
}
.news-hero-carousel .swiper-container {
  width: 100%;
  height: 100%;
}
.news-hero-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-hero-carousel .carousel-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 115px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  padding: 15px 25px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 10;
}
.news-hero-carousel .carousel-caption-overlay .caption-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  width: 80%;
}
.news-hero-carousel .carousel-caption-overlay .caption-title:hover {
  color: #ffcccb;
}
.news-hero-carousel .swiper-pagination {
  position: absolute;
  right: 25px;
  bottom: 15px;
  width: auto;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  z-index: 11;
}
.news-hero-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 1;
  margin: 0;
  border-radius: 4px;
}
.news-hero-carousel .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  opacity: 1;
  background: #fff;
}
/* ========== 公共模块：新闻板块-右侧列表 开始 ========== */
.news-hero-list {
  flex: 1;
  padding: 25px 25px 25px 40px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.list-header .list-name {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 2px solid #9A1010;
}
.list-header .list-name::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(2026zjsdj_ztjs.png) center center no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.list-header .list-name .title-accent {
  color: #9A1010;
  padding-left: 10px;
}
.list-header .list-more {
  font-size: 16px;
  color: #9A1010;
}
.list-header .list-more:hover {
  color: #cc1515;
}

.list-body {
  flex: 1;
  overflow: hidden;
}
.hero-news-first {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed #e0e0e0;
}
.hero-news-first .hero-title {
  font-size: 18px;
  font-weight: 700;
  color: #444;
  display: block;
  margin-bottom: 6px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.hero-news-first .hero-title:hover {
  color: #9A1010;
  transform: translateX(3px);
}
.hero-news-first .hero-summary {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.hero-news-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #9A1010;
  margin-right: 10px;
  flex-shrink: 0;
}
.hero-news-item .hero-title {
  font-size: 18px;
  font-weight: 400;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  margin-right: 16px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.hero-news-item .hero-title:hover {
  color: #9A1010;
  transform: translateX(3px);
}
.hero-news-item .hero-date {
  font-size: 14px;
  color: #9A1010;
  white-space: nowrap;
  flex-shrink: 0;
}
/* ========== 公共模块：新闻板块-右侧列表 结束 ========== */
/* ========== 公共模块：新闻板块（轮播+列表） 结束 ========== */

/* ========== 公共模块：支部动态+学习心得 开始 ========== */
.section-duo-row {
  width: 100%;
  padding: 48px 0 32px;
  background: url('2026zjsdj_bg02.png') center center no-repeat;
  background-size: cover;
  margin-bottom: 48px;
}
.section-duo-inner {
  display: flex;
  gap: 48px;
}
.section-duo-left,
.section-duo-right {
  flex: 1;
  min-width: 0;
}
.duo-first {
  display: flex;
  gap: 20px;
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.duo-first > a {
  overflow: hidden;
  flex-shrink: 0;
}
.duo-first-img {
  width: 305px;
  height: 185px;
  object-fit: cover;
  flex-shrink: 0;
}
.duo-first-text {
  flex: 1;
  min-width: 0;
}
.duo-first-title {
  font-size: 18px;
  font-weight: 700;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  margin-bottom: 6px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.duo-first-title:hover {
  color: #9A1010;
  transform: translateX(3px);
}
.duo-first-summary {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ========== 公共模块：支部动态+学习心得 结束 ========== */

/* ========== 公共模块：栏目标题 开始 ========== */
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #9A1010;
  border-bottom: 3px solid #9A1010;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
/* ========== 公共模块：栏目标题 结束 ========== */

/* ========== 公共模块：新闻列表 开始 ========== */
.news-list {
  margin-bottom: 32px;
}
.news-list .news-item {
  border-bottom: 1px dashed #ddd;
  padding: 10px 0;
}
.news-list .news-item:last-child {
  border-bottom: none;
}
.news-list .item-date {
  color: #999;
  float: right;
  margin-left: 12px;
}
.news-list .item-title {
  font-size: 18px;
  color: #444;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list .item-title:hover {
  color: #9A1010;
}
.news-list .item-summary {
  color: #666;
  margin: 4px 0 0;
  line-height: 1.6;
}
.news-list .news-item-top {
  padding: 0 0 14px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #ddd;
}
.news-list .news-item-top .item-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 10px;
}
.news-list .news-item-top .item-title {
  font-size: 18px;
  font-weight: 600;
}
/* ========== 公共模块：新闻列表 结束 ========== */

/* ========== 公共模块：三栏信息板块 开始 ========== */
.section-triple-row {
  width: 100%;
  padding: 0 0 32px;
  margin-bottom: 48px;
}
.section-triple-inner {
  display: flex;
  gap: 48px;
}
.section-triple-col {
  flex: 1;
  min-width: 0;
}
/* ========== 公共模块：三栏信息板块 结束 ========== */

/* ========== 公共模块：相关链接板块 开始 ========== */
.section-links-row {
  width: 100%;
  background: #F9F9F9;
  padding: 45px 0 110px;
}
.links-grid {
  display: flex;
  gap: 40px;
}
.links-grid a {
  flex: 1 1 calc(25% - 30px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}
.links-grid a:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.links-grid a img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}
/* ========== 公共模块：相关链接板块 结束 ========== */

/* ========== 公共模块：列表页 开始 ========== */
.top-banner .list-page-wrap {
  margin-top: 48px;
}
.list-page-wrap {
  background: #fff;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.16);
  padding: 30px 40px;
}

.list-page-top-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #DDDDDD;
  padding: 0 0 16px;
  position: relative;
  background: url(2026zjsdj_bg04.png) bottom left no-repeat;
}
.page-breadcrumb {
  color: #666;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.page-breadcrumb a {
  color: #666;
}
.page-breadcrumb a:hover {
  color: #9A1010;
}
.breadcrumb-sep {
  margin: 0 8px;
  color: #999;
}

.list-page-title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
}

.list-page-title-bg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60%;
  height: auto;
  z-index: 1;
}
.list-page-title-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.list-page-items {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.list-page-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed #e0e0e0;
}
.list-page-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #9A1010;
  margin-right: 12px;
  flex-shrink: 0;
  position: relative;
  top: -2px;
}
.list-page-link {
  flex: 1;
  font-size: 18px;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}
.list-page-link:hover {
  color: #9A1010;
  transform: translateX(3px);
}
.list-page-date {
  font-size: 15px;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 24px;
}

.list-page-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 32px 0 16px;
}
.list-page-pagination a,
.list-page-pagination .page-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 15px;
  color: #666;
  border: 1px solid #ddd;
  background: #fff;
  transition: all 0.25s ease;
}
.list-page-pagination a:hover {
  color: #fff;
  background: #9A1010;
  border-color: #9A1010;
}
.list-page-pagination .page-current {
  color: #fff;
  background: #9A1010;
  border-color: #9A1010;
}
.list-page-pagination .page-next {
  padding: 0 16px;
}
/* ========== 公共模块：列表页 结束 ========== */

/* ========== 公共模块：详情页 开始 ========== */
.detail-page-wrap {
  padding: 30px 50px 40px;
}

.detail-headline {
  font-size: 28px;
  font-weight: 700;
  color: #9A1010;
  line-height: 1.46;
  text-align: center;
  margin: 24px 0 16px;
}

.detail-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 12px 0 20px;
  border-bottom: 1px dashed #e0e0e0;
  color: #999;
  font-size: 15px;
}

.detail-date {
  color: #666;
}

.detail-fontsize {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fs-label {
  color: #999;
}
.fs-btn {
  display: inline;
  font-size: 15px;
  color: #999;
  transition: color 0.2s ease;
}
.fs-btn:hover,
.fs-btn.active {
  color: #9A1010;
}

.detail-content {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  padding: 24px 0 16px;
  text-align: justify;
}
.detail-content p {
  text-indent: 2em;
  margin-bottom: 16px;
}

.detail-image {
  padding: 16px 0 8px;
  text-align: center;
}
.detail-image figure {
  margin: 0;
}
.detail-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.detail-image figcaption {
  font-size: 15px;
  color: #999;
  margin-top: 8px;
}

.detail-credit {
  font-size: 15px;
  color: #999;
  padding: 12px 0 24px;
  text-align: right;
  border-bottom: 1px dashed #e0e0e0;
}

.detail-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 12px;
}
.detail-pager a {
  font-size: 16px;
  color: #555;
  transition: color 0.25s ease;
  max-width: 48%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-pager a:hover {
  color: #9A1010;
}
.detail-pager-label {
  font-weight: 700;
}

.detail-attachment {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed #e0e0e0;
}

.detail-section-title {
  font-size: 17px;
  font-weight: 700;
  color: #444;
  margin: 0 0 12px;
}

.attachment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.attachment-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed #f0f0f0;
}

.attachment-item:last-child {
  border-bottom: none;
}

.attachment-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%239A1010" d="M9.293 0H4a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V4.707L9.293 0zM9 1.5L12.5 5H9V1.5zM3 2a1 1 0 011-1h4v4.5A1.5 1.5 0 009.5 7H14v7a1 1 0 01-1 1H4a1 1 0 01-1-1V2z"/></svg>') center center no-repeat;
  background-size: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.attachment-link {
  font-size: 16px;
  color: #555;
  transition: color 0.25s ease;
}

.attachment-link:hover {
  color: #9A1010;
}

.attachment-size {
  font-size: 14px;
  color: #999;
  white-space: nowrap;
}
/* ========== 公共模块：详情页 结束 ========== */

/* ========== 公共模块：页脚 开始 ========== */
.footer {
  width: 100%;
  background: url('2026zjsdj_bg03.png') center center no-repeat;
  background-size: cover;
  padding: 95px 0 100px;
}
.footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 18px;
  align-items: center;
}
.footer .footer-links a {
  overflow: hidden;
  display: inline-block;
}
.footer .footer-links img {
  height: 40px;
}
.footer .copyright {
  text-align: center;
  color: #fff;
  font-size: 18px;
}
.footer .copyright a{
  color: #fff;
}
/* ========== 公共模块：页脚 结束 ========== */
