* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.hide {
  display: none !important;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

header#site-header,
footer#site-footer {
  flex: 0 0 auto;
}
footer#site-footer {
  margin-top: auto;
  background: #0c3b86;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover,
.container a:hover {
  text-decoration: none !important;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin: 50px 0;
}

.section-title h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #0c3b86;
}

/* 头部区域 */
.topbar {
  background: #fff;
  color: #333;
  padding: 12px 20px;
}

.brand {
  display: none;
}

.navbar {
  background: #114dac;
  position: relative;
  z-index: 20;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-block .logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.brand-text .title {
  font-size: 20px;
  font-weight: 700;
  color: #0c3b86;
}

.brand-text .sub {
  font-size: 12px;
  color: #666;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-btn {
  background: #ff003e97;
  color: #fff;
  font-weight: 700;
}

.badge-tag {
  background: #f6c44f;
  color: #fff;
  border-radius: 18px;
  padding: 6px 10px;
  font-size: 13px;
  pointer: cursor;
  font-weight: bold;
}

.qrcode-box {
  position: absolute;
  z-index: 99;
  top: 70px;
  max-width: 420px;
  background-color: aliceblue;
  display: none;
}

.badge-tag:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
  background: url("../assets/image/wxsys.png") center/cover no-repeat;
}

.nav-list {
  width: 100%;
  list-style: none;
  display: flex;
  gap: 16px; /* 减小间距，给文字更多空间 */
  margin: 0;
  padding: 12px 2px;
  align-items: center;
}

.nav-item {
  position: relative;
  color: #fff;
  flex: 1 0 auto; /* flex-grow:1, flex-shrink:0, flex-basis:auto */
  font-size: 19px;
  white-space: nowrap;
}

/* 如果文字实在太多，让部分导航项可以缩小 */
.nav-item:not(.nav-title) {
  flex-shrink: 1;
  min-width: 60px; /* 设置最小宽度 */
}
.nav-item .nav-title{
  font-weight: bold;
}
.nav-link {
  color: #fff;
  padding: 8px 6px;
  display: flex;
  align-items: center;
}
.navbar .nav-link,
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link:active,
.navbar .nav-link:visited {
  text-decoration: none !important;
}
.navbar .nav-link:hover {
  color: #f6efe8 !important;
}
.navbar .submenu .nav-link:hover {
  color: #114dac !important;
}
.nav-item .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  border-radius: 4px;
  background: url("../assets/icon-placeholder.svg") center/cover no-repeat;
}

.nav-item .submenu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  color: #333;
  border: 1px solid #e5ecf5;
  border-radius: 6px;
  min-width: 180px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 10;
}

.nav-item.open .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 8px 12px;
  color: #114dac;
}

.submenu a:hover {
  background: #f2f5f9;
  color: #4a79d1 !important;
}

/* 底部区域 */
.footer-wrapper {
  background: #0c3b86;
  color: #fff;
  margin-top: 40px;
}

.footer-top-links {
  display: flex;
  justify-content: center;
  gap: 96px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}
.footer-top-links a {
  color: #fff;
  font-weight: 700;
}
.footer-top-links a:hover {
  opacity: 0.85;
}

.footer-sep {
  display: none;
}

.footer-info .box {
  text-align: center;
  color: #fff;
  align-items: center;
}
.footer-info {
  color: #fff;
  padding: 20px 0 10px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  padding: 24px 20px;
}

.footer-wrapper .logo {
  background: #f2f5f9;
  border-radius: 8px;
}

.footer-wrapper .icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  margin-right: 8px;
}

.copyright {
  text-align: center;
  padding: 12px 20px;
  background: #08306a;
  opacity: 0.9;
}



/* 顶部轮播图 */
.banner-section {
  margin-top: 0;
}

