@charset "UTF-8";
/* CSS Document */
body {
  overflow-x: hidden;
}
.news_slogn {
  font-family: "pfhfonts", "思源黑体 CN", "Noto Sans CJK SC", sans-serif;
  font-size: 50px;
  line-height: 50px;
  color: #dbf0fe;
  position: absolute;
  top: 273px;
  right: 10%;
  text-align: right;
  z-index: 10;
  font-weight: 600;
}
@media (min-width: 1400px) {
  .news_slogn {
    font-size: 54px;
  }
}
@media (min-width: 1600px) {
  .news_slogn {
    font-size: 56px;
  }
}
@media (min-width: 1800px) {
  .news_slogn {
    font-size: 58px;
  }
}
.news_slogn span {
  text-transform: uppercase;
  font-size: 16px;
  text-align-last: justify;
}
.news_tit {
  margin: 0 auto;
}
#branch-effect-container {
  width: 100vw;
  height: 600px;
  margin: 0 auto;
  background-color: #093979;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  cursor: pointer;
  overflow: hidden;
}
.news_fbt {
  font-size: 18px;
  color: #093979;
  border: 1px solid #093979;
  padding: 8px 20px;
  margin: 0;
}
.news_fbt a {
  color: #093979;
}
.news_bt {
  font-size: 36px;
  color: #083979;
}
.news_fbt:hover {
  background: #093979;
  color: #fff;
}
.news_fbt:hover a {
  color: #fff;
}
.news_more_l {
  background: linear-gradient(to left, #e57922, #e57922, #fff);
  height: 2px;
  display: block;
  float: right;
  margin: 60px 20px 0 0;
  cursor: pointer;
}
.gsdt_list {
  width: 1200px;
  height: 375px;
  margin: 90px auto 120px;
}
.left-column {
  width: 715px;
  float: left;
}
.right-column {
  flex: 1;
  width: 445px;
  float: right;
}
.article-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 35px;
  background: #f9f9f9;
  cursor: pointer;
  height: 100px;
  width: 715px;
}
.article-content {
  padding: 9px 16px;
}
.article-item:hover {
  background: #fcf1e8;
  border-bottom: 2px solid #e57821;
  height: 100px;
}
.article-item:hover .article-title {
  color: #083979
}
.article-item:hover .article-title a {
  color: #083979
}
.article-item--highlight {
  background: #fff8e6;
}
.article-img img {
  width: 150px;
  height: 100px;
}
.article-title {
  font-size: 16px;
  margin: 0 0 20px 0;
  color: #3d3d3d;
  float: left;
  height: 43px;
  width: 420px;
  text-align: justify;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.article-title a {
  color: #3d3d3d;
}
.article-date {
  font-size: 14px;
  color: #3d3d3d;
  margin: 5px 0 8px 0;
  float: right;
}
.article-desc {
  font-size: 14px;
  color: #3d3d3d;
  margin: 0;
  line-height: 1.5;
  width: 100%;
  float: left;
  height: 25px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 430px;
  text-align: justify;
}
/* 右侧置顶文章轮播核心样式（重点：轮播单元为完整文章） */
/* 轮播容器：包裹所有置顶文章，溢出隐藏 */
.carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* 轮播文章列表：所有置顶文章的容器 */
.carousel-articles {
  width: 100%;
  height: 405px; /* 单篇置顶文章的总高度，可自定义 */
  position: relative;
}
/* 单篇置顶文章（轮播单元）：包含图片+标题 */
.carousel-article {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease; /* 平滑切换效果 */
  display: flex;
  flex-direction: column;
  display: none;
}
/* 活跃状态：当前显示的文章 */
.carousel-article.active {
  opacity: 1;
  display: block;
	transition: opacity 0.5s ease;
}
/* 置顶文章图片 */
.carousel-img img {
  width: 445px;
  height: 290px; /* 图片高度，可自定义 */
  object-fit: cover;
}
/* 置顶文章标题 */
.carousel-title {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.78;
  padding: 0;
  word-wrap: break-word; /* 防止英文/数字不换行，确保溢出 */
  word-break: break-word;
  width: 445px;
  height: 60px;
  color: #093979;
  margin-top: 10px;
}
/* 左右切换按钮 */
.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}
/* 轮播指示器（小圆点，对应3篇文章） */
.carousel-indicators {
  position: absolute;
  top: 275px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
	display: none;
}
.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #093979;
  cursor: pointer;
}
.indicator.active {
  background-color: #e57a22; /* 活跃指示器高亮 */
}
.top-article {
  background: #fff;
  width: 445px;
}
.top-article:hover {
  background: #f9f9f9;
}
.top-title {
  font-size: 20px;
  color: #0056b3;
  margin: 0 0 15px 0;
  text-align: center;
}
.guests {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}
.guest-item {
  text-align: center;
}
.guest-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 5px;
  border: 2px solid #fff;
}
.guest-name {
  font-size: 12px;
  color: #333;
  line-height: 1.4;
}
.top-img {
  text-align: center
}
.top-img img {
  width: 435px;
  height: 350px;
  margin-bottom: 10px;
}
.top-article-title {
  font-size: 18px;
  margin: 0 0 8px 0;
  color: #3d3d3d;
  width: 420px;
  float: left;
}
.top-article-date {
  font-size: 16px;
  color: #3d3d3d;
  margin: 0 0 8px 0;
  float: left;
}
.top-article-desc {
  font-size: 16px;
  color: #3d3d3d;
  margin: 0;
  line-height: 1.5;
  float: left;
}
.new_fbt {
  color: #fff;
  text-transform: uppercase;
}
.new_bt {
  font-size: 44px;
  color: #083979;
  margin-top: -120px;
}
.projects_more_l {
  background: linear-gradient(to right, #e57922, #e57922, #fff);
  height: 2px;
  display: block;
  float: left;
  margin: 30px 0 0 20px;
  cursor: pointer;
}
.mtzx_list {
  display: flex;
  gap: 45px;
}
.mtzx_cent .mt_tx {
  border-left: 3px solid #e57a22;
  padding-left: 10px;
  line-height: 15px;
}
.mtzx_con {
  width: 540px;
  height: 90px;
  box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  font-size: 18px;
  color: #3d3d3d;
  line-height: 100px;
  ;
}
.mtzx_con:hover {
  background: #fcf1e8;
  color: #e57a22;
}
.mtzx_con img {
  width: 74%;
}
.mtzx_bg_img {
  background: url(../img/down_load_h.png) no-repeat;
  background-position: 600px 60px;
  text-indent: 2em;
  text-align: left;
}
.mtzx_con:hover.mtzx_bg_img {
  background: url(../img/down_load.png) no-repeat;
  background-position: 600px 60px;
}
.mtzx_con img {
  display: block;
  width: 160px;
  margin-top: 12px;
  float: left;
  margin-left: 35px;
}
/* 列表容器 */
.gsdt_art_list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/* 单篇文章项 - 关键修改：align-items 从 center 改为 flex-start（顶部对齐） */
.gsdt_art_item {
  display: flex;
  align-items: flex-start; /* 核心修改：子元素顶部对齐 */
  padding: 60px 0 60px 0;
  gap: 60px;
  cursor: pointer;
  transition: all 0.2s; /* 增加过渡动画，hover更丝滑 */
}
.gsdt_art_list a {
  border-bottom: 1px solid #e2e2e2; display: block;
}
.gsdt_art_list a:last-child {
  border-bottom: none !important;
}
/* 文章图片容器 - 修改：尺寸改为490x320 */
.gsdt_art_img {
  width: 410px;
  height: 265px;
  flex-shrink: 0;
}
.gsdt_art_img img {
  width: 410px;
  height: 265px;
  object-fit: cover;
}
/* 日期模块 - 修改：宽度110px、高度110px，新增1px描边基础样式 */
.date-box {
  width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid transparent; /* 基础描边样式，子类覆盖颜色 */
}
/* 日期-默认蓝色系 */
.date-box.blue {
  border-color: #093979; /* 1px蓝色描边 */
}
.date-box.blue .date-num {
  font-size: 40px;
  font-weight: bold;
  color: #093979; /* 新蓝色 */
  line-height: 1;
}
.date-box.blue .date-year {
  font-size: 16px;
  color: #093979; /* 新蓝色 */
  margin-top: 5px;
}
/* 文章项hover时：日期切换为黄色系 */
.gsdt_art_item:hover .date-box.blue {
  border-color: #e57a22; /* 1px黄色描边 */
}
.gsdt_art_item:hover .date-box.blue .date-num {
  color: #e57a22; /* 黄色数字 */
}
.gsdt_art_item:hover .date-box.blue .date-year {
  color: #e57a22; /* 黄色年份 */
}
/* 文章内容区（标题+简介+按钮） */
.gsdt_art_content {
  flex: 1;
}
/* 标题修改：22号字、颜色#3d3d3d */
.gsdt_art_title {
  font-size: 22px;
  color: #3d3d3d;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.8;
  font-weight: bold;
  transition: color 0.2s; /* 新增标题颜色过渡，更丝滑 */
}
/* 新增：文章项hover时标题变为#e57a22 */
.gsdt_art_item:hover .gsdt_art_title {
  color: #e57a22;
}
/* 简介修改：18号字 */
.gsdt_art_desc {
  font-size: 18px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
  height: 134px;
  overflow: hidden;
  text-align: justify;
}
/* 按钮通用样式 - 新增float: right使按钮靠右 */
.detail-btn {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s;
  float: right; /* 核心修改：按钮右对齐 */
}
/* 按钮-默认蓝色系 */
.detail-btn.blue {
  background-color: #093979; /* 新蓝色 */
  color: #fff;
}
.detail-btn.blue:hover {
  background-color: #072d61; /* 深蓝色hover（原色系加深） */
}
/* 文章项hover时：按钮切换为黄色系 */
.gsdt_art_item:hover .detail-btn.blue {
  background-color: #e57a22; /* 黄色背景 */
}
.gsdt_art_item:hover .detail-btn.blue:hover {
  background-color: #c86c1d; /* 深黄色hover（原色系加深） */
}
.news_mtbd {
  margin: 0 auto;
  width: 1200px;
  height: auto;
}
/* 底部分页控制器样式：< 1 2 3 > 布局 */
.video-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* 按钮/页码间距 */
  margin-top: 20px;
}
/* 通用按钮样式（左右箭头+页码） */
.pagination-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0);
  color: #333;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
