body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* 主体容器 */
.st-container {
  width: 1400px;
  margin: 0 auto;
  background-color: white;
  padding: 20px 30px;
  min-height: 100vh;
}

/* 面包屑导航 */
.breadcrumb {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #be0000;
}

.breadcrumb span {
  margin: 0 5px;
  color: #999;
}

/* 内容布局 */
.content-wrapper {
  display: flex;
  justify-content: space-between;
}

/* 新闻列表 */
.news-list {
  width: 960px;
}

.news-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px dashed #eee;
}

.news-item:last-child {
  border-bottom: none;
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.news-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.news-title a:hover {
  color: #be0000;
}

.news-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 40px;
}

.news-time {
  color: #999;
  font-size: 12px;
}

/* 广告区 */
.ad-section {
  width: 420px;
  padding-left: 20px;
}

.ad-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.ad-image:hover {
  transform: scale(1.02);
}

/* 分页 */
.pagination {
  margin-top: 40px;
  text-align: center;
  padding: 20px 0;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  border: 1px solid #ddd;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.pagination a:hover {
  background-color: #f0f0f0;
  color: #be0000;
}

.pagination .current {
  background-color: #be0000;
  color: white;
  border-color: #be0000;
}

.pagination .prev-next {
  padding: 8px 20px;
}