.banner-wrapper {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.banner-slides {
  display: flex;
  transition: transform 0.45s ease;
}

.banner-slide {
  min-width: 100%;
  position: relative;
}

.banner-slide .image {
  /* 使用 aspect-ratio 或固定宽高比 */
  aspect-ratio: 16 / 5; /* 适合企业官网的宽高比 */
  overflow: hidden;
}

.banner-slide .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.banner-slide .caption {
  position: absolute;
  left: 48px;
  bottom: 48px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.banner-slide .caption h2 {
  margin: 0 0 8px;
  font-size: 36px;
}

.banner-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  transform: translateY(-50%);
}

.banner-controls .btn {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.banner-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.banner-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: #ffffff;
  opacity: 0.6;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.banner-dot.active {
  opacity: 1;
  background: #ffd34d;
}

/* 新闻头条 - 容器设置 */
.ticker-section .ticker {
  height: auto;
  aspect-ratio: 1024 / 154;
  display: flex;
  align-items: center;
  padding: 16px 20px 16px 0; /* 右侧保留内边距，左侧交给背景图 */
  border-radius: 12px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  min-height: 70px;
}

/* 文字内容容器 - 固定在右侧60%区域 */
.headline-row {
  display: flex;
  align-items: center;
  width: 70%; /* 只占容器宽度的60% */
  margin-left: auto; /* 靠右对齐 */
  padding: 8px 16px;
  border-radius: 8px;
  min-height: 50px;
  position: relative;
  z-index: 2;
}

/* 左侧背景图区域 - 占左侧40% */
.ticker-section .ticker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hl-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: #114dac;
  margin-right: 10px;
}

.hl-title {
  flex: 1;
  color: #666;
  font-size: 25px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hl-date {
  color: #999;
  font-size: 14px;
  margin-left: 12px;
}

/* 新闻选项卡 */
.news-tabs .tabs-header {
  display: flex;
  gap: 24px;
  margin: 8px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6edf6;
  align-items: center;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #9aa7bf;
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.tab-btn.active {
  color: #222;
}

/* Active tab in news-tabs: force title spans to gray */
.news-tabs .tabs-header .tab-btn:not(.active) > span {
  color: #9aa7bf !important;
}

.tabs-body .tab-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.hidden {
  display: none;
}

.news-card {
  border: 1px solid #e6edf6;
  border-radius: 10px;
  overflow: hidden;
}

.news-card .thumb {
  height: 120px;
}

.news-card .info {
  padding: 10px;
}

.news-card .title {
  font-size: 16px;
  margin: 0 0 8px;
  color: #0c3b86;
}

.news-card .meta {
  font-size: 12px;
  color: #666;
}

/* 党建轮播 */
.party-section {
  background: transparent;
  padding: 0;
}

.hero-section {
  margin-top: 8px;
  margin-bottom: 18px;
}

.party-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.party-header h2 {
  margin: 4px 0 12px;
}

.party-header {
  padding-bottom: 8px;
  border-bottom: 1px solid #e6edf6;
}
.party-header {
  margin-bottom: 20px;
}

.party-header .blue {
  color: #0c3b86;
  font-weight: 700;
}

.party-header .more {
  margin-left: auto;
  color: #9aa7bf;
}

.party-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.party-hero-track {
  display: flex;
  transition: transform 0.5s ease;
}

.party-hero-slide {
  min-width: 100%;
}

.party-hero-slide .img {
  /*height: 470px;*/
}

.party-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.party-hero-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: #ffffff;
  opacity: 0.6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.party-hero-dot.active {
  opacity: 1;
}

.history-tag {
  position: absolute;
  right: 40px;
  top: 80%;
  transform: translateY(-50%);
  background: #f6c44f;
  color: #fff;
  border-radius: 18px;
  padding: 6px 12px;
}

/* .hero-indicator removed */

.party-header h2 {
  color: #d62323;
  margin: 4px 0 12px;
}

.party-stack {
  position: relative;
  height: 360px;
}

.party-stack-inner {
  position: relative;
  height: 100%;
}

.stack-card {
  position: absolute;
  top: 0;
  width: 260px;
  height: 100%;
  border: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(12, 59, 134, 0.08);
  display: flex;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease,
    left 0.35s ease;
}

.stack-card .half-image {
  width: 100%;
  height: 100%;
}
.stack-card .half-image {
  transition: background-position 0.8s ease;
}
.stack-card:hover .half-image {
  background-position: center 40%;
}

.stack-card .half-text {
  display: none;
  width: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: #114dac;
  background: #fff;
}

.stack-card.is-center {
  left: 50%;
  width: 624px;
  transform: translateX(-50%) scale(1.06);
  z-index: 3;
  box-shadow: none;
}

.stack-card.is-center .half-image {
  width: 260px;
  border-radius: 16px;
}

.stack-card.is-left {
  left: calc(50% - 482px);
  transform: translateX(-50%) scale(0.92);
  z-index: 2;
}

.stack-card.is-right {
  left: calc(50% + 482px);
  transform: translateX(-50%) scale(0.92);
  z-index: 2;
}

.stack-card.is-center .half-text {
  display: block;
  position: absolute;
  left: calc(260px + 16px);
  width: calc(100% - 260px - 32px);
  height: 85%;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px 16px;
  opacity: 1;
  pointer-events: auto;
  background: #f3f3f3;
  border-radius: 16px;
}

.stack-card .half-text .title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.stack-card .half-text ul {
  margin: 0;
  padding-left: 18px;
  color: #667;
}

.stack-card .pill {
  margin-top: 8px;
  font-size: 13px;
  display: inline-block;
  background: #fff;
  color: #114dac;
  border: 1px solid #e6edf6;
  border-radius: 18px;
  padding: 3px 12px;
}

.stack-card .pill:after {
  content: "→";
  margin-left: 8px;
  color: #114dac;
}

.party-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
  transform: translateY(-50%);
}

.party-controls .btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d8e4fb;
  color: #114dac;
  box-shadow: 0 4px 10px rgba(12, 59, 134, 0.1);
  cursor: pointer;
}

.party-controls .btn:hover {
  background: #eef4ff;
}

.party-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.party-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d62323;
  opacity: 0.4;
}

.party-dot.active {
  opacity: 1;
}


/* 产业板块 */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* 主轴居中，使子项整体水平居中 */
  gap: 0;  /* 保持原有 gap: 0 以确保原始的边距效果 */
}

