@charset "utf-8";
/* CSS Document */
/* 强制彻底去掉所有链接下划线 + 蓝色颜色重置 */
a, a:link, a:visited, a:hover, a:active {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  color: inherit !important; /* 不继承蓝色，用原来的文字颜色 */
}
/* 二级页 */
.top-banner {
  width: 100%;
  height: 380px;
  background: linear-gradient(to right, #f9e8d0, #f5d7a8);
  background-image: url("./images/bg-banner.jpg"); /* 替换为实际banner背景图路径 */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner-logo {
  position: absolute;
  top: 20px;
  left: 50px;
  width: 180px;
}
.banner-title {
  font-size: 60px;
  color: #8a5a2b;
  font-weight: bold;
  margin-bottom: 15px;
}
.banner-subtitle {
  font-size: 24px;
  color: #8a5a2b;
  margin-bottom: 20px;
}
.banner-tag {
  font-size: 18px;
  color: #fff;
  background-color: #c8702c;
  padding: 8px 30px;
  border-radius: 20px;
  display: inline-block;
}
/* 主体容器 */
.container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 30px 0;
  margin-top: -450px;
}
/* 左侧导航栏 */
.sidebar {
  width: 260px;
  margin-right: 40px;
}
.sidebar-item {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 22px;
  color: #8a5a2b;
  background-color: #fadcac;
  margin-bottom: 2px;
  cursor: pointer;
  border-radius: 4px;
}
.sidebar-item.active {
  background-color: #f19a48;
  color: #fff;
}
/* 右侧内容区 */
.content {
  flex: 1;
}
/* 面包屑导航 */
.breadcrumb {
  font-size: 18px;
  color: #999;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: #999;
  text-decoration: none;
}

/* 分割线 */
.divider {
  height: 2px;
  background-color: #a11f2b;
  margin-bottom: 30px;
}
/* 列表内容 */
.news-list {
  list-style: none;
}
.news-item {
  padding: 18px 0;
  border-bottom: 1px dashed #e0e0e0;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: -40px;
}
.news-item::before {
  content: "•";
  color: #ffc107; /* 黄色圆点 */
  font-size: 20px;
  margin-right: 8px;
  line-height: 1;
}
.news-item a {
  font-size: 18px;
  color: #262626;
  text-decoration: none;
  transition: color 0.3s;
  flex: 1;
  padding-right: 100px; /* 给日期留位置 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-date {
  font-size: 14px;
  color: #999;
  position: absolute;
  right: 0;
  top: 12px;
}
/* 分页样式 */
.pagination {
  margin-top: 40px;
  text-align: center;
}
.pagination-btn {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 3px;
  border: 1px solid #e0e0e0;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}
.pagination-btn.active {
  background-color: #f19a48;
  color: #fff;
  border-color: #f19a48;
}
.pagination-btn:hover:not(.active) {
  border-color: #f19a48;
  color: #f19a48;
}
/* 底部版权区 */
.header-banner {
  background: url(../img/banner.jpg) top center no-repeat;
  height: 1136px;
}
.header-banner {
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}
.footer {
  background: url("../img/ft-bg.jpg") top center no-repeat;
  height: 161px;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 160px;
}
/* 荐读书目分类标签样式 */
.book-tabs {
  display: flex;
  gap: 80px;
  margin: 30px 0;
}
.book-tab {
  padding: 6px 30px;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* 政治类默认选中样式 */
.book-tab.politics {
  background-color: #f9e0b7;
  color: #8a5a2b;
}
/* 其他分类默认样式 */
.book-tab.management, .book-tab.professional, .book-tab.humanities, .book-tab.parenting {
  background-color: #f9e0b7;
  color: #8a5a2b;
}
/* 分类选中态 */
.book-tab.active {
  background-color: #c82423 !important;
  color: #fff !important;
}
/* 书籍列表样式（还原效果图） */
.book-list {
  width: 100%;
}
.book-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: #fef3dd;
  margin-bottom: 15px;
  border-radius: 4px;
  display: none; /* 默认隐藏 */
}
/* 默认显示政治类书籍 */
.book-item.politics {
  display: flex;
}
.book-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
}
.book-info {
  flex: 1;
}
.book-title {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}
.book-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
/* 分页样式（还原效果图） */
.book-pagination {
  margin-top: 30px;
  text-align: center;
}
.book-pagination button {
  padding: 4px 10px;
  margin: 0 4px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  color: #666;
  cursor: pointer;
  border-radius: 2px;
}
.book-pagination button.active {
  background-color: #c82423;
  color: #fff;
  border-color: #c82423;
}
/* 领航之声详情页样式 */
.news-detail {
  width: 100%;
  padding: 0 10px;
}
.news-detail-title {
  font-size: 22px;
  color: #333;
  text-align: center;
  font-weight: 600;
  margin: 20px 0 25px;
}
.news-detail-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border: none;
}
.news-detail-content {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}
.news-detail-content p {
  margin-bottom: 15px;
  text-indent: 2em; /* 首行缩进2字符 */
}

.news-detail-content img {
  display: block;
    margin: 0 auto;
  width:600px !important;
  height: auto !important;

}
.news-detail-tuijian {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}
.news-detail-tuijian p {
  margin-bottom: 15px;
  text-indent: 2em; /* 首行缩进2字符 */
}

.news-detail-tuijian img {
  display: block;
    margin: 0 auto;
  width:300px !important;
  height: auto !important;

}