/* 左右箭头按钮 */
.pagination-prev, .pagination-next {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
/* 页码按钮 */
.pagination-num {
  width: 40px;
  height: 40px;
  font-weight: bold;
}
/* 激活状态（当前页码） */
.pagination-num.active {
  background: #007bff;
  color: #fff;
}
/* 禁用状态 */
.pagination-btn:disabled {
  background: rgba(0, 0, 0, 0);
  color: #ccc;
  cursor: not-allowed;
}
/* 鼠标悬浮效果（非禁用） */
.pagination-btn:not(:disabled):hover {
  background: rgba(0, 0, 0, 0.2);
}
/* 列表容器 */
.media-list {
  width: 1200px;
  margin: 0 auto;
}
/* 媒体项容器 */
.media-item {
  display: flex;
  align-items: center;
  padding: 80px 0 60px 0;
  border-bottom: 1px solid #e2e2e2;
  gap: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.media-list a:last-child .media-item {
  border-bottom: none !important;
}
/* 图片区域 */
.media-img {
  width: 280px;
  height: 180px;
  border: 1px solid #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.media-img img {
  max-width: 280px;
  max-height: 180px;
}
/* 内容区域 */
.media-content {
    flex: 1;
    width: 700px;
    /* margin-right: 0px; */
    height: 180px;
}
.media-title {
  color: #3d3d3d;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.media-desc {
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 63px;
  text-align: justify;
}
.media-btn {
  background-color: #093979;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
/* 日期区域 */
.media-date {
  width: 95px;
  height: 95px;
  border: 1px solid #093979;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}
.date-day {
  font-size: 40px;
  color: #093979;
  font-weight: bold;
  transition: color 0.3s ease;
}
.date-ym {
  font-size: 16px;
  color: #093979;
  transition: color 0.3s ease;
}
/* 鼠标悬停样式（对应第二行效果） */
.media-item:hover .media-title {
  color: #e57a22;
}
.media-item:hover .media-btn {
  background-color: #e57a22;
}
.media-item:hover .media-date {
  border-color: #e57a22;
}
.media-item:hover .date-day, .media-item:hover .date-ym {
  color: #e57a22;
}
.tzzjy {
  width: 1200px;
  height: auto;
  margin: 0 auto;
}
.article-container {
  max-width: 1200px;
}
/* 单个文章项 - 统一默认样式 + 实线分割线 */
.article-tzzjy {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid #e2e2e2; /* 实线分割线 */
  transition: all 0.3s ease;
  cursor: pointer;
}
.article-container .article-tzzjy:last-child {
  border-bottom: none !important;
}
.article-container a {
  border-bottom: 1px solid #e2e2e2; display: block;
}
.article-container a:last-child {
  border-bottom: none !important;
}
/* 文章内容区 */
.tzzjy-content {
  flex: 1;
  margin-right: 20px;
}
/* 标题 - 统一默认颜色 */
.tzzjy-title {
  font-size: 20px;
  line-height: 2.4;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s ease;
}
/* 简介样式（两行省略） */
.tzzjy-desc {
  font-size: 18px;
  line-height: 2.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 25px;
  text-align: justify;
}
/* 按钮 - 统一默认样式 */
.tzzjy-btn {
  padding: 6px 12px;
  text-align: center;
  border: none;
  display: block;
  color: #fff;
  width: 70px;
  cursor: pointer;
  font-size: 16px;
  background-color: #093979; /* 所有按钮默认统一浅灰色 */
  transition: background-color 0.3s ease;
}
/* 日期块 - 统一默认样式 */
.date-block {
  width: 85px;
  height: 85px;
  border: 2px solid #999; /* 所有日期块边框默认统一浅灰色 */
  color: #073979; /* 所有日期块文字默认统一浅灰色 */
  text-align: center;
  padding: 5px;
  transition: all 0.3s ease;
}
.date-block .num {
  display: block;
  font-size: 40px;
  font-weight: bold;
}
.date-block .date-text {
  display: block;
  font-size: 16px;
}
.article-tzzjy:hover .tzzjy-title a {
  color: #e57a22; /* 标题变橙色 */
}
.article-tzzjy:hover .tzzjy-btn {
  background-color: #e57a22; /* 按钮变橙色 */
}
.article-tzzjy:hover .date-block {
  border-color: #e57a22; /* 日期块边框变橙色 */
  color: #e57a22; /* 日期块文字变橙色 */
}
/* 导航总容器 - 核心：一行显示 */
.arc_con_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  white-space: nowrap;
}
/* 面包屑容器 */
.arc_con_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  white-space: nowrap;
}
/* 面包屑图标 */
.arc_con_breadcrumb_icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
/* 面包屑链接样式（重置默认a标签样式） */
.arc_con_breadcrumb_link {
  color: #333; /* 默认文字色，可按需调整 */
  text-decoration: none; /* 去掉下划线 */
  cursor: pointer;
}
.arc_con_breadcrumb_link:hover {
  color: #093979; /* hover时显指定蓝色，增强交互 */
}
/* 面包屑分隔符 */
.arc_con_breadcrumb_separator {
  margin: 0 4px;
  color: #999;
}
/* 标签导航容器 */
.arc_con_nav_tabs {
  display: flex;
  gap: 4px;
  white-space: nowrap;
}
/* 标签基础样式 */
.arc_con_nav_tab {
  padding: 6px 12px;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 2px;
}
/* 选中标签样式 */
.arc_con_nav_tab_active {
  background: #093979;
  color: #fff;
}
/* 标签内链接样式（重置+继承父元素样式） */
.arc_con_nav_tab_link {
  color: inherit; /* 继承父span的颜色（选中时白色，未选中时默认色） */
  text-decoration: none; /* 去掉下划线 */
  display: block; /* 让链接占满标签区域，点击范围更大 */
  width: 100%;
  height: 100%;
}
.arc_con_nav_tab:hover {
  background: #eee; /* 未选中标签hover效果 */
}
.arc_con_nav_tab_active:hover {
  background: #093979; /* 选中标签hover保持原蓝色 */
  opacity: 0.9; /* 轻微透明，提升交互体验 */
}
/* 标题样式 */
.arc_con_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.4;
}
/* 日期栏样式（分割线改为#e2e2e2实线） */
.arc_con_date {
  font-size: 14px;
  color: #999;
  padding-bottom: 10px;
  margin-bottom: 24px;
  line-height: 50px;
  border-bottom: 1px solid #e2e2e2;
}
/* 正文样式 */
.arc_con_content {
  font-size: 16px;
  line-height: 2.2;
  padding: 30px 0;
  text-align: justify;
}
.arc_con_content img {
  max-width: 100%;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.arc_con_article_nav {
  border-top: 1px solid #e3e3e3; /* 上方实线色值 */
  color: #3d3d3d; /* 文字色值 */
  padding-top: 15px; /* 与顶部实线的间距，可按需调整 */
  width: 100%; /* 容器宽度，可按需调整 */
}
/* 单个导航项：弹性布局对齐 + 间距 */
.arc_con_nav_item {
  display: flex;
  align-items: center;
  margin-bottom: 18px; /* 上下篇之间的间距，可按需调整 */
  font-size: 14px; /* 基础字号，可按需调整 */
}
/* 导航标签（上一篇/下一篇）：灰色背景块 + 内边距 + 间距 */
.arc_con_nav_label {
  background-color: #f0f0f0; /* 标签背景灰，匹配截图视觉 */
  padding: 6px 22px; /* 标签内边距，可按需调整 */
  margin-right: 10px; /* 标签与文字的间距 */
}
/* 导航链接：去掉下划线 + 继承主色 + 鼠标样式 */
.arc_con_nav_text {
  color: inherit; /* 继承容器的3d3d3d色值 */
  text-decoration: none; /* 去掉链接默认下划线 */
  cursor: pointer; /* 鼠标悬浮显示手型 */
}
/* 可选：链接hover状态（轻微变色/加下划线，提升交互体验） */
.arc_con_nav_text:hover {
  color: #1a73e8; /* hover时轻微变蓝，可按需调整 */
  text-decoration: underline; /* hover时显示下划线，可选 */
}
.ht_cen {
  background: url(../img/ht_blank.png) no-repeat;
  background-size: cover;
  height: 137px;
  margin: 0 auto;
  width: 740px;
  position: absolute;
  bottom: 25%;
  left: 50%;
  margin-left: -370px;
  z-index: 999;
}
.mtzx_con img {
  display: block;
  width: 160px;
  margin-top: 12px;
  float: left;
  margin-left: 35px;
}
footer {
  position: relative;
}



/*============ 移动端样式 ===========*/
@media (pointer:coarse) and (min-width: 375px) and (max-width: 480px) {
  .lis {
    margin-top: 8px !important;
    width: 85px !important;
  }
	.h200 {
    height: 100px !important;
    width: 100%;
    clear: both;
}
  .mtzx_con img {
        display: block;
        width: 110px;
        float: none !important; 
        margin: 0 auto !important;
  }
.gsdt_art_img {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}
	.date-box.blue .date-num {
    font-size: 16px;
    font-weight: bold;
    color: #093979;
    line-height: 1;float: left;
}
	.detail-btn.blue {
display: none;
}
	.carousel-articles {
            user-select: none;
            -webkit-user-select: none;
            touch-action: pan-y;
            position: relative;
            width: 100%;
		    
            height: 340px; /* 可调整轮播高度 */
            overflow: hidden; /* 隐藏超出容器的轮播项 */

            display: flex; /* 轮播项横向排列 */
            transition: transform 0.4s ease; /* 左右滑动过渡 */
        }

        .carousel-article {
            flex: 0 0 100%; /* 每个轮播项占满父容器宽度 */
            width: 100%;
            height: 100%;
            pointer-events: none; /* 默认禁止点击 */
            display: block; /* 核心：转为块级元素，确保布局稳定 */
            opacity: 0; /* 非活跃项半透明 */
            transition: opacity 0.5s ease; /* 核心：opacity 淡入淡出过渡，0.5s 时长 */
        }
	.carousel-title {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    word-wrap: break-word;
    word-break: break-word;
    width: 100%;
    height: 45px;
    color: #093979;
    margin-top: 10px;
}
	.carousel-indicators {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
		display: none;
}

        .carousel-article.active {
            pointer-events: auto; /* 活跃项允许点击 */
            opacity: 1; /* 活跃项完全不透明 */
        }
	.gsdt_art_title {
    font-size: 14px;
        color: #3d3d3d;
        margin-bottom: 8px;
        line-height: 1.2;
        font-weight: bold;
        transition: color 0.2s;
        height: 33px;
        overflow: hidden;
}
    .gsdt_art_desc {
    font-size: 12px;
        color: #666;
        margin-bottom: 0;
        line-height: 1.5;
        height: 33px;
        overflow: hidden;
}
	.date-box.blue .date-year {
        float: left;
        margin-top: 0;
    }
	.date-box {
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid transparent;
}
	.gsdt_art_item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #e2e2e2;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
	.date-box.blue {
    display: none;
}
	.pagination-num {
    width: 20px;
    height: 20px;
    font-weight: bold;
}
	.pagination-btn {font-size: 14px;}
  .mtzx_list {
    display: flex;
    flex-direction: column;
    gap: 0;
	  width: 100%;
	          float: left;
  }
  .mtzx_con {
   width: 100%;
        height: 90px;
        box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.3);
        margin-top: 20px;
        text-align: left;
        cursor: pointer;
        font-size: 12px;
        color: #3d3d3d;
        line-height: 100px;
        padding: 10px 0;
	  display: flex;
  }
	.mtzx_con span{ display: block; text-align: center; }
	
	.l_up_down,.r_up_down{ align-items: center;
    text-anchor: middle;
    display: grid;
    text-align: center;
    width: 40%; }
	.l_up_text,.r_up_text{ width: 180px;
    text-align: left;
    line-height: 20px;
    padding-top: 40px;text-indent: 0;} 
	

	
  .f16 {
    font-size: 13px;
  }
  .meiti {
    text-align: center !important;
    font-weight: bold;
  }
  .no-data {
    width: 100vw;
    text-align: center;
  }
  .mt80 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news_bt {
    text-align: right;
    font-size: 20px;
    color: #083979;
  }
  .gsdt_list {
    width: 90%;
    height: 795px;
    margin: 10px auto 10px;
  }
  .news_fbt {
    font-size: 12px;
        color: #093979;
        border: 1px solid #093979;
        padding: 3px 5px;
        margin: 10px 0;
  }
	.h160{height: 70px;}
	.h80{height: 30px;}
	.left-column{ width: 100%;float: right;}
	.article-item{ width: 100%;}
	.article-title{         width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 57px;
        margin: 0;
	 font-size: 14px;
	}
	.article-desc{ display: none;}
	.right-column{width: 100%; float: left;}
	.carousel-img img{ width: 370px; height: 220px; }
  .w500 {
    width: 40vw;
  }
	.gsdt_2{ text-align: left !important;}
	.news_gsdt{
    width: 90%;
    margin: 0 auto;
}
	.gsdt_art_img img {
    width: 120px;
    height: auto; 
    object-fit: cover;
}
  .w1200 {
    width: 90vw;
  }
	.mtzx_cent .mt_tx {
    border-left: 3px solid #e57a22;
    padding-left: 10px;
    line-height: 15px;
    width: 90%;
    height: 14px;
    float: left;
    margin-top: 10px;
}
  #branch-effect-container {
    width: 100vw;
    height: 250px !important;
    margin: 0 auto;
    background-color: #093979;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    cursor: pointer;
    overflow: hidden;
  }
	canvas{ height: 250px !important;}
  .news_slogn {
    font-family: "pfhfonts", "思源黑体 CN", "Noto Sans CJK SC", sans-serif;
    font-size: 15px;
    line-height: 50px;
    color: #fff;
    position: absolute;
    top: 170px;
    right: 12%;
    width: 75vw;
    text-align: center;
    z-index: 10;
    text-align-last: justify;
  }
	.h100 {
    height: 20px;
    width: 100%;
    clear: both;
}
	.media-item {
    display: flex;
    align-items: center;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #e2e2e2;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
	.news_mtbd {
    margin: 0 auto;
    width: 90%;
    height: auto;
}
	.media-list {
    width: 100%;
    margin: 0 auto;
}
	.media-btn {
    display: none;
}
	.media-img {
    width: 120px;
    height: auto;
    border: 1px solid #e2e2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
	.media-img img {
    max-width: 120px;
    max-height: 70px;
}
	.media-title {
    color: #3d3d3d;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
		line-height: 1.6;
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
		 overflow: hidden;
		white-space: normal; 
    text-overflow: ellipsis; 
}
	.media-desc {
    color: #3d3d3d;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 15px;
}
	.media-content {
    flex: 1;
    width: 230px;
     margin-right: 0px; 
     height: 70px; 
}
	.media-date{ display: none;
	}
	.article-container {
    max-width: 100%;
}
	.tzzjy {
    width: 90%;
    height: auto;
    margin: 0 auto;
}
	.tzzjy-content {
    flex: 1;
    margin-right: 20px;
    width: 70%;
}
	.date-block {
    width: 55px;
        height: 55px;
        border: none;
        color: #073979;
        text-align: center;
        line-height: 1.4;
        padding: 5px;
        transition: all 0.3s ease;
}
	.date-block .num {
    display: block;
    font-size: 20px;
    font-weight: bold;
}
	.tzzjy-title {
    color: #3d3d3d;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
		line-height: 1.6;
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
		 overflow: hidden;
		white-space: normal; 
    text-overflow: ellipsis; 
}
	.tzzjy-desc {
   color: #3d3d3d;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 15px;
}
	.date-block .date-text {
    display: block;
    font-size: 14px;
}
	.tzzjy-btn{ display: none;
	}
	.article-tzzjy {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e2e2e2;
    transition: all 0.3s ease;
    cursor: pointer;
}
	.arc_con_breadcrumb{  display: none;
	}
	.arc_con_nav_tabs{  display: none;
	}
	.arc_con_nav_wrapper{  display: none;
	}
	.arc_con_title{ width: 90%; margin: 0 auto; margin-top: 60px;}
	.arc_con_date{ width: 90%; margin: 30px auto 30px; line-height: 20px;}
	.arc_con_content {
    font-size: 16px;
    line-height: 2.2;
    padding: 30px 0;
    text-align: justify;
    width: 90%;
    margin: 0 auto;
}
	.arc_con_article_nav {
    display: none;
}
}

/* =================补充：平板（移动端适配）================ */
@media (pointer:coarse) and (min-width: 481px) and (max-width:1024px) {
	.news_slogn{top: 200px;
        position: absolute;
        left: 5%;
        font-size: 28px;
        text-align: center;
        margin: 0 auto;
        width: 90%; transform: none !important; zoom:1 !important; }    
	.w420 {width:417px;}
.w1200,.h160,.h200,.news_gsdt,.h80,.gsdt_list,.news_mtbd,.tzzjy{zoom:0.6;}
	#branch-effect-container{ height:400px}
	footer {position: inherit; overflow-y: hidden;}
		.mtzx_con {font-size: 0.875rem; letter-spacing: 0px;}
		.gsdt_art_list {width: 90%;margin: 0 auto;}
}

@media (pointer:coarse) and (min-width:1025px) and (max-width:1366px){
	.news_slogn{transform: scale(0.6);
        top: 200px;
        position: absolute;
        left: 0px; font-size: 28px;text-align: center;}    
.w1200,.h160,.h200,.news_gsdt,.h80,.gsdt_list,.news_mtbd,.tzzjy{zoom: 0.8;}
	.gsdt_list {
    width: 1200px;
    height: 375px;
    margin: 10px auto 40px;
}
	.h160 {
    height: 70px;
    width: 100%;
    clear: both;
}
	.gsdt_art_list{zoom:0.8}
	#branch-effect-container{ height:400px}
	footer {position: inherit; overflow-y: hidden; height: 147px;}
	.gsdt_art_list {width: 90%;margin: 0 auto;}
}