.industry-card {
  position: relative;
  border: none;
  overflow: hidden;
  cursor: pointer;
  flex: 1;  /* 默认 flex-grow: 1，使卡片等宽填充 */
  min-width: 200px; /* 可选：设置最小宽度，防止卡片过窄 */
}
.industry-card .thumb {
  height: 560px;
  /* background: url("https://picsum.photos/1200/800?random") center/cover
    no-repeat; */
}
/* 当产业板块数量少于4个时，卡片不拉伸，根据内容宽度自动调整并居中 */
@media (min-width: 769px) {
  .industries-grid:has(.industry-card:nth-last-child(1):first-child),
  .industries-grid:has(.industry-card:nth-last-child(2):first-child),
  .industries-grid:has(.industry-card:nth-last-child(3):first-child) {
    justify-content: center;
  }

  .industries-grid:has(.industry-card:nth-last-child(1):first-child) .industry-card,
  .industries-grid:has(.industry-card:nth-last-child(2):first-child) .industry-card,
  .industries-grid:has(.industry-card:nth-last-child(3):first-child) .industry-card {
    flex: 0 0 auto;  /* 禁止拉伸，使用内容宽度 */
    width: calc(25% - 0px);  /* 保持与4个时相同的卡片宽度 */
    max-width: 320px; /* 可选：限制最大宽度 */
  }
}
.industry-card .title-on {
  position: absolute;
  left: 20px;
  top: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.industry-card .ind-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #114dac;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.industry-card:hover .ind-overlay {
  opacity: 0.95;
}

.industry-card .ind-overlay .line {
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 8px 0;
}

.industry-card .ind-overlay .desc {
  opacity: 0.92;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.industry-card .ind-overlay .more {
  margin-top: 12px;
  display: inline-block;
  background: #fff;
  color: #114dac;
  border-radius: 18px;
  padding: 8px 12px;
}

.industry-card .info {
  padding: 10px;
}

.industry-card .more {
  color: #114dac;
  font-size: 14px;
}

/* 视频模块 */
.video-section .tabs-header,
.video-single-section .tabs-header {
  display: flex;
  gap: 24px;
  margin: 8px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6edf6;
  align-items: center;
}
.video-section{
  margin: 80px 0;
}
.video-single-section{
  margin: 80px 0;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.video-card {
  position: relative;
  border: 1px solid #e6edf6;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.video-card .poster {
  height: 180px;
}

.video-card .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.video-card .play:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 18px 0 0 22px;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.v-title {
  font-weight: 700;
  color: #222;
  font-size: 30px;
  padding-left: 15px;
  padding-top: 20px;
}

.v-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  margin-top: 6px;
  padding-left: 15px;
}

.v-scan {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #114dac;
  font-size: 12px;
}

.v-desc {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  padding-left: 15px;
}

.v-scan-bar {
  background: #003e97;
  display: flex;
  line-height: 51px;
  color: #fff;
  padding: 20px;
  justify-content: end;
}

.video-left .v-scan-bar .v-qr {
  margin-left: auto;
  margin-right: 6px;
}

/* 新闻动态 卡片*/
.dynamic-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.dynamic-header .dim {
  color: #cfd7e6;
}

.dyn-prev,
.dyn-next {
  background: #eaf1fb;
  border: 1px solid #d8e4fb;
  color: #114dac;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.dyn-tabs {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.dyn-tabs span {
  color: #9aa7bf;
}

.dyn-tabs span.active {
  color: #222;
  font-weight: 700;
}

.dyn-tabs span {
  min-width: 120px;
  text-align: center;
}

.dyn-tabs span.empty {
  min-width: 120px;
  color: transparent;
}

.dyn-tabs .tab-ellipsis {
  color: #cfd7e6;
  min-width: auto;
  padding: 0 8px;
}

.dyn-tabs .tab-btn {
  background: #eaf1fb;
  border: 1px solid #d8e4fb;
  color: #114dac;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.dynamic-window {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f6f8fc;
  padding: 12px;
}

.dynamic-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  transition: transform 0.4s ease;
}

.slant-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: 16px;
  width: 100%;
  aspect-ratio: 1/1;
}

.slant-card.blue {
  background: transparent;
  color: #fff;
}

.slant-card.white {
  background: transparent;
  color: #222;
  border: 1px solid #e6edf6;
}

.slant-card:before {
  content: none;
}

.slant-card.white:before {
  content: none;
}

.dynamic-window .dim {
  position: absolute;
  top: 10px;
  color: #cfd7e6;
}

.dynamic-window .dim {
  display: none;
}

.dynamic-window .dim.left {
  left: 10px;
}

.dynamic-window .dim.right {
  right: 10px;
}

