/* 最新资讯页面样式 - 完全复刻Vue源码 */

/* 页面容器 */
.latest-news-page-wrapper {
  background: #fff;
}

/* 顶部横幅 */
.banner-wrapper {
  height: 300px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.top-banner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 面包屑导航 */
.breadcrumb-wrapper {
  width: 100%;
  height: 48px;
  background: #f2f2f2;
}

/* 面包屑样式 */
.breadcrumb {
  display: flex;
  align-items: center;
  height: 48px;
  font-size: 16px;
  color: #666;
}

.breadcrumb-item {
  cursor: pointer;
  transition: color 0.3s;
}

.breadcrumb-item:hover {
  color: #0075c0;
}

.breadcrumb span {
  margin: 0 4px;
}

.breadcrumb a {
  color: #666666;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  /* color: #0075c0; */
}

.breadcrumb .current {
  color: #0075c0;
  cursor: default;
}

.breadcrumb-item.active {
  color: #0075c0;
  cursor: default;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #999;
}

/* 主要内容容器 */
.mian-common-wrapper {
  width: 1400px;
  margin: 0 auto;
}

/* 列表页面容器 */
.list-page-wrapper {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* 列表标题 */
.list-page-title {
  position: relative;
  font-family: Source Han Sans;
  font-size: 28px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #3d3d3d;
}

.list-page-title::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -8px;
  width: 56px;
  height: 4px;
  opacity: 1;
  background: #0075c0;
}

/* 列表主内容 */
.list-main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 52px;
}

/* 列表项容器 */
.item-content-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  height: 40px;
}

/* 左侧圆点 */
.left-circle-wrapper {
  position: absolute;
  left: 0px;
  /* top: 10px; */
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 1;
  background: #0075c0;
}

/* 资讯描述 */
.item-desc-wrapper {
  margin-left: 18px;
  font-family: Source Han Sans;
  font-size: 18px;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #3d3d3d;
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

/* 鼠标悬停效果 */
.item-desc-wrapper:hover {
  color: #0075c0;
}

/* 资讯时间 */
.item-time-wrapper {
  font-family: Source Han Sans;
  font-size: 16px;
  font-weight: 350;
  line-height: normal;
  text-align: center;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #999999;
  white-space: nowrap;
}

/* 溢出隐藏 */
.over-hide {
  overflow: hidden;
}

/* 光标指针 */
.cur-poi {
  cursor: pointer;
}

/* 分页容器 */
.pagination-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 分页样式 */
.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Source Han Sans;
  font-size: 16px;
  color: #666;
}

/* 分页按钮 */
.pagination-prev,
.pagination-next {
  padding: 4px 12px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
}

.pagination-prev:hover,
.pagination-next:hover {
  border-color: #0075c0;
  color: #0075c0;
}

/* 分页项 */
.pagination-item {
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.pagination-item:hover {
  color: #0075c0;
}

.pagination-item.active {
  background: #0075c0;
  color: #fff;
}

/* 省略号 */
.pagination-ellipsis {
  margin: 0 4px;
}

/* 分页总数 */
.pagination-total {
  margin: 0 8px;
  color: #606266;
}

/* 跳转部分 */
.pagination-jump {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 跳转输入框 */
.pagination-input {
  width: 40px;
  height: 28px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  text-align: center;
  outline: none;
  transition: border-color 0.3s;
}

.pagination-input:focus {
  border-color: #0075c0;
}

/* 跳转按钮 */
.pagination-goto {
  padding: 4px 12px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
}

.pagination-goto:hover {
  border-color: #0075c0;
  color: #0075c0;
}
