/* 土地储备中心自定义样式 */
body {
  font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* 容器样式 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.navbar-container {
  align-items: flex-end;
}
/* 头部标题样式 */
.header-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  border-bottom: 2px solid #fff;
  letter-spacing: 1px;
}

/* 中间内容区域布局 */
.middle-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding: 30px 0 20px;
}

/* 上半部分布局 */
.top-section {
  display: flex;
  width: 100%;
  gap: 30px;
  margin-bottom: 20px;
}

/* 左侧图片区域 */
.left-image {
  width: 50%;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.left-image:hover {
}

.left-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* 右侧公告公示区域 */
.right-notice {
  width: 50%;
  min-width: 300px;
  border-radius: 8px;
  padding: 0 25px;
  box-sizing: border-box;
}

.right-notice:hover {
}

/* 标题样式 */
.section-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  border-bottom: 2px solid #dfdfdf;
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  border-bottom: 2px solid #3498db;
}

/* 更多链接样式 */
.more-link {
  font-size: 14px;
  color: #999999;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: normal;
}

.more-link:hover {
  color: #2980b9;
}

/* 新闻列表样式 */
.news-list {
  margin-bottom: 12px;
  position: relative;
}

.news-list::before {
  content: '•';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #3498db;
  font-size: 16px;
}

.news-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 10px 15px;
  color: #34495e;
  text-decoration: none;
  border-bottom: 1px dashed #ecf0f1;
}

.news-list a:hover {
  color: #3498db;
}

.news-list .list {
  width: calc(100% - 80px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 10px;
}

.news-list .date {
  font-size: 14px;
  color: #999;
  white-space: nowrap;
}

/* 下半部分布局 */
.bottom-section {
  display: flex;
  width: 100%;
  gap: 30px;
}

/* 左侧通知通报区域 */
.left-notice {
  width: 50%;
  min-width: 300px;
  border-radius: 8px;
  padding: 0 25px;
  box-sizing: border-box;
}

.left-notice:hover {
}

/* 右侧图片展示区域 */
.right-images {
  width: 50%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.right-images a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-top: 8px;
}

.right-images a:hover {
}

.right-images a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.right-images a:hover::after {
  opacity: 1;
}

.right-images img {
  width: 100%;
  height: auto;
  display: block;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .top-section,
  .bottom-section {
    flex-direction: column;
  }

  .left-image,
  .right-notice,
  .left-notice,
  .right-images {
    flex: none;
    width: 100%;
  }

  .header-title {
    font-size: 22px;
    padding: 20px 0;
  }

  .section-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .middle-content {
    gap: 20px;
  }

  .top-section {
    margin-bottom: 20px;
  }

  .right-notice,
  .left-notice {
    padding: 20px;
  }

  .right-images {
    gap: 20px;
  }

  .news-list a {
    padding: 8px 0 8px 15px;
    font-size: 14px;
  }

  .news-list .date {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }

  .header-title {
    font-size: 20px;
    padding: 15px 0;
  }

  .section-title {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .right-notice,
  .left-notice {
    padding: 15px;
  }

  .news-list {
    margin-bottom: 8px;
  }
}
