* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei", sans-serif;
}
body {
  background-color: #fff;
  /* 响应式字体大小：使用 clamp 实现自适应 */
  font-size: clamp(14px, 0.875rem, 16px);
  line-height: 1.6;
}
html {
  /* 根元素字体大小基于视口宽度 */
  font-size: clamp(14px, calc(12px + 0.5vw), 18px);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  margin:0;padding:0;
  list-style: none;
}


/* Bootstrap 辅助类 */
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* ========== 响应式媒体查询整合 ========== */

/* ===== 超大屏幕 (≥1440px) ===== */
@media (min-width: 1440px) {
  .container-fluid.px-0 .container {
    max-width: 1442px;
    margin: 0 auto;
    padding: 0;
  }
  .list-adv {
    margin-bottom: 15px;
  }
  .top-bar {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== 大屏导航优化 (> 1366px) ===== */
@media (min-width: 1367px) {
  .nav-links {
    gap: 10px;
  }

  
  .nav-link {
    padding: 8px 10px !important;
    font-size: 14px;
  }
 
}

/* ===== 桌面端容器 (≥1200px) ===== */
@media (min-width: 1200px) {
  .container {
    max-width: 1442px;
  }
 
}

/* ===== 桌面端 (≥992px) ===== */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  

}

/* ===== 中等屏幕导航优化 (980px - 1366px) ===== */
@media (min-width: 980px) and (max-width: 1366px) {
  .nav-links {
    gap: 6px;
  }
  
  
  .nav-link {
    padding: 8px 6px !important;
    font-size: 13px;
    white-space: nowrap;
  }
  .top-bar {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== 平板和桌面端 (≥768px) ===== */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  

}

/* ===== 小平板及以上 (≥576px) ===== */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  

}
.header-top {
  width: 100%;
  background: url(../images/headback.png) repeat-x left bottom white;
  position: sticky;
  z-index: 999;
  top: 0;
}

/* 顶部工具栏 */
.top-bar {
  color: #9e9e9e;
  padding: 10px 15px;
  font-size: 12px;
  height: auto;
  min-height: 80px;
}

.logo {
  font-weight: bold;
  font-size: 16px;
}

.logo a img {
  max-height: 60px;
  width: auto;
}

.top-bar-left {
  display: flex;
  gap: 15px;
  overflow: hidden;
  justify-content: center;
  text-align: center;
}

.top-bar-left a img {
  max-height: 50px;
  width: auto;
}

.top-bar-right {
  display: flex;
  align-items: center;
}

.search-group {
  display: flex;
  align-items: center;
}

.search-box {
  border: 0;
  background-color: #eee;
  width: 200px;
  height: 36px;
  padding: 0 15px;
  border-top-right-radius: 36px;
  border-bottom-right-radius: 36px;
}

.search-box:focus {
  outline: none;
}

.icon-search {
  width: 36px;
  height: 36px;
  background: url(../images/icon-search.png) no-repeat center;
  background-color: #eee;
  border-top-left-radius: 36px;
  border-bottom-left-radius: 36px;
  flex-shrink: 0;
}

.language {
  display: flex;
  width: 96px;
  height: 36px;
  background: #eee;
  border-radius: 36px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.language .simplified {
  margin-right: 10px;
  border-right: 1px solid #ccc;
  padding-right: 10px;
}

.language .active {
  color: #103961;
}

/* 主导航 - Bootstrap Navbar */
.main-nav {
  background-color: transparent;
  padding: 0;
  height: 56px;
}

/* 确保桌面端导航正常显示 */
@media (min-width: 992px) {
  .main-nav .navbar-collapse {
    justify-content: center;
  }
  
  .navbar-nav.nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link {
  color: #fff !important;
  font-size: 14px;
  padding: 8px 8px !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffd700 !important;
}

/* 响应式导航优化 */
@media (max-width: 991px) {
  .main-nav .navbar-collapse {
    background-color: rgba(0, 33, 71, 0.95);
    padding: 15px;
    border-radius: 0 0 8px 8px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    margin-top: 10px;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0;
  }
  

  
  .nav-link {
    padding: 12px 16px !important;
  }
  
  .search-box {
    width: 150px;
  }
  
  /* 移动端汉堡按钮样式 */
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1.2rem;
  }
}

/* 中等屏幕导航优化（980px - 1366px） */
@media (min-width: 980px) and (max-width: 1366px) {
  .nav-links {
    gap: 6px; /* 减小间隙，避免换行 */
  }
  
  .nav-link {
    padding: 8px 6px !important; /* 调整内边距 */
    font-size: 13px; /* 适度缩小字体 */
    white-space: nowrap; /* 防止文字换行 */
  }
}

/* 大屏导航优化（> 1366px） */
@media (min-width: 1367px) {
  .nav-links {
    gap: 10px;
  }
  

  .nav-link {
    padding: 8px 7px !important;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 10px;
  }
  
  .logo a img {
    max-height: 40px;
  }
  
  .search-box {
    width: 100px;
    font-size: 12px;
  }
  
  .language {
    width: 90px;
    font-size: 11px;
  }
  
  .top-bar-left {
    display: none; /* 移动端隐藏顶部广告 */
  }
  
  /* 小屏幕优化搜索框 */
  .search-group {
    flex-direction: row;
  }
  
  .icon-search {
    width: 32px;
    height: 32px;
  }
  
  .search-box {
    height: 32px;
  }
}

/* 容器 */
.container {
  max-width: 1442px;
  margin: 0 auto;
  background-color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}

/* Bootstrap Grid 系统辅助 */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1442px;
  }
}