.dynamic-pager {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.dynamic-pager .pager-btn {
  background: #eaf1fb;
  border: 1px solid #d8e4fb;
  color: #114dac;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/* 新闻动态  文本 */

/* News tabs active underline */
.news-tabs-dynamic .tab-btn {
  background: transparent;
  border: none;
  /*color: #9aa7bf;*/
  font-size: 16px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.news-tabs-dynamic .tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: #003e97;
  border-radius: 0;
  z-index: 1;
}
.news-tabs-dynamic .tabs-header {
  display: flex;
  gap: 24px;
  margin: 8px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6edf6;
  align-items: center;
}
.news-tabs-dynamic .news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.section-title .title-tri {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #f4b000;
  vertical-align: middle;
}

.tabs-body .tab-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.hidden {
  display: none;
}

.news-card {
  border: 1px solid #e6edf6;
  border-radius: 10px;
  overflow: hidden;
}

.news-card .thumb {
  height: 120px;
}

.news-card .info {
  padding: 10px;
}

.news-card .title {
  font-size: 16px;
  margin: 0 0 8px;
  color: #0c3b86;
}

.news-card .meta {
  font-size: 12px;
  color: #666;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 16px;

  background: #f1f1f1;
  padding: 26px 16px;
}
.news-item:hover {
  background: #114dac;
  color: #fff;
}
.news-item .date-box {
  line-height: 1.1;
  min-width: 100px;
  text-align: left;
  color: #666;
}
.news-item .date-box .md {
  font-size: 24px;
  font-weight: 700;
}
.news-item .date-box .yy {
  font-size: 15px;
}
.news-item .title {
  flex: 1;
  font-weight: 700;
  color: #333;
}
.news-item:hover .title {
  color: #fff;
}
.news-item:hover .date-box {
  color: #fff;
}

/* 地矿摄影 */
.gallery-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  border: 1px solid #e6edf6;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(12, 59, 134, 0.06);
}

.gallery-card .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.gallery-card .play:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 24px 0 0 28px;
  border-left: 22px solid #114dac;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.gallery-thumb {
  aspect-ratio: 3 / 2;
  width: 100%;
}
.wrj-gallery-thumb{
  height: 275px;
}
.gallery-title {
  padding: 10px;
  color: #114dac;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}

/* Swiper 大轮播左右按钮：白色箭头 + 圆形半透明底 */
.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 50% 50% !important;
}
.swiper-button-prev {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='15,4 7,12 15,20' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
}
.swiper-button-next {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='9,4 17,12 9,20' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
}

/* Swiper 分页小圆点改长条，浅白色（仅首页顶部大轮播） */
.swiper-container-banner .swiper-pagination-bullet,
.swiper-containers .swiper-pagination-bullet {
  width: 20px !important;
  height: 4px !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  opacity: 1 !important;
}
.swiper-container-banner .swiper-pagination-bullet-active,
.swiper-containers .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.95) !important;
}
.swiper-container-banner.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-containers.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px !important;
}
/* 更多/查看更多 统一灰色 */
.txt-more,
.more-link,
.video-more,
.video-single-more,
.news-updates-more {
  color: #9aa7bf !important;
}
.txt-more:hover,
.more-link:hover,
.video-more:hover,
.video-single-more:hover,
.news-updates-more:hover {
  color: #9aa7bf !important;
}

/* 友情链接 */
.friend-section .friends {
  display: flex;
  align-items: center;
  gap: 12px;
}

.friend-section .friends.triple {
  margin-top: 8px;
}

.friend-box {
  flex: 1;
  background: #f6f8fc;
  border: 1px solid #e6edf6;
  border-radius: 12px;
  padding: 10px;
}

.friend-box select {
  width: 100%;
  height: 36px;
  border: none;
  background: #f6f8fc;
}

/* 面包屑与列表页 */
.breadcrumb {
  color: #666;
  margin: 8px 0;
}

.page-title {
  margin: 8px 0 16px;
  color: #0c3b86;
}

.list-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.list-side {
  background: #f6f8fc;
  border: 1px solid #e6edf6;
  border-radius: 12px;
  padding: 12px;
}

.side-title {
  font-weight: 700;
  color: #0c3b86;
  margin-bottom: 8px;
}

.side-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-item {
  padding: 10px 12px;
  border-radius: 999px 0 0 999px;
  background: #eef3fb;
  color: #222;
  cursor: pointer;
}

.side-item.active {
  background: #114dac;
  color: #fff;
  border-radius: 999px 0 0 999px;
}

.list-main {
  min-height: 300px;
}

.text-list .row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-bottom: 1px solid #eef3fb;
}

.date-box {
  width: 80px;
  text-align: center;
  border-radius: 8px;
  color: #114dac;
  margin: 0 20px;
  padding: 5px;
}

.date-box .day {
  font-size: 20px;
  font-weight: 700;
}

.date-box .month {
  font-size: 12px;
  color: #667;
}

.text-list .title {
  color: #0c3b86;
}

.video-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-item {
  position: relative;
  border: 1px solid #e6edf6;
  border-radius: 12px;
  overflow: hidden;
}

.video-item .thumb {
  height: 140px;
}

.video-item .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}

.video-item .play:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 16px 0 0 18px;
  border-left: 16px solid #114dac;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
}

.pagination .page {
  padding: 6px 10px;
  border: 1px solid #e6edf6;
  border-radius: 8px;
  cursor: pointer;
}

.pagination .page.active {
  background: #114dac;
  color: #fff;
}

/* Detail */
.detail-article {
  border: 1px solid #e6edf6;
  border-radius: 12px;
  padding: 16px;
}

.article-title {
  margin: 8px 0;
  color: #0c3b86;
}

.article-meta {
  color: #666;
  font-size: 13px;
  margin-bottom: 8px;
}

.article-share .icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.article-content p {
  line-height: 1.8;
  margin: 10px 0;
}

