.main > section {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.main > .section-1 {
  min-height: 500px;
  background-color: #FFF;
  padding: 80px 0; /* 从120px减少到80px，使内容上移 */
  background-color:#F5F5F5;
}
.main > .section-1 > .content {
  width: 1440px; 
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* 左侧主要内容区域 */
.left-content {
  width: 1020px; /* 固定宽度1020px */
  flex: 0 0 1020px; /* 确保不压缩，固定宽度 */
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 新闻内容区域 */
.news-detail {
  background: white;
  padding: 40px; /* 增加内边距，使内容更美观 */
  border-radius: 8px; /* 添加圆角 */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* 添加阴影 */
}
.news-detail > .title {
  font-size: 44px;
  color: #333333;
  line-height: 66px;
  padding-bottom: 16px;
}
.news-detail > .time {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
  padding-bottom: 40px;
}
.news-detail > p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  padding: 20px 0;
  text-align: justify;
}
/* 修改图片对齐方式为居中 */
.news-detail > img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 20px auto; /* 修改为上下20px，左右自动（居中） */
  display: block; /* 确保图片为块级元素，margin:auto居中生效 */
  border: 1px solid #e0e0e0; /* 添加边框 */
  border-radius: 4px; /* 添加圆角 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 添加轻微阴影 */
}

/* 上下条导航区域 */
.news-navigation {
  height: 112px;
  background-color:#FFFFFF ;
  padding: 20px;
  border-radius: 8px; /* 添加圆角 */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* 添加阴影 */
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prev-news, .next-news {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-label {
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  white-space: nowrap;
}
.nav-title {
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  flex: 1; /* 使标题占据剩余空间 */
}
.nav-title:hover {
  color: #BA3434;
}

/* 右侧其他讯息区域 */
.right-sidebar {
  width: 420px; /* 固定宽度420px */
  flex-shrink: 0;
}
/* 其他讯息标题 - 带左侧短竖线 */
.sidebar-title {
  left: 1px;
  font-size: 24px;
  color: #333333;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 30px;
  padding-left: 12px; /* 为短竖线留出空间 */
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: none; /* 移除下划线 */
}
/* 短竖线样式 */
.title-vertical-line {
  position: absolute;
  left: 0;
  top: 2px; /* 微调位置，使其垂直居中 */
  width: 3px;
  height: 27px;
  background: #BA3434;
  display: block;
  margin-right: 10px;
}
/* 移除原有的下划线样式 */
.sidebar-title {
  border-bottom: none;
  padding-bottom: 0;
}
/* 新闻列表容器 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0; /* 移除卡片之间的gap */
}
/* 其他讯息卡片 */
.news-card {
  width: 420px; 
  background: white;
  position: relative;
  /* 移除所有过渡动画 */
  transition: none !important;
  display: flex;
  flex-direction: column;
  border-bottom: 1px dashed #999999; /* 虚线分隔 */
  border-radius: 0; /* 移除圆角 */
  box-shadow: none; /* 移除阴影 */
  margin: 0 auto; /* 水平居中 */
  padding: 0 0 20px 0; /* 底部内边距 */
  overflow: visible; /* 允许虚线显示 */
}

/* 移除最后一个卡片的虚线 */
.news-card:last-child {
  border-bottom: none;
}

/* 移除所有悬停移动效果 */
.news-card:hover {
  transform: none !important;
  box-shadow: none !important;
  margin: 0 auto !important;
  padding: 0 0 20px 0 !important;
  top: 0 !important;
  left: 0 !important;
}

/* 卡片图片区域 */
.news-card-image {
  width: 354px;
  height: 239px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  margin: 32px;
  border-radius: 6px;
  /* 移除图片过渡动画 */
  transition: none !important;
}

.news-card-image img {
  width: 354px;
  height: 239px;
  object-fit: cover;
  /* 移除图片过渡动画 */
  transition: none !important;
}

/* 卡片内容区域 */
.news-card-content {
  padding: 0 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  height: auto;
  flex-grow: 0;
}

/* 卡片标题 */
.card-title {
  font-size: 20px;
  color: #333333;
  font-weight: bold;
  line-height: 30px;
  margin: 0 0 15px 0;
  padding: 0;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
  width: 100%;
  /* 移除字体变化过渡 */
  transition: none !important;
}

/* 卡片底部信息 */
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-top: none;
  margin-top: 0;
  width: 100%;
  /* 移除过渡动画 */
  transition: none !important;
}

/* 标签样式 */
.card-tag {
  font-size: 16px;
  color: #666666;
  font-weight: normal;
  text-align: left;
  /* 移除过渡动画 */
  transition: none !important;
}

/* 日期样式 */
.card-date {
  font-size: 16px;
  color: #666666;
  font-weight: normal;
  text-align: right;
  /* 移除过渡动画 */
  transition: none !important;
}

/* 卡片链接 */
.card-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-decoration: none;
  cursor: pointer;
}

/* 仅保留标题颜色变化，但移除所有过渡动画 */
.news-card:hover .card-title {
  color: #BA3434;
}

/* 移除所有可能的父容器过渡效果 */
.right-sidebar .news-card,
.right-sidebar .news-card * {
  transition: none !important;
}