.footer-content {
  padding-bottom: 30px;
  max-width: 1440px;
  margin:0 auto;
}

/* 响应式 footer-content 最大宽度 */
@media (max-width: 1440px) {
  .footer-content {
    max-width: 1140px;
  }
}

@media (max-width: 1200px) {
  .footer-content {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .footer-content {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .footer-content {
    max-width: 540px;
  }
}

@media (max-width: 575.98px) {
  .footer-content {
    max-width: 100%;
  }
}

/* 头条区 */
.headline {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px 0;
}

/* ========== 自定义 Swiper 容器 - 使用 flex 左右布局 ========== */
.custom-swiper {
  display: flex; /* 启用 flex 布局 */
  gap: 40px; /* 左右两栏的间距 */
  width: 100%;
  position: relative;
}
.linkage-wrap {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.linkage-swiper-wrap {
  width: 100%;
}
.linkage-wrap .swiper-slide a img {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}

.linkage-wrap .swiper-slide {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* 幻灯片标题遮罩 */
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
  z-index: 10;
}

.slide-caption h3 {
  margin: 0;
  font-size: clamp(1rem, calc(0.875rem + 0.125vw), 1.25rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 90%;
}

.h5-show {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 18px;
  min-height: 70px;
  padding: 10px 10px 30px;
  line-height: 25px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

#LinkageCarousel .swiper-pagination {
  bottom: 20px !important;
  left: 30px !important;
  text-align: left;
  z-index: 10;
}

#LinkageCarousel .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  margin-right: 8px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

#LinkageCarousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  width: 14px;
  height: 14px;
  border-color: rgba(255, 255, 255, 0.8);
}

#LinkageCarousel .swiper-button-next,
#LinkageCarousel .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none; /* 默认隐藏 */
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

/* 大于等于 1460px 时显示导航按钮 */
@media (min-width: 1460px) {
  #LinkageCarousel .swiper-button-next,
  #LinkageCarousel .swiper-button-prev {
    display: flex;
  }
}

/* 小屏隐藏法治独家 Swiper 的导航元素 */
@media (max-width: 1459px) {
  #LinkageCarousel .swiper-button-next,
  #LinkageCarousel .swiper-button-prev {
    display: none !important;
  }
}

#LinkageCarousel .swiper-button-next:after,
#LinkageCarousel .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s;
}

#LinkageCarousel:hover .swiper-button-next,
#LinkageCarousel:hover .swiper-button-prev {
  /* 移除 hover 显示，由媒体查询控制 */
}

#LinkageCarousel .swiper-button-next:hover,
#LinkageCarousel .swiper-button-prev:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

.news-titles {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #eee;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.focus-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  padding: 15px 20px;
}

.focus-item:first-child {
  border-top-right-radius: 12px;
}

.focus-item:last-child {
  border-bottom-right-radius: 12px;
}

.focus-item a {
  width: 100%;
  font-size: 16px;
  color: rgba(26, 26, 26, 1);
  line-height: 1.5;
  transition: all 0.3s ease;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.focus-item:hover {
  background-color: rgba(16, 57, 97, 0.05);
}

.focus-item.active {
  background-color: #103961;
  border-left-color: #fff;
}

.focus-item.active a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255, 255, 255, 1);
}




@media (max-width: 1200px) {
  .linkage-wrap .focus-item a {
    font-size: 14px;
    line-height: 1.4;
  }

  .slide-caption h3 {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .linkage-swiper-wrap {
    width: 100% !important;
    max-width: 100%;
  }
  
  .news-titles {
    display: none;
  }
  
  .slide-caption {
    padding: 50px 20px 20px;
  }
  
  .slide-caption h3 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .linkage-swiper-wrap {
    width: 100%;
  }
  .news-titles {
    display: none;
  }
  .h5-show {
    display: block;
  }
  #LinkageCarousel .swiper-pagination {
    bottom: 10px !important;
    left: 15px !important;
  }
  
  #LinkageCarousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin-right: 6px;
  }
  
  #LinkageCarousel .swiper-button-next,
  #LinkageCarousel .swiper-button-prev,
  #LinkageCarousel:hover .swiper-button-next,
  #LinkageCarousel:hover .swiper-button-prev {
    display: none;
  }
  
  .slide-caption h3 {
    font-size: 14px;
    max-width: 100%;
  }
  
  .slide-caption {
    padding: 40px 15px 15px;
  }
}
/* ========== 左侧轮播区域 ========== */
.banner-slide {
  width: 984px; /* 固定宽度984px */
  height: 552px; /* 固定高度552px */
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  flex-shrink: 0; /* 防止被压缩 */
  position: relative;
}

/* Swiper需要的样式 - 让banner-slide作为swiper-wrapper */
.banner-slide {
  display: flex; /* Swiper内部需要flex布局 */
}