.article-content .img {
  height: 240px;
  margin: 12px 0;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

/* Modal */
.cms-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.cms-modal.hidden {
  display: none;
}

.cms-modal-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.cms-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1024px;
  max-width: 90%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.cms-modal-dialog video {
  display: block;
  width: 100%;
  height: 60vh;
  max-height: 720px;
  background: #000;
  object-fit: contain;
}

.cms-modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  border: none;
  background: #114dac;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2;
}

.media {
  align-items: center;
}

@media (max-width: 1280px) {
  .tabs-body .tab-panel {
    grid-template-columns: 1fr 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-list {
    flex-wrap: wrap;
  }

  .tabs-body .tab-panel {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .list-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced header */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-bar {
  display: flex;
  gap: 8px;
}

.search-input {
  height: 36px;
  border-radius: 18px;
  border: 1px solid #d8e4fb;
  padding: 0 12px;
  width: 300px;
  text-align: left;
  color: #ccc;
}

.search-btn {
  background: #003e97;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 18px;
  padding: 0 16px;
  height: 36px;
  cursor: pointer;
}

/* News split layout */
.more-link {
  margin-left: auto;
  color: #114dac;
}

.news-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.news-hero {
  position: relative;
  border: 1px solid #e6edf6;
  border-radius: 12px;
  overflow: hidden;
  /* background-image: url("../assets/image/newsHeadline.png"); */
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 320px auto;
}

.news-hero-track {
  display: flex;
  transition: transform 0.45s ease;
}

.news-hero-slide {
  min-width: 100%;
}

.news-hero-slide .thumb {
  height: 280px;
}

.news-hero-slide .caption {
  padding: 8px;
  color: #666;
}
.news-hero-slide .caption p{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;  /* 强制不换行 */
}
.news-hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
  transform: translateY(-50%);
}

.news-hero-controls .btn {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.news-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.news-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bbb;
}

.news-hero-dot.active {
  background: #114dac;
}

.news-right .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px dashed #e6edf6;
}

.news-right .item:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfd7e6;
  margin-right: 8px;
  align-self: center;
}

.news-right .item .title {
  color: #222;
  flex: 1;
}

.news-right .item .date {
  color: #999;
  margin-left: auto;
}

.news-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.news-panel {
  border: 1px solid #e6edf6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(12, 59, 134, 0.06);
  overflow: hidden;
}

.news-panel .panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.news-panel .panel-title {
  font-weight: 700;
  color: #0c3b86;
}

.news-panel .panel-more {
  margin-left: auto;
  color: #9aa7bf;
}

.video-more,
.video-single-more {
  color: #9aa7bf;
  margin-left: auto;
}

.news-panel .panel-body {
  padding: 0 12px 12px;
  height: 240px; /* 限制高度 */
  overflow: hidden;
}

.text-list-home .news-row {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid #eef3fb;
}

.text-list-home .row-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-list-home .vline {
  display: inline-block;
  width: 4px;
  height: 16px;
  background: #114dac;
  border-radius: 2px;
}

.text-list-home .row-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #222;
}

.text-list-home .date {
  font-size: 15px;
  color: #999;
  margin-left: 12px;
}

.video-panel .video-hero {
  position: relative;
  border: 1px solid #e6edf6;
  border-radius: 10px;
  overflow: hidden;
}

.video-panel .video-hero .thumb {

}

.video-single-section .video-panel .video-hero .play,
.video-section .video-panel .video-hero .play
{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.news-blocks .video-panel .video-hero .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.news-blocks .video-panel .video-hero .play:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 17px 0 0 22px;
  border-left: 18px solid #114dac;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-panel .video-desc {
  padding: 8px 2px 0;
  color: #444;
}

.video-panel .video-date {
  font-size: 12px;
  color: #999;
}

/* Party banner */
.party-banner {
  background: #d62323;
}

/* Video new layout */
.video-split,
.video-single-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1px;
  padding-top: 50px;
}
.video-split .video-right{
  padding-left: 20px;
}

.video-left {
  border: 1px solid #e6edf6;
  border-radius: 12px;
  overflow: hidden;
}
.video-right{

}
.video-left .poster {
  height: 400px;
  position: relative;
}

.video-left .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.video-left .play:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 6px 0 0 9px;
  border-left: 22px solid #114dac;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.video-left .info {
  padding: 12px;
  padding-left: 15px;
}

.video-left .v-title {
  font-weight: 700;
  color: #222;
  font-size: 18px;
  padding-left: 15px;
}

.video-left .v-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  margin-top: 6px;
  padding-left: 15px;
}
.video-right .info {
  position: relative;
  height: 400px;
}
.video-right .title {
  font-size: 35px;
}
.video-right .v-scan-bar {
  position: absolute;
  bottom: 35px;
  width: 100%;
}
.video-left .v-scan {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #114dac;
  font-size: 12px;
}

.video-left .v-qr {
  width: 52px;
  height: 52px;
  border: 1px solid #e6edf6;
  border-radius: 6px;
}

.video-left .v-desc {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-right .vitem {
  display: flex;
  gap: 10px;
  border-bottom: 1px dashed #e6edf6;
  padding: 8px 0;
  cursor: pointer;
}

.video-right .v-desc {
  font-size: 17px;
  color: #8a8a8a;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 7;      /* 显示的行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-indent: 2em;
}

.video-right .vthumb {
  width: 120px;
  height: 70px;
}

/* Slant cards */
.slant-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.slant-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: 16px;
  background: #eaf1fb;
  color: #114dac;
}

