body {
  background-color: #efefef;
  font-family: Arial, "Microsoft Yahei", "Helvetica Neue", Helvetica, sans-serif;
}
/* 侧边栏容器 */
.le-sidebar {
  width: 68px;
  background-color: #fff;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
  box-sizing: border-box;
}
.le-sidebar .icon {
  font-size: 18px;
  font-weight: bolder;
  color: red;
}
.le-sidebar .sidebar-item,
.le-sidebar a.sidebar-item {
  width: 56px;
  height: 52px;
  margin: 2px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
.le-sidebar hr.divider {
  border: none;
  height: 1px;
  background: #ccc;
  width: 48px;
  margin: 0;
}
.le-sidebar .icon {
  font-size: 18px;
  margin-bottom: 1px;
  line-height: 1;
}
.le-sidebar .text {
  font-size: 13px;
  line-height: 1.2;
}
.le-sidebar .sidebar-item:hover {
  background-color: red;
  color: white;
  border-radius: 4px;
}
.le-sidebar .sidebar-item:hover .icon {
  color: white;
}
.header-container {
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header-container .inner {
  width: 90%;
  max-width: 1200px;
  height: 110px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 0 auto;
}
.header-container .inner .logo {
  display: flex;
}
.header-container .inner .logo img {
  height: 110px;
}
.header-container .inner .logo p {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 110px;
  padding-left: 33px;
}
.header-container .inner .logo p a {
  color: #000;
  text-decoration: none;
}
.header-container .inner .logo p:before {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.9);
  content: "";
}
.header-container .search-container {
  height: 110px;
  line-height: 110px;
  position: relative;
  width: 260px;
}
.header-container .search-container .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("../site/news/search.png") no-repeat center;
  background-size: contain;
}
.header-container .search-container .search-input {
  padding: 10px 10px 10px 45px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
}
.header-container .search-container .search-input:focus {
  border-color: #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}
article {
  /* 分页容器 */
}
article .banner {
  width: 100%;
  height: 160px;
}
article .banner img {
  width: 100%;
  height: 100%;
}
article .news-container {
  width: 90%;
  max-width: 1200px;
  background-color: #fff;
  margin: 0 auto;
  /* 面包屑容器 */
  /* 面包屑项链接 */
  /* 当前页样式 */
  /* 分隔符样式 */
  /* 响应式调整 */
  /* 文章列表容器 */
  /* 单个文章卡片 */
  /* 鼠标滑过效果 */
  /* 文章缩略图 */
  /* 右侧文字内容容器 */
  /* 文章标题 */
  /* 标题 hover 效果（可选） */
  /* 文章摘要 */
  /* 日期样式 */
}
article .news-container .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  /* 支持响应式换行 */
  align-items: center;
  gap: 0.2rem;
  /* 元素间距 */
  color: #666;
  font-size: 14px;
  margin-top: 20px;
  padding: 20px;
  box-sizing: border-box;
}
article .news-container .breadcrumb-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
article .news-container .breadcrumb-item a:hover {
  color: #2c84ff;
  /* hover时变色 */
}
article .news-container .breadcrumb-item.current {
  color: #333;
  font-weight: 500;
}
article .news-container .breadcrumb-separator {
  color: #ccc;
  font-size: 12px;
  /* 可选：使用箭头作为分隔符 */
  /* content: "→"; */
}
@media (max-width: 768px) {
  article .news-container .breadcrumb {
    font-size: 13px;
    gap: 0.25rem;
  }
}
article .news-container .article-list {
  max-width: 800px;
  /* 限制宽度，避免过宽影响阅读 */
  margin: 0 auto;
}
article .news-container .article-item {
  display: flex;
  /* 让图片和文字区域并排 */
  align-items: flex-start;
  /* 顶部对齐 */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin-bottom: 20px;
  gap: 16px;
  /* 图片与文字的间距 */
  /* 过渡动画：所有属性变化在0.3秒内完成，使用缓动函数使效果更自然 */
  transition: all 0.3s ease;
  /* 防止放大时内容溢出 */
  overflow: hidden;
}
article .news-container .article-item:hover {
  /* 放大1.05倍，数值越大放大效果越明显 */
  transform: scale(1.05);
  /* 可选：增强阴影效果，提升立体感 */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
article .news-container .article-item img {
  width: 150px;
  /* 固定图片宽度 */
  height: 100px;
  /* 固定图片高度，保持比例 */
  object-fit: cover;
  /* 裁剪图片，避免拉伸 */
  border-radius: 4px;
  flex-shrink: 0;
  /* 防止图片被压缩 */
}
article .news-container .article-content {
  flex: 1;
  /* 占据剩余空间 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
article .news-container .article-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
  text-decoration: none;
  /* 去掉默认链接下划线 */
  display: block;
  /* 让标题独占一行 */
}
article .news-container .article-title:hover {
  color: #007bff;
}
article .news-container .article-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}
article .news-container .article-date {
  font-size: 12px;
  color: #999;
}
article .container {
  max-width: 1200px;
  margin: 0 auto;
}
article .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  list-style: none;
  margin-bottom: 10px;
}
article .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
article .foxui-icon-xiangzuo-o:before {
  font-family: "iconfont";
  content: '\e601';
  font-size: 10px;
}
article .foxui-icon-xiangyou-o:before {
  font-family: "iconfont";
  content: '\e600';
  font-size: 10px;
}
article .pagination .pageno {
  font-size: 18px;
}
article .pagination .pageno,
article .pagination .pagepre,
article .pagination .pagenext {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  color: #333;
  border: 1px solid #ddd;
  background-color: #fff;
  margin: 0 5px;
  font-size: 16px;
}
article .pagination .pageno a,
article .pagination .pagepre a,
article .pagination .pagenext a {
  color: #242933;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
article .pagination .pageno:not(.disabled):not(.active):hover,
article .pagination .pagepre:not(.disabled):not(.active):hover,
article .pagination .pagenext:not(.disabled):not(.active):hover {
  color: #335df8;
  cursor: pointer;
  border-color: #4285f4;
  background-color: #f0f7ff;
}
article .pagination .pageno.disabled,
article .pagination .pagepre.disabled,
article .pagination .pagenext.disabled {
  color: #999;
  cursor: not-allowed;
}
article .pagination .pageno.disabled a,
article .pagination .pagepre.disabled a,
article .pagination .pagenext.disabled a {
  color: #999;
  cursor: not-allowed;
}
article .pagination .pageno.active,
article .pagination .pagepre.active,
article .pagination .pagenext.active {
  background-color: #4285f4;
  color: #fff;
  border: 1px solid #4285f4;
  font-weight: bold;
}
article .pagination .pageno.active a,
article .pagination .pagepre.active a,
article .pagination .pagenext.active a {
  color: inherit;
  cursor: default;
}
article .pagination .pageinfo {
  margin-left: 40px;
}
/* 底部资讯卡片样式见 related-news.css；页脚样式见 shared-footer.css */

.news-container .article-list h1 {
  font-size: 20px;
  margin-bottom: 10px;
}
.news-container .article-list .tips {
  font-size: 16px;
  margin-bottom: 20px;
}
.clear {
  height: 20px;
  margin-bottom: 20px;
}
.empty-container-inner img {
  width: 200px;
}