.banner-slide .swiper-slide {
  width: 984px; /* 与容器同宽 */
  height: 552px;
  flex-shrink: 0;
  background: #1a2632;
}

.banner-slide .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 图片覆盖，不变形 */
  display: block;
  transition: transform 0.5s ease;
}

.banner-slide .swiper-slide:hover img {
  transform: scale(1.05); /* 悬停放大效果 */
}

/* ========== 右侧选项卡区域 ========== */
.swiperTab {
  width: 100%; 
}

.swiperTab li {
  width: 100%;
  height: auto;
  background: #eee;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  box-sizing: border-box;
}
.swiperTab li:first-child {
  border-top-right-radius: 12px;
}
.swiperTab li:last-child {
  border-bottom-right-radius: 12px;
  border-bottom: none;
}
.swiperTab li a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 最多显示2行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  font-weight: 500;
  transition: color 0.3s;
  word-break: break-word;
}

/* 清除浮动 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* 双列新闻区 */
.two-col {
  margin-bottom: 25px;
}

.col {
  flex: 1;
}

.hot-right {
  width: 100%;
}

.section-title {
  font-size: clamp(1.25rem, calc(1rem + 0.25vw), 1.5rem);
  font-weight: bold;
  font-family: "Noto sans";
  color: #003366;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
.section-title::before {
  content: "";
  display: block;
  width: 6px;
  height: 22px;
  background-color: #103961;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -14px;
}
.more-link {
  font-size: 12px;
  color: #103961;
  font-weight: normal;
}
.news-video {
  width: 100%;
}

.news-left {
  width: 100%;
}

/* 版块左右间距优化 */
section .container,
section .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* 响应式间距 */
@media (max-width: 768px) {
  section .container,
  section .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .list-adv a{
    margin-bottom: 15px;
  }
  /* 特殊版块处理 */
  .two-col .row,
  .ific-box .row,
  .outlook .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.hot-news li {
  line-height: 25px;
  margin-top: 15px;
}
.hot-news li a span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #eee;
  border-radius: 50%;
  margin-right: 6px;
  color: #000;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  margin-right: 12px;
}

.hot-news li a {
  font-size: 14px;
  color: #2563eb;
}
.hot-news li a:hover {
  color: #1d4ed8;
}
.hot-news li:nth-child(1) a span {
  color: white;
  background-color: #ef4444;
}
.hot-news li:nth-child(2) a span {
  color: white;
  background-color: #f97316;
}
.hot-news li:nth-child(3) a span {
  color: white;
  background-color: #eab308;
}
.news-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-item {
  margin-bottom: 12px;
  max-height: 308px;
  border-bottom: 1px solid #d8d8d8;
}
.news-item .news-item-img {
  width: 100%;
  max-width: 458px;
  max-height: 221px;
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 12px;
}
.news-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 6px;
}
.news-time {
  font-size: 11px;
  color: #999;
  margin-bottom: 4px;
}
.news-time .new-more {
  float: right;
  color: #103961;
}
.news-title {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-readmore {
  font-size: 11px;
  color: #0066cc;
  margin-top: 4px;
  display: inline-block;
}

/* 轮播区 */
.carousel-section {
  margin-bottom: 25px;
  max-width: 1440px;
  margin: 0 auto;
}

/* 版块容器响应式优化 */
@media (max-width: 768px) {
  .carousel-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .linkage-wrap .swiper-slide a img{
    border-radius:12px !important;
  }
  /* 确保内容不溢出 */
  .news-box,
  .carousel-news {
    padding-left: 0;
    padding-right: 0;
  }
}

.carousel-slides {
  display: flex;
  transition: transform 0.3s ease;
}
.carousel-slide {
  min-width: 100%;
}
.carousel-slide img {
  width: 100%;
  height: auto;
}
.carousel-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.carousel-dot.active {
  background-color: #fff;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}
.carousel-control {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}
.ific-box {
  display: block;
  margin-bottom: 20px;
}

.video-item {
  width: 100%;
  height: 222px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 19px;
}
.video-item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.video-item a img {
  width: 100%;
  height: 100%;
}
.video-item .video-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: white;
  padding-left: 50px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: url(../images/icon-play.png) no-repeat 20px center
    rgba(0, 0, 0, 0.5);
}
.ific-left {
  width: 100%;
}
.carousel-news {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ific-news {
  width: 100%;
  max-width: 446px;
  height: auto;
  min-height: 85px;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
}

.ific-news dt {
  width: 126px;
  height: 85px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 20px;
}

.ific-news dt a,
.ific-news dt img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ific-news dd {
  flex: 1;
  position: relative;
  height: 85px;
  min-width: 0; /* 允许内容收缩 */
}

.ific-news dd::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: 1px solid #d8d8d8;
}

.ific-news dd .news-title {
  font-size: 18px;
  color: #1f2937;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ific-news dd .news_date .new-more {
  float: right;
  color: #103961;
}

.ific-news dd .news_date {
  font-size: 14px;
  color: #6b7280;
  position: absolute;
  bottom: 10px;
  width: 100%;
  /* display: flex;
  align-items: center; */
}

/* 响应式优化 */
@media (max-width: 992px) {
  .ific-news {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ific-news {
    width: calc(50% - 10px);
    max-width: none;
  }
  
  .ific-news dt {
    width: 100px;
    height: 70px;
    margin-right: 10px;
  }
  
  .ific-news dd {
    height: 70px;
  }
  
  .ific-news dd .news-title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  
  .ific-news dd .news_date {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .ific-news {
    width: 100%;
  }
  
  .ific-news dt {
    width: 80px;
    height: 60px;
  }
  
  .ific-news dd {
    height: 60px;
  }
  
  .ific-news dd .news-title {
    font-size: 13px;
  }
  
  .ific-news dd .news_date {
    font-size: 11px;
  }
}
/* 广告横幅 */
.ad-banner {
  margin: 20px 0;
  border-radius: 6px;
  overflow: hidden;
}
.ad-banner img {
  width: 100%;
  height: auto;
}
.ad-banner a {
  display: block;
  width: 100%;
  overflow: hidden;
}

/* 三列新闻区 */
.three-col {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.three-col .col {
  flex: 1;
  width: 100%;
}

/* 三列布局响应式优化 */
@media (max-width: 768px) {
  .three-col.row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .three-col .col {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* 新闻专题：小屏单列垂直展示 */
@media (max-width: 720px) {
  .three-col {
    flex-direction: column;
  }
  
  .three-col .col {
    width: 100%;
    flex: none;
    margin-bottom: 20px;
  }
}

/* 页脚 */
footer {
  background-color: #002147;
  color: #fff;
  margin-top: 20px;
}

.footer-content {
  padding-bottom: 30px;
  max-width: 1440px;
  margin:0 auto;
}

.footer-col {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.footer-title a img {
  max-width: 150px;
  height: auto;
}

.footer-desc {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
}

.footer-subscribe {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 15px;
}

/* Dropdown 按钮样式 */
.btn-footer {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  width: 100%;
  text-align: left;
  transition: all 0.3s;
}

.btn-footer:hover,
.btn-footer:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

.dropdown-menu {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
}

.dropdown-item {
  padding: 10px 15px;
  color: #333;
  font-size: 14px;
  transition: all 0.3s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #103961;
}

/* 桌面端列表样式 */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: #d1d5db;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-list li a:hover {
  color: #ffd700;
}

/* 社交媒体链接 */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-link img {
  width: 20px;
  height: 20px;
}
/* 页脚底部 */
.footer-bottom {
  background-color: #001a3a;
  padding: 20px 0;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #ccc;
  text-align: center;
}

/* 响应式页脚 */
@media (max-width: 991px) {
  .footer-col {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* 小屏幕时，新闻分类和关于我们左右布局 */
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    width: 50%;
    flex: 0 0 50%;
    text-align: left;
  }
  
  .btn-footer {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .dropdown-menu {
    min-width: 100%;
  }
  
  .footer-title {
    font-size: 16px;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  
  .footer-col {
    margin-bottom: 25px;
  }
}

.sub-title {
  font-size: clamp(0.875rem, calc(0.75rem + 0.125vw), 1.125rem);
  color: #1f2937;
  font-weight: bold;
  margin: 15px 0;
}
.sub-navlist li {
  line-height: 28px;
}

/* 响应式：小屏时 sub-navlist 单列显示 */
@media (max-width: 720px) {
  .sub-navlist li {
    width: 100%;
  }
}
.sub-navlist li a {
  font-size: 16px;
  color: #2563eb;
  display: flex;
  align-items: center;
}
.sub-navlist li a:before {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #2563eb;
  margin-right: 6px;
}
.outlook {
  display: flex;
  margin-top: 20px;
}
.photo-news {
  width: 100%;
  max-width: 363px;
  margin-left: 30px;
}
.photo-pic {
  width: 100%;
  height: 205px;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 12px;
}
.photo-pic img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.new-outlook .photo-news {
  margin-left: 0;
  margin-right: 30px;
}

/* Outlook 响应式间距 */
@media (max-width: 768px) {
  .outlook {
    flex-direction: column;
  }
  
  .photo-news {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 20px;
    max-width: 100%;
  }
  
  .carousel-section .outlook,
  .carousel-section .photo-news {
    padding-left: 0;
    padding-right: 0;
  }
}
/* 列表页开始 */
.breadcrumb {
  max-width: 1440px;
  margin: 20px auto !important;
  font-size: 14px !important;
  color: #9e9e9e;
  background: none;
}
.breadcrumb .current {
  color: #103961;
}
.list-adv {
  max-width: 1440px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
}
.list-adv a {
  display: block;
  overflow: hidden;
  width: 49%;
  max-height:110px;
}
/* 横幅样式 */
.list-right {
  float: right;
  width: 456px;
}

/* 核心内容区 */
.main-content {
  padding:0 15px;
}

.news-list-wrap {
  max-width: 944px;
  float: left;
}
.news-list-wrap .list-item:first-child{
  margin-top: 8px;
}
.list-item {
  padding-bottom: 25px;
  margin-top:25px;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #d8d8d8;
}
.list-img {
  float: left;
  width: 243px;
  height: 137px;
  margin-bottom: 20px;
  overflow: hidden;border-radius: 12px;
}
.list-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.list-content {
  float: right;
  width: 680px;
  position: relative;
  height: 137px;
}
.list-content .list-title a {
  font-size: 18px;
  color: #1f2937;
  font-weight: bold;
}
.list-content .list-desc {
  font-size: 14px;
  color: #9e9e9e;
  margin-top: 10px;
}
.list-content .list-cont-bot {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.list-content .list-time {
  font-size: 12px;
  color: #6b7280;
}
.list-content .read-more {
  font-size: 12px;
  color: #103961;
}
.sidebar {
  width: 360px;
}

/* 分页样式 */
.pagination {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
}

.page-btn {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 3px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
}

.page-btn.active {
  background-color: #0066cc;
  color: #fff;
  border-color: #0066cc;
}

/* 列表页结束 */
/* 详情页开始 */
.detail-container {
  padding: 15px;
}
.detailheader {
  border-bottom: 1px solid #d8d8d8;
}
.detailbox {
  max-width: 944px;
  margin: 0 auto;
  float: left;
}
.detailtitle {
  font-size: 36px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
}
.detailmeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
  padding-bottom: 20px;
}
.detailsource {
  font-size: 14px;
  color: #6b7280;
}
.detailsource span {
  margin-right: 10px;
}
.detailsource .source a {
  color: #103961;
}
.detail {
  color: #000;
  padding: 20px 0;
}
.detail p img,
.detail img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}
.detail p {
  line-height: 28px;
}
/* 工具条样式 */
.tools-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.toolbar-wrap {
  position: relative;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
}

.toolbar-wrap.clicked {
  color: #0066cc;
}

/* 选项列表 */
.opt-list {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 5px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 5px 0;
  min-width: 100px;
  z-index: 1000;
  display: none;
}

.toolbar-wrap.clicked .opt-list {
  display: block;
}
.toolbar-wrap .toolbar-font {
  background: url(../images/icon-arrowdown.png) no-repeat right center / 12px;
  padding-right: 15px;
}
.opt-list li {
  padding: 8px 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.opt-list li:hover {
  background: #f5f5f5;
}

.opt-list li.active {
  color: #007bff;
  background: #e6f2ff;
}

/* 字号类 */
.detail.font-small {
  font-size: 14px !important;
}

.detail.font-small p,
.detail.font-small span,
.detail.font-small div {
  font-size: 14px !important;
}

.detail.font-medium {
  font-size: 16px !important;
}

.detail.font-medium p,
.detail.font-medium span,
.detail.font-medium div {
  font-size: 16px !important;
}

.detail.font-large {
  font-size: 18px !important;
}

.detail.font-large p,
.detail.font-large span,
.detail.font-large div {
  font-size: 18px !important;
}

.detail.font-xlarge {
  font-size: 20px !important;
}

.detail.font-xlarge p,
.detail.font-xlarge span,
.detail.font-xlarge div {
  font-size: 20px !important;
}

/* 音频播放条 */
.audio-play-bar {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
  min-width: 300px;
}

.audio-play-bar .close {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 20px;
  color: #999;
  line-height: 1;
}

.audio-play-bar .close:hover {
  color: #333;
}

.audio-play-bar .audio-info {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  padding-right: 20px;
}

.audio-play-bar .voice-type {
  color: #007bff;
  font-weight: bold;
}

.audio-play-bar audio {
  width: 100%;
  height: 40px;
}

/* 加载提示 */
.loading-tip {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 10000;
  display: none;
}
/* 详情页结束 */
/* 法治独家切换效果 开始 */
.carousel {
  width: 100%;
  height: 366px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.again-carousel {
  height: 424px;
}
.custom-swiper {
  width: 100%;
  height: 366px;
}

.carousel .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.custom-swiper .swiper-slide .slide-left {
  padding-right: 30px;
  height: 100%;
}

.new-outlook .custom-swiper .swiper-slide .slide-left {
  padding-right: 0;
  padding-left: 30px;
}
.custom-swiper .swiper-slide .slide-left .slide_title {
  font-size: 18px;
  color: #1f2937;
  font-weight: bold;
  margin-bottom: 10px;
}
.custom-swiper .swiper-slide .slide-left .slide_content {
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  letter-spacing: 0px;
  color: #9e9e9e;
}
.custom-swiper .swiper-slide .slide-pic {
  height: 100%;
  overflow: hidden;
  min-width: 651px;
  border-radius: 12px;
}
.custom-swiper .swiper-slide .slide-pic img {
  border-radius: 12px;
  height: auto;
  width: 100%;
}

.custom-swiper .swiper-prev,
.custom-swiper .swiper-next {
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 0;
  z-index: 99;
}

.custom-swiper .swiper-prev {
  left: 0;
  background: url(../images/leftArrow.png) no-repeat center;
}
.custom-swiper .swiper-next {
  left: 230px;
  background: url(../images/rightArrow.png) no-repeat center;
}

.custom-swiper .swiper-pagination {
  left: 13% !important;
  bottom: 0 !important;
}
.again-swiper .swiper-slide .slide-pic {
  min-width: 754px;
}
.again-swiper {
  height: 424px;
}
.new-outlook .again-swiper .swiper-prev {
  right: 23%;
  left: unset;
}
.new-outlook .again-swiper .swiper-next {
  right: 0;
  left: unset;
}
.new-outlook .again-swiper .swiper-pagination {
  right: 0% !important;
  left: unset !important;
  width: 140px !important;
}
.reset-pagination .swiper-pagination-bullet {
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  letter-spacing: 0px;
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  bottom: 0;
}
.reset-pagination .swiper-pagination-bullet-active {
  color: #103961;
  font-family: Noto Sans;
  font-size: 64px;
  font-weight: normal;
  line-height: 64px;
  letter-spacing: 0px;
}
/* 法治独家切换效果 结束 */
.adv-banner {
  width: 100%;
  max-height: 112px;
  margin: 20px auto;
}
.adv-banner a {
  display: block;
  overflow: hidden;
  max-height: 112px;
}
.adv-banner img {
  width: 100%;
  height: auto;

}
/* 响应式广告横幅 */
@media (max-width: 768px) {
  .adv-banner,
  .ad-banner {
    max-width: 100%;
  }
}

/* 品牌中国 */
.spec-column-content {
  position: relative;
  padding: 0 3.2%;
}
#spec-carousel .swiper-slide {
  z-index: 1;
  filter: blur(1px);
}
#spec-carousel .swiper-slide:has(+ .swiper-slide.swiper-slide-prev) {
  transform-origin: left center;
  transform: scale(2.2);
}
#spec-carousel .swiper-slide.swiper-slide-next + .swiper-slide {
  z-index: 2;
  transform-origin: right center;
  transform: scale(2.2);
}
#spec-carousel .swiper-slide-prev {
  transform-origin: 100px center;
}
#spec-carousel .swiper-slide-next {
  transform-origin: calc(100% - 100px) center;
}
#spec-carousel .swiper-slide-active {
  transform: scale(3.8);
  z-index: 4;
  filter: blur(0);
}

#spec-carousel .swiper-slide-prev,
#spec-carousel .swiper-slide-next {
  z-index: 3;
  transform: scale(2.9);
}

#SpecColumn .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 40px;
  margin: unset;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
}

#SpecColumn .swiper-button:after {
  font-size: 18px;
}