.slant-card.dark {
  background: #114dac;
  color: #fff;
}

.slant-card .date {
  font-weight: 700;
}

.slant-card .content {
  margin-top: 8px;
}

.slant-card .more {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: #fff;
}

/* Footer links */
.footer-top-links {
  display: flex;
  gap: 20px;
  padding: 12px 0;
}

.industries-section .section-title {
  padding-bottom: 8px;
  border-bottom: 1px solid #e6edf6;
}

.card-news-section .section-title {
  padding-bottom: 8px;
  border-bottom: 1px solid #e6edf6;
}

.gallery-section .section-title {
  padding-bottom: 8px;
  border-bottom: 1px solid #e6edf6;
}

.friend-section .section-title {
  padding-bottom: 8px;
  border-bottom: 1px solid #e6edf6;
}

.card-news-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #f2f5f9;
  padding: 16px 0;
}

.card-news-section .container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}
.slant-card .date-pill {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #000;
  line-height: 1.1;
}

.slant-card .date-pill .md {
  font-size: 22px;
  font-weight: 700;
}

.slant-card .date-pill .yy {
  font-size: 12px;
}
.slant-card .content {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 50%;
  height: 50%;
  overflow: hidden;
}

.slant-card.blue .content {
  color: #fff;
}
.slant-card.white .content {
  color: #333;
}

.slant-card .title-box {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 55%;
  height: 30%;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slant-card.blue .title-box {
  color: #fff;
}
.slant-card.white .title-box {
  color: #333;
}

.slant-card .more {
  position: absolute;
  right: 12px;
  bottom: 12px;
}

.slant-card .more::before {
  content: "→";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: 6px;
  font-weight: 700;
}

.slant-card.white .more {
  color: #333;
}
.slant-card.blue .more {
  color: #fff;
}



.news-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;  /* 面板之间的间距 */
}

.news-blocks .news-panel {
  flex: 1;  /* 平均分配剩余空间 */
  min-width: 0;  /* 防止内容溢出 */
}

/* 当只有1个面板时 */
.news-blocks.cols-1 .news-panel {
  flex: 1;
}

/* 当有2个面板时 */
.news-blocks.cols-2 .news-panel {
  flex: 1;
}

/* 当有3个面板时 */
.news-blocks.cols-3 .news-panel {
  flex: 1;
}

/* 响应式：小屏幕时自动换行 */
@media (max-width: 768px) {
  .news-blocks .news-panel {
    min-width: 100%;  /* 移动端占满整行 */
  }
}
/* 新闻面板基础样式 */
.news-panel {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.news-panel:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

/* 面板头部样式 */
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8f4ff;
}

.panel-title {
  font-size: 18px;
  font-weight: 600;
  color: #1890ff;
  position: relative;
}

/*.panel-title::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  left: 0;*/
/*  bottom: -14px;*/
/*  width: 40px;*/
/*  height: 2px;*/
/*  background: #1890ff;*/
/*}*/

.panel-more {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.panel-more:hover {
  color: #1890ff;
}

/* 新闻列表项 */
.news-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: all 0.3s;
}

.news-row:hover {
  background: #f9f9f9;
  padding-left: 8px;
  border-radius: 4px;
}

.news-row:hover .row-title {
  color: #1890ff;
}

.row-head {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
}

.vline {
  display: inline-block;
  width: 3px;
  height: 14px;
  background: #1890ff;
  margin-right: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}

