:root {
  --primary-blue: #054696;
  --light-blue: #e9f4ff;
  --title-gray: #333;
}
/* 新闻列表页面样式 */
.news-list-page {
  display: block;
  padding-bottom: 60px;
}

/* 面包屑导航 */
.news-breadcrumb {
  padding: 15px 0;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #6c757d;
}

.breadcrumb-item a {
  color: var(--primary-blue);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* 蓝色分隔线 */
.blue-separator-line {
  height: 3px;
  background-color: var(--primary-blue);
  width: 100%;
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* 列表区域 */
.news-list-container {
  display: flex;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  min-height: 500px;
}

/* 左侧窄条图片 */
.news-left-strip {
  padding: 0;
  height: 100%;
  min-height: 400px;
}

.strip-image-container {
  width: 100%;
  height: 80%;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

/* 右侧新闻列表 */
.news-list-right {
  padding: 0 0 0 60px;
}

/* 单个新闻项 */
.news-item {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.news-item:hover {
  background-color: #f9f9f9;
  border-radius: 5px;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* 新闻标题行 */
.news-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.title-content {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0; /* 防止flex item溢出 */
}

.news-icon {
  color: var(--primary-blue);
  font-size: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.title-vertical-line {
  width: 3px;
  height: 20px;
  background-color: var(--primary-blue);
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 2px;
}

.news-main-title {
  font-size: 1.2rem;
  color: var(--title-gray);
  margin: 0;
  line-height: 1.3;
  text-align: left;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-main-title a {
  color: var(--title-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-main-title a:hover {
  color: var(--primary-blue);
  text-decoration: none;
}

.news-date {
  font-size: 1rem;
  color: #999;
  white-space: nowrap;
  margin-left: 15px;
  flex-shrink: 0;
}

/* 新闻简介 */
.news-summary {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
  padding-left: 53px; /* icon(18px) + margin-right(10px) + line(3px) + margin-right(15px) + 7px调整 = 53px */
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 分页组件 */
.news-pagination-container {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.news-pagination {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item {
  margin: 0 3px;
}

.pagination-link,
.page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  background-color: white;
  border: 1px solid #dee2e6;
  color: var(--primary-blue);
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination-link:hover,
.page-num:hover {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #0056b3;
  text-decoration: none;
}

.page-item.active .pagination-link,
.page-item .page-num-current {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
}

.page-item.disabled .pagination-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #f8f9fa;
  border-color: #dee2e6;
}

.pagination-link i {
  font-size: 14px;
}

/* 无新闻时的提示 */
.no-news-message {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 18px;
}

.no-news-message i {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ddd;
  display: block;
}

/* 主容器 */
.vertical-container {
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

/* 背景英文 - 竖向排版，最底层 */
.background-text {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 25px 0;
  z-index: 1;
  pointer-events: none;
}

.background-char {
  font-size: 3.5rem;
  font-weight: 100; /* 使用细字体 */
  font-family: "Roboto", sans-serif;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* 方块字符 - 右上角 */
.corner-symbol {
  position: absolute;
  top: 0;
  right: 10px;
  color: var(--primary-blue);
  font-size: 2rem;
  font-weight: bold;
  z-index: 2;
  text-align: right;
}

/* 标题区域 */
.title-container {
  position: absolute;
  top: 60px; /* 在方块字符下方 */
  right: 0; /* 从右侧开始 */
  text-align: right;
  z-index: 2;
}

/* 竖向标题 */
.vertical-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.8;
  text-align: right;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 5px;
  text-transform: none;
  margin: 0;
}