#SpecColumn .swiper-button-prev {
  left: 0;
}

#SpecColumn .swiper-button-next {
  right: 0;
}
.section-spec {
  width: 100%;
  max-width: unset;
  padding: unset;
  margin-top: 40px;
}

/* 品牌中国响应式优化 */
@media (max-width: 768px) {
  .section-spec .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  #spec-carousel {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  #spec-carousel .swiper-slide,
  #spec-carousel .swiper-slide-prev,
  #spec-carousel .swiper-slide-next,
  #spec-carousel .swiper-slide-duplicate-prev,
  #spec-carousel .swiper-slide-duplicate-next {
    transform: scale(1) !important;
  }
  .spec-column-content {
    padding: 0;
  }
  
  /* 移动端隐藏复杂 Swiper 组件 */
  .linkage-wrap .news-titles {
    display: none !important;
  }
  .carousel-section .carousel,
  .again-carousel {
    display: none !important;
  }
  .outlook .photo-news {
    display: none !important;
  }
  
  /* 调整布局为单列 */
  .news-left,
  .hot-right,
  .ific-left,
  .news-video {
    width: 100% !important;
    max-width: 100%;
  }
  
  .two-col,
  .ific-box {
    flex-direction: column;
  }
  
  .news-item {
    width: 100%;
    max-width: 100%;
  }
  
  .news-item .news-item-img {
    width: 100%;
  }
  
  .ific-news {
    width: 100%;
  }
  
  .video-item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* 平板端优化 */
  .linkage-swiper-wrap {
    width: 100% !important;
    max-width: 100%;
  }
  
  .h5-show {
    display: block;
  }
  
  #LinkageCarousel .swiper-button-next,
  #LinkageCarousel .swiper-button-prev,
  #LinkageCarousel:hover .swiper-button-next,
  #LinkageCarousel:hover .swiper-button-prev {
    display: none;
  }
  
  /* 隐藏部分 carousel 组件 */
  .carousel-section .custom-swiper {
    display: none !important;
  }
  
  .news-left {
    width: 100%;
  }
  
  .hot-right {
    width: 100%;
  }
  
  .ific-left {
    width: 100%;
  }
  
  .news-video {
    width: 100%;
  }
  
  .outlook {
    flex-direction: column;
  }
  
  .photo-news {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .photo-pic {
    width: 100%;
  }
  
  .ad-banner a {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 992px) {
  /* 中等屏幕优化 */
  .section-spec .spec-column-content {
    max-width: 750px;
  }
  
  .linkage-wrap .focus-item a {
    font-size: 14px;
    line-height: 18px;
  }
  
  
}

@media (min-width: 993px) {
  /* 桌面端样式 */
  .linkage-wrap .swiper-slide a img{
    border-radius:12px !important;
  }
  .linkage-swiper-wrap {
    width:100%;
  }
  
  .news-left {
    width: 943px;
  }
  
  .hot-right {
    width: 456px;
  }
  
  .ific-left {
    width: 943px;
  }
  
  .news-video {
    width: 455px;
  }
  
  .photo-news {
    width: 363px;
  }
}



.ad-banner a img,
.list-adv a img,
.list-img img,
.ific-news dt img,
.video-item a img,
.adv-banner a img,
.news-item .news-item-img img,
.photo-pic img,
.slide-pic img,
#LinkageCarousel .swiper-slide img,
.top-bar-left a img {
  transition: all 0.7s;
}
.ad-banner a:hover img,
.list-adv a:hover img,
.list-img:hover img,
.ific-news dt a:hover img,
.video-item a:hover img,
.adv-banner a:hover img,
.news-item .news-item-img a:hover img,
.photo-pic a:hover img,
.slide-pic a:hover img,
#LinkageCarousel .swiper-slide a:hover img,
.top-bar-left a:hover img {
  transform: scale(1.1);
}

/* ========== 通用响应式间距优化 ========== */
@media (max-width: 768px) {
  /* 所有主要版块的左右间距 */
  .headline,
  .two-col,
  .ific-box,
  .ad-banner,
  .adv-banner,
  section {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* 使用 Bootstrap Grid 的版块 */
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* row 无间隙处理 */
  .row.w-100.m-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* 列的内边距调整 */
  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* 超小屏幕优化 */
@media (max-width: 576px) {
  .container-fluid.px-0 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* ========== 列表页和详情页响应式样式 ========== */

/* 新闻列表项 - Bootstrap Grid 布局 */
.list-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.list-item:last-child {
  border-bottom: none;
}

/* 图片列 - 使用 Bootstrap col-md-4 */
.list-img-col {
  width: 100%;
}

.list-img {
  width: 100%;
  height: 137px;
  overflow: hidden;
  border-radius: 12px;
}

.list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.list-item:hover .list-img img {
  transform: scale(1.05);
}

/* 内容列 - 使用 Bootstrap col-md-8 */
.list-content-col {
  width: 100%;
  position: relative;
  height: auto;
}

.list-title {
  font-size: clamp(1.125rem, calc(1rem + 0.125vw), 1.25rem);
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.list-title a {
  color: #1f2937;
  transition: color 0.3s;
}

.list-title a:hover {
  color: #2563eb;
}

.list-desc {
  font-size: clamp(0.875rem, 0.875rem, 1rem);
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-cont-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-time {
  font-size: 13px;
  color: #9ca3af;
}

.read-more {
  font-size: 14px;
  color: #2563eb;
  transition: color 0.3s;
}

.read-more:hover {
  color: #1d4ed8;
}

/* 分页响应式 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 6px;
  transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
  background: #2563eb;
  color: white;
}

/* 小屏幕适配 - 垂直布局 */
@media (max-width: 768px) {
  .list-item {
    flex-direction: column;
  }
  
  .list-img-col {
    margin-bottom: 15px;
  }
  
  .list-content-col {
    padding-left: 0 !important;
  }
  
  .list-img {
    height: 200px;
  }
}

/* 详情页优化 */
.detail-container {
  margin-top: 30px;
  margin-bottom: 20px;
}

.detailbox {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.detailheader {
  margin-bottom: 30px;
}

.detailtitle {
  font-size: clamp(1.5rem, calc(1.25rem + 0.5vw), 2rem);
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.4;
}

.detailmeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.detailsource {
  font-size: 14px;
  color: #6b7280;
}

.detail {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.detail p {
  margin-bottom: 20px;
}

.detail img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 8px;
}

.related-news {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e5e7eb;
}

/* 详情页视频 */
.detailvideo .video-item {
  margin-bottom: 15px;
}

/* 详情页响应式调整 */
@media (max-width: 768px) {
  .detailbox {
    padding: 20px 15px;
  }
  
  .detailmeta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .detail {
    font-size: 0.9375rem;
  }
  
  .detailtitle {
    font-size: 1.5rem;
  }
}

/* 右侧边栏通用样式 */
.list-right {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .list-right {
    padding-left: 0;
    margin-top: 30px;
  }
  .list-adv{
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .news-left-wrap,
  .news-right-wrap {
    padding: 0;
  }
  
  .list-right {
    margin-top: 20px;
    margin:20px 15px 0;
    padding-right: 0;
  }
}

/* 横幅广告响应式 */


.list-adv a {
  display: block;
  width: 100%;
}

.list-adv .banner-img {
  width: 100%;
  height: auto;
}

/* ========== H5 版 Swiper 样式 ========== */
/* H5 版 Swiper 容器 */
.h5-swiper-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* H5 版 slide 样式 */
.h5-fazhi-carousel .swiper-slide,
.h5-chanjing-carousel .swiper-slide,
.h5-huanqiu-carousel .swiper-slide {
  position: relative;
  overflow: hidden;
}

.h5-fazhi-carousel .swiper-slide img,
.h5-chanjing-carousel .swiper-slide img,
.h5-huanqiu-carousel .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* H5 版内容区 */
.h5-slide-content {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.h5-slide-pic {
  width: 100%;
  margin-bottom: 10px;
}

.h5-slide-pic img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.h5-slide-title {
  font-size: clamp(1rem, calc(0.875rem + 0.125vw), 1.2rem);
  font-weight: bold;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.h5-slide-title a {
  color: #333;
  text-decoration: none;
}

.h5-slide-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* H5 版分页器 */
.h5-pagination {
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
  z-index: 10;
}

/* H5 版标题遮罩 - 用于头条区 */
.h5-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
  z-index: 10;
}

.h5-slide-caption h3 {
  margin: 0;
  font-size: clamp(0.9rem, calc(0.875rem + 0.125vw), 1.1rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ific-box Bootstrap Grid 布局优化 */
.ific-box .container {
  padding-left: 0;
  padding-right: 0;
}

.ific-box .row {
  margin-left: 0;
  margin-right: 0;
}

.ific-box [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

/* 民生视频 */
.news-video {
  padding-left: 15px !important;
}

/* 头条区 Bootstrap Grid 布局优化 */
.headline .container {
  padding-left: 0;
  padding-right: 0;
}

.headline .row {
  margin-left: 0;
  margin-right: 0;
}

.headline [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

/* 确保 linkage-swiper-wrap 与 swiperTab 并排显示 */
.linkage-swiper-wrap {
  width: 100%;
}


/* ========== 响应式媒体查询整合区域（按宽度分类）========== */

/* ========== H5 版头条 Swiper 样式 ========== */
/* H5 版头条 Swiper 容器 */
.h5-linkage-carousel {
  position: relative;
  margin-bottom: 15px;
}

.h5-linkage-carousel .swiper-slide {
  position: relative;
  overflow: hidden;
}

.h5-linkage-carousel .swiper-slide a img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* H5 版标题遮罩 */
.h5-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
  z-index: 10;
}

.h5-slide-caption h3 {
  margin: 0;
  font-size: clamp(0.9rem, calc(0.875rem + 0.125vw), 1.1rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* H5 版分页器 */
.h5-pagination {
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
  z-index: 10;
}

/* H5 版标题列表 */
.h5-swiper-tab {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h5-swiper-tab li {
  width: 100%;
  height: auto;
  min-height: auto;
  max-height: none;
  background: #eee;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  box-sizing: border-box;
}

.h5-swiper-tab li:first-child {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.h5-swiper-tab li:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom: none;
}

.h5-swiper-tab li a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== 响应式媒体查询整合区域（按宽度分类）========== */

/* ===== 移动端导航和布局 (< 992px) ===== */
@media (max-width: 991px) {
  .main-nav .navbar-collapse {
    background-color: rgba(0, 33, 71, 0.95);
    padding: 15px;
    border-radius: 0 0 8px 8px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    margin-top: 10px;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-item {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-link {
    padding: 12px 16px !important;
  }
  
  .search-box {
    width: 150px;
  }
  
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1.2rem;
  }
}

/* ===== 小屏移动设备 (< 768px) ===== */
@media (max-width: 768px) {
  /* 顶部工具栏 */
  .top-bar {
    padding: 10px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .logo a img {
    max-height: 40px;
  }
  
  .search-box {
    width: 100px;
    font-size: 12px;
  }
  
  .language {
    width: 90px;
    font-size: 11px;
  }
  
  .top-bar-left {
    display: none;
  }
  
  .search-group {
    flex-direction: row;
  }
  
  .icon-search {
    width: 32px;
    height: 32px;
  }
  
  .search-box {
    height: 32px;
  }
  
  /* 列表页 */
  .news-left-wrap,
  .news-right-wrap {
    padding: 0;
  }
  
  .list-right {
    margin-top: 20px;
    margin: 20px 15px 0;
    padding-right: 0;
  }
  
  .list-adv {
    margin-bottom: 15px;
  }
  
  .list-adv a {
    margin-bottom: 15px;
  }
  
  /* 详情页 */
  .detail-container {
    padding: 15px;
  }
  
  /* 版块间距优化 */
  section .container,
  section .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .two-col .row,
  .ific-box .row,
  .section-spec .row,
  .carousel-section .row,
  .three-col .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ===== 超小屏幕 (< 576px) ===== */
@media (max-width: 576px) {
  .container-fluid.px-0 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* ===== 中等屏幕 (< 1200px) ===== */
@media (max-width: 1200px) {
  .headline {
    padding: 15px 0;
  }
}

/* ===== 平板和移动端 (< 992px) ===== */
@media (max-width: 992px) {
  .list-right {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .list-adv {
    margin-bottom: 15px;
  }
  
  /* 响应式调整 swiperTab li 高度 */
  .swiperTab li {
    min-height: auto;
    height: auto;
    padding: 12px 15px;
  }
  
  .swiperTab li a {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* ===== 小屏移动设备 (< 720px) ===== */
@media (max-width: 720px) {
  .three-col {
    flex-direction: column;
  }
  
  .three-col .col {
    width: 100%;
    flex: none;
    margin-bottom: 20px;
  }
  
  /* 进一步优化 swiperTab li 在小屏幕下的高度 */
  .swiperTab li {
    padding: 10px 12px;
    min-height: auto;
  }
  
  .swiperTab li a {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}

.links{
  padding:20px 0 40px;
}
.links .section-title,.links .section-title .more-link{
  color:#d1d5db;
}
.links .section-title .more-link{
  color:#d1d5db;
}
.links .sub-navlist{
  margin:0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.links .sub-navlist li a{
  color:#d1d5db;
  padding:0 10px;
}
.links .sub-navlist li a::before{display: none;}
.links .container{
  background:none;
}
.links .section-title::before {
  background-color: #2563eb;
  display: none;
}
.links .section-title{
  border-bottom: 0;
  margin-bottom: 0;
  color:white
}