.row-title {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.date {
  font-size: 17px;
  color: #999;
  white-space: nowrap;
  margin-left: 12px;
  flex-shrink: 0;
}

/* 视频面板样式 */
.video-panel .panel-body {
  padding: 0;
}

.video-hero {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}

.thumb {
  width: 100%;
  height: 100%;
}

.video-hero:hover .play {
  transform: scale(1.1);
}

.video-section .play, .video-single-section .play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

/*.play::after {*/
/*  content: '';*/
/*  width: 0;*/
/*  height: 0;*/
/*  border-style: solid;*/
/*  border-width: 12px 0 12px 20px;*/
/*  border-color: transparent transparent transparent #1890ff;*/
/*  margin-left: 4px;*/
/*}*/

.video-desc {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-date {
  font-size: 14px;
  color: #999;
}
.djinfo{
  line-height: 28px;
}
.djdesc{
  font-size: 15px;
  font-weight: 700;
  color: #454545;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;  /* 强制不换行 */
}
.djtime{
  font-size: 11px;
  color: #9a9a9a;
}
.djmore{
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.djmore .pill{

}
/* ========== 多视频模块样式 (video-section) ========== */
.video-section {
  margin: 60px 0;
}

.video-section .tabs-header {
  display: flex;
  gap: 32px;
  margin: 8px 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e6edf6;
  align-items: center;
  position: relative;
}

.video-section .tab-btn {
  background: transparent;
  border: none;
  color: #9aa7bf;
  font-size: 2rem;
  font-weight: 700;
  padding: 0 0 8px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.video-section .tab-btn:hover {
  color: #0c3b86;
}

.video-section .tab-btn.active {
  color: #0c3b86;
}

.video-section .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 3px;
  background: #0c3b86;
  border-radius: 2px;
}

.video-section .video-more {
  margin-left: auto;
  color: #9aa7bf;
  font-size: 14px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.video-section .video-more:hover {
  color: #0c3b86 !important;
}

/* 多视频左右分栏布局 */
.video-section .video-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  padding-top: 20px;
}

/* 多视频左侧大视频区域 */
.video-section .video-left {
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.video-section .video-left:hover {
  box-shadow: 0 8px 25px rgba(12, 59, 134, 0.1);
}

.video-section .video-left .poster {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #f5f7fa;
}

.video-section .video-left .poster img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-section .video-left:hover .poster img {
  transform: scale(1.05);
}

.video-section .video-left .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-section .video-left .play:hover {
  background: #0c3b86;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-section .video-left .play:hover:before {
  border-left-color: #fff;
}

.video-section .video-left .play:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 5px 0 0 5px;
  border-left: 20px solid #0c3b86;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transition: border-color 0.3s ease;
}

.video-section .video-left .info {
  padding: 20px;
}

.video-section .video-left .v-title {
  font-weight: 700;
  color: #222;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
  padding-left: 0;
  padding-top: 0;
}

.video-section .video-left .v-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 15px;
  padding-left: 0;
}

.video-section .video-left .v-date {
  font-size: 13px;
  color: #999;
}

.video-section .video-left .v-scan {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0c3b86;
  font-size: 13px;
  cursor: pointer;
}

.video-section .video-left .v-scan img {
  transition: transform 0.3s ease;
  width: 90px;
  height: 90px;
}

.video-section .video-left .v-scan:hover img {
  transform: scale(1.05);
}

.video-section .video-left .v-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 12px;
  white-space: normal;
  padding-left: 0;
}

/* 多视频右侧视频列表区域 */
.video-section .video-right {
  border-radius: 16px;
  padding: 5px;
  height: 100%;
}

.video-section .video-right .vitem {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid #e6edf6;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.video-section .video-right .vitem:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(12, 59, 134, 0.08);
  transform: translateX(5px);
}

.video-section .video-right .vitem:last-child {
  border-bottom: none;
}

.video-section .video-right .vthumb {
  width: 130px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #eef2f7;
}

.video-section .video-right .vthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-section .video-right .vitem:hover .vthumb img {
  transform: scale(1.08);
}

.video-section .video-right .vinfo {
  flex: 1;
  font-weight: 600;
  color: #333;
  font-size: 19px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-section .video-right .vinfo > div:first-child {
  margin-bottom: 8px;
  font-weight: 600;
}

/* 限制右侧列表最多显示5条 */
.video-section .video-right .vitem:nth-child(n+6) {
  display: none;
}

/* ========== 单视频模块样式 (video-single-section) ========== */
.video-single-section {
  margin: 60px 0;
}

.video-single-section .tabs-header {
  display: flex;
  gap: 32px;
  margin: 8px 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e6edf6;
  align-items: center;
  position: relative;
}

.video-single-section .tab-btn {
  background: transparent;
  border: none;
  color: #9aa7bf;
  font-size: 22px;
  font-weight: 700;
  padding: 0 0 8px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.video-single-section .tab-btn:hover {
  color: #0c3b86;
}

.video-single-section .tab-btn.active {
  color: #0c3b86;
}

.video-single-section .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 3px;
  background: #0c3b86;
  border-radius: 2px;
}

.video-single-section .video-single-more {
  margin-left: auto;
  color: #9aa7bf;
  font-size: 14px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.video-single-section .video-single-more:hover {
  color: #0c3b86 !important;
}

/* 单视频左右分栏布局 - 与多视频不同的比例 */
.video-single-section .video-single-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding-top: 20px;
}

/* 单视频左侧区域 */
.video-single-section .video-left {
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.video-single-section .video-left:hover {
  box-shadow: 0 8px 25px rgba(12, 59, 134, 0.1);
}

.video-single-section .video-left .poster {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #f5f7fa;
}

.video-single-section .video-left .poster img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-single-section .video-left:hover .poster img {
  transform: scale(1.05);
}

.video-single-section .video-left .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-single-section .video-left .play:hover {
  background: #0c3b86;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-single-section .video-left .play:hover:before {
  border-left-color: #fff;
}

.video-single-section .video-left .play:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 5px 0 0 7px;
  border-left: 22px solid #0c3b86;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  transition: border-color 0.3s ease;
}

.video-single-section .video-left .info {
  padding: 24px;
}

.video-single-section .video-left .v-title {
  font-weight: 700;
  color: #222;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 15px;
  padding-left: 0;
  padding-top: 0;
}

.video-single-section .video-left .v-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
  padding-left: 0;
}

.video-single-section .video-left .v-date {
  font-size: 14px;
  color: #999;
}

.video-single-section .video-left .v-scan {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0c3b86;
  font-size: 14px;
  cursor: pointer;
}

.video-single-section .video-left .v-scan img {
  transition: transform 0.3s ease;
  width: 100px;
  height: 100px;
}

.video-single-section .video-left .v-scan:hover img {
  transform: scale(1.05);
}

.video-single-section .video-left .v-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-top: 15px;
  white-space: normal;
  padding-left: 0;
}

