@charset "UTF-8";
/* 新闻中心页面样式 */
/* Banner区域 */
.news-banner {
  height: 75vh;
  background: linear-gradient(135deg, rgba(41, 101, 211, 0.9) 0%, rgba(15, 158, 121, 0.9) 100%), url("../images/新闻中心/banner.png");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
}
.news-banner .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.news-banner .banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.news-banner .banner-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
.news-banner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.news-banner .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-banner .breadcrumb a:hover {
  color: white;
}
.news-banner .breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}
.news-banner .breadcrumb .current {
  color: white;
}

/* Tab导航区域 */
.news-tabs-section {
  background: linear-gradient(to right, rgb(41, 101, 211), rgb(15, 223, 172));
  padding: 0;
}
.news-tabs-section .news-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 0;
}
.news-tabs-section .news-tab {
  flex: 1;
  padding: 2rem 0;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}
.news-tabs-section .news-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}
.news-tabs-section .news-tab.active {
  transform: translateY(-3px);
}
.news-tabs-section .news-tab.active::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: white;
}

/* 新闻列表区域 */
.news-list-section {
  padding: 3rem 0 5rem;
  background: #f5f7fa;
  min-height: 80vh;
  background: url("../images/新闻中心/新闻中心2.svg") center no-repeat;
  background-size: 100% 100%;
}
.news-list-section .news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.news-list-section .news-list-item {
  /*background: white url("../images/关于森工/荣誉.svg") center top no-repeat;*/
  background-size: 100% auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-list-section .news-list-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
/*.news-list-section .news-list[data-tab=基层动态] .news-list-item {*/
.news-list-section .news-list .news-list-item {
  display: flex;
  gap: 2rem;
}
.news-list-section .news-list-image {
  flex: 0 0 280px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  background: #e9ecef;
}
.news-list-section .news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-list-section .news-list-image img.placeholder-img {
  object-fit: contain;
  background: #e9ecef;
  padding: 20px;
}
.news-list-section .news-list-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #20b2aa, #008b8b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
}
.news-list-section .news-list-image:hover img {
  transform: scale(1.05);
}
.news-list-section .news-list-content {
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
  position: relative;
  flex: 1;
}
/*
.news-list-section .news-list[data-tab=森工时政] .news-list-content,
.news-list-section .news-list[data-tab=通知公告] .news-list-content {
  padding-right: 80px;
}
*/
.news-list-section .news-list-date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
  color: #999;
}
.news-list-section .news-list-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(0, 90, 146);
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  padding-bottom: 1rem;
  padding-right: 0;
  width: calc(100% - 70px);
}
.news-list-section .news-list-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, rgb(41, 101, 211), rgb(15, 223, 172));
}
.news-list-section .news-list-title:hover {
  color: rgb(15, 158, 121);
}
.news-list-section .news-list .news-list-title::after {
  width: 98%;
}

.news-list-section .news-list-date-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgb(0, 90, 146);
  border-radius: 4px;
  color: white;
  padding: 0.5rem;
}
.news-list-section .news-list-date-block .date-day {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.news-list-section .news-list-date-block .date-year {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}
.news-list-section .news-list-date-block.news-list-date-gradient {
  background: linear-gradient(135deg, rgb(41, 101, 211), rgb(15, 223, 172));
}
.news-list-section .news-list-desc {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1rem;
  width: calc(100% - 80px);
  -webkit-line-clamp: 4;
}

.news-list-section .news-list-more {
  align-self: flex-end;
  color: rgb(0, 90, 146);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.news-list-section .news-list-more:hover {
  color: rgb(15, 158, 121);
}

/* 分页 */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
}
.pagination .page-info {
  font-size: 1rem;
  color: #666;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination .page-btn,
.pagination .page-num {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.pagination .page-btn:hover,
.pagination .page-num:hover {
  border-color: rgb(0, 90, 146);
  color: rgb(0, 90, 146);
}
.pagination .page-num.active {
  background: rgb(0, 90, 146);
  border-color: rgb(0, 90, 146);
  color: white;
}
.pagination .page-ellipsis {
  color: #999;
  padding: 0 0.5rem;
}

/* 暂无内容提示 */
.column-list-empty {
  text-align: center;
  color: #999;
  font-size: 1.2rem;
  padding: 3rem 0;
}

/*  宫格卡片布局 */
.lqyw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 1rem 0;
}
.lqyw-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.lqyw-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.lqyw-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9ecef;
}
.lqyw-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lqyw-card:hover .lqyw-card-image img {
  transform: scale(1.05);
}
.lqyw-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #20b2aa, #008b8b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
}
.lqyw-card-body {
  padding: 1rem 1.2rem 1.2rem;
}
.lqyw-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lqyw-card-date {
  font-size: 1.1rem;
  color: #999;
  text-align: right;
  margin: 0;
}

/*# sourceMappingURL=news.css.map */
