
.section-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title-group {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.section-title {
  font-weight: 800;
  color: #111827;
}

.section-title-en {
  font-size: 0.95rem;
  color: #9ca3af;
  font-weight: 400;
}

.section-tab-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section-tab-pill {
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4b5563;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.section-tab-pill:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.section-tab-pill.active {
  background-color: var(--brand-orange);
  color: #ffffff;
  border-color: var(--brand-orange);
}

.section-more-link {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.section-more-link:hover {
  color: var(--brand-orange);
}

/* 视频·集锦 Section 1 Swiper 样式 */
.video-grid-top-swiper {
  width: 100%;
}

.top-video-pagination .swiper-pagination-bullet {
  background: #d1d5db;
  opacity: 0.8;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.top-video-pagination .swiper-pagination-bullet-active {
  background: var(--brand-orange, #f96c05);
  width: 20px;
  border-radius: 4px;
  opacity: 1;
}

.video-grid-bottom {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
.video-grid-bottom .video-card-item {
  aspect-ratio: 16 / 10;
}
@media (min-width: 640px) {
  .video-grid-bottom { grid-template-columns: repeat(2, 1fr); }
}

.video-card-item {
  position: relative;
  border-radius: 0.875rem;
  overflow: hidden;
  cursor: pointer;
}

.top-video-swiper .video-card-item {
  aspect-ratio: 10 / 13;
}


.video-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-card-item:hover img {
  transform: scale(1.05);
}

/* 播放图标按钮 */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.25s ease;
  z-index: 5;
  transform: translate(-50%, -50%) scale(0.9);
}
.video-card-item:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1);
}

.video-card-overlay {
  position: absolute;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  z-index: 4;
  width: 100%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.video-card-title {
  color: #ffffff;
  line-height: 1.4;
}

/* 上半部分 左右 */
.content-news-layout {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 2rem; */
}
@media (min-width: 768px) {
  .content-news-layout {
    grid-template-columns: 8fr 4fr;
  }
}

.news-banner-card {
  position: relative;
  width: 100%;
  aspect-ratio: 18 / 10;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: #1f2937;
}

.news-banner-card .news-banner-swiper {
  width: 100%;
  height: 100%;
}

.news-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: rgba(43, 98, 172, 0.88); */
  background: rgba(18,75,144,0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3.5rem 1rem 1.25rem;
  color: #ffffff;
}

.news-banner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.date-badge-box {
  display: flex;
  flex: 0 0 45px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  /* border-right: 1px solid rgba(255, 255, 255, 0.35);
  padding-right: 1rem; */
  background: transparent;
  margin-bottom: 0;
}

.date-badge-day {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.date-badge-year {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

/* .news-banner-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
} */

.news-swiper-pagination {
  position: absolute;
  right: 1.25rem !important;
  bottom: 1.8rem !important;
  left: auto !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.news-custom-bullet {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0.85;
  display: inline-block;
  cursor: pointer;
  transition: all 0.25s ease;
}

.news-custom-bullet.active {
  width: 11px;
  height: 11px;
  border: 2px solid var(--brand-orange, #f96c05);
  background-color: transparent;
  opacity: 1;
}

.article-list-group {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0 0 0 2rem;
  overflow: hidden;
}
@media (max-width:768px){
  .article-list-group {
    padding: 1.5rem 0.5rem;
  }
}

.bg-watermark-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 75px;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

@media (max-width: 767px) {
  .bg-watermark-img {
    width: 60px;
  }
}


.article-item {
  position: relative;
  z-index: 1;
  /* padding-bottom: 1rem; */
  border-bottom: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
  cursor: pointer;
}
.article-item-title:hover {
  color: var(--brand-orange);
}

.article-item-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.article-item-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.article-item-date-icon {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: #9ca3af;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-item-link {
  font-size: 0.8rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}
.article-item-link:hover {
  color: var(--brand-orange);
}

/* 新闻·焦点 */
.news-bottom-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .news-bottom-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .news-bottom-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-mini-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.news-mini-card:hover {
  transform: translateY(-4px);
}

.news-mini-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 18 / 10;
  overflow: hidden;
}
.news-mini-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-mini-date{
  gap: 0.35rem;
}

.card-mini-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.4rem 1rem;
  background-color: #022E92;
  color: #ffffff;
  font-size: 0.8rem;
  border-right: 6px solid #FE6A00;
}

.news-mini-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
   视频播放弹窗 Modal (Video Popup Modal)
   -------------------------------------------------------------------------- */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  background-color: #000000;
  border-radius: 0.875rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.video-modal-overlay.open .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  z-index: 20;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover {
  background-color: var(--brand-orange, #f96c05);
  transform: scale(1.1);
}

.video-modal-body {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000000;
}

.video-modal-body video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 移动端 */
@media (max-width: 767px) {
  .video-modal-overlay {
    padding: 0;
    background-color: #000000;
  }

  .video-modal-container {
    max-width: 100%;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
  }

  .video-modal-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 2rem;
    background-color: rgba(255, 255, 255, 0.35);
  }

  .video-modal-body {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-modal-body video {
    width: 100%;
    max-height: 100vh;
    object-fit: contain;
  }
}