/* 单视频右侧区域 - 特殊布局 */
.video-single-section .video-right {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  position: relative;
}

.video-single-section .video-right .info {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.video-single-section .video-right .title {
  font-size: 28px;
  font-weight: 700;
  color: #0c3b86;
  margin-bottom: 20px;
  line-height: 1.3;
}

.video-single-section .video-right .v-desc {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.video-single-section .video-right .v-scan-bar {
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: auto;
}

.video-single-section .video-right .v-scan {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #0c3b86;
  font-size: 14px;
  padding: 15px;
  background: #f8fafd;
  border-radius: 12px;
}

.video-single-section .video-right .v-scan img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
}

/* 单视频右侧的视频列表（如果有） */
.video-single-section .video-right .vitem {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid #e6edf6;
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-single-section .video-right .vitem:hover {
  background: #f8fafd;
  transform: translateX(5px);
  border-radius: 8px;
  padding: 15px;
  margin: 0 -15px;
}

.video-single-section .video-right .vitem:last-child {
  border-bottom: none;
}

.video-single-section .video-right .vthumb {
  width: 120px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.video-single-section .video-right .vthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-single-section .video-right .vinfo {
  flex: 1;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

/* ========== 响应式适配 ========== */
@media (max-width: 1200px) {
  .video-section .video-split,
  .video-single-section .video-single-split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .video-section .video-left .poster {
    height: 360px;
  }

  .video-single-section .video-left .poster {
    height: 360px;
  }

  .video-section .tab-btn,
  .video-single-section .tab-btn {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .video-section,
  .video-single-section {
    margin: 40px 0;
  }

  .video-section .tabs-header,
  .video-single-section .tabs-header {
    flex-wrap: wrap;
    gap: 20px;
  }

  .video-section .video-more,
  .video-single-section .video-single-more {
    margin-left: 0;
  }

  .video-section .video-left .poster {
    height: 250px;
  }

  .video-single-section .video-left .poster {
    height: 230px;
  }

  .video-section .video-right .vthumb {
    width: 100px;
    height: 65px;
  }

  .video-single-section .video-right .title {
    font-size: 22px;
  }

  .video-single-section .video-right .v-scan img {
    width: 70px;
    height: 70px;
  }

  .video-section .video-left .play {
    width: 50px;
    height: 50px;
  }


  .video-single-section .video-left .play {
    width: 60px;
    height: 60px;
  }

  .video-single-section .video-left .play:before {
    margin: 18px 0 0 22px;
    border-left: 18px solid #0c3b86;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}

@media (max-width: 480px) {
  .video-section .tab-btn,
  .video-single-section .tab-btn {
    font-size: 16px;
  }

  .video-section .video-left .poster {
    height: 200px;
  }

  .video-single-section .video-left .poster {
    height: 200px;
  }

  .video-section .video-right .vitem {
    flex-direction: column;
    padding: 12px;
  }

  .video-section .video-right .vthumb {
    width: 100%;
    height: 160px;
  }

  .video-section .video-left .v-meta,
  .video-single-section .video-left .v-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-single-section .video-right .title {
    font-size: 18px;
  }

  .video-single-section .video-right .v-scan {
    flex-direction: column;
    text-align: center;
  }
}

.party-fullwrap {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 300px;
  background: url("../assets/image/dkdjbj2.png") center/cover no-repeat;
  top: -140px;
}

.party-new-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 16px;
  padding: 0 20px;
  height: 300px;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}

.party-new-header,
.party-new-grid {
  height: 100%;
}

.party-new-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  background: #fff;
}

.party-new-header .panel-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
}

.party-new-header .panel-title .grad {
  background: linear-gradient(90deg, #1b448c 0%, #5b83f5 50%, #32569f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 32px;
  line-height: 1;
}

.party-new-header .panel-title::before,
.party-new-header .panel-title::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #003e97;
  margin: 0 12px;
  vertical-align: middle;
}

.party-tabs-fullwrap {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 365px;
}

.party-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  padding-bottom: 8px;
  margin-bottom: 16px;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 93%;
  align-items: center;
}

.pn-tab {
  background: transparent;
  border: none;
  color: #9aa7bf;
  font-weight: 700;
  font-size: 18px;
  padding: 8px 0;
  position: relative;
  cursor: pointer;
}

.pn-tab.active {
  color: #222;
}

.pn-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: linear-gradient(
          to right,
          #003e97 0,
          #003e97 calc(50% - 14px),
          transparent calc(50% - 14px),
          transparent calc(50% + 14px),
          #003e97 calc(50% + 14px),
          #003e97 100%
  );
  border-radius: 2px;
}

.pn-tab.active::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 20px;
  height: 14px;
  background: url("../assets/image/choose.png") center/contain no-repeat;
}

.party-new-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pn-card {
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.pn-date {
  width: 64px;
  height: 64px;
  border-radius: 0 0 12px 0;
  color: #fff;
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  justify-items: center;
  margin-bottom: 64px;
}

.pn-date .d {
  font-size: 20px;
  font-weight: 700;
}

.pn-date .ym {
  font-size: 12px;
  opacity: 0.9;
}

.pn-title {
  color: #222;
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}