/* 列表页专用样式 */

/* 横幅区域 */
.list-banner {
  position: relative;
  height: 4.53rem;
  background: url(../sztsg_img_library/banner.png) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.list-banner .column-title {
  width: 5.93rem;
  height: 1rem;
  background: linear-gradient(90deg, #78C8EF, #0072AA);
  border-radius: 0px 0.32rem 0px 0px;
  position: relative;
  bottom: -0.7rem;
}

.list-banner .column-title h2 {
  position: absolute;
  right: 1.36rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.3rem;
  color: #fff;
}

/* 面包屑导航 */
.breadcrumb {
  width: 100%;
  height: 0.7rem;
  background: rgba(234, 242, 255, 1);
  padding: 0.1rem 0;
  font-size: 0.16rem;
  color: #666;
}

.breadcrumb .container {
  max-width: 14rem !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0 auto;
  padding: 0;
}

.breadcrumb a {
  color: #1A1A1A;
  margin: 0 0.05rem;
  font-size: 0.16rem;
}

.breadcrumb a:hover {
  color: rgba(0, 114, 170, 1);
}

.breadcrumb .current {
  color: rgba(0, 114, 170, 1);
  margin-left: 0.05rem;
  font-size: 0.16rem;
}

/* 列表内容区域 */
.list-content {
  background: #fff;
  padding: 0.5rem 0 0.6rem;
}

.list-main {
  max-width: 14rem;
  margin: 0 auto;
}

/* 新闻列表 */
.news-list-page {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list-item {
  border-bottom: 1px solid #E5E5E5;
}

.news-list-item a {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  transition: all 0.3s ease;
}

.news-list-item a:hover {
  background: rgba(234, 242, 255, 0.3);
}

.news-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #0072AA;
  border-radius: 50%;
  margin-right: 0.15rem;
  flex-shrink: 0;
}

.news-title-text {
  flex: 1;
  font-size: 0.16rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list-item a:hover .news-title-text {
  color: #0072AA;
}

.news-date {
  font-size: 0.14rem;
  color: #999;
  margin-left: 0.2rem;
  flex-shrink: 0;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.08rem;
}

.page-btn {
  display: inline-block;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  color: #666;
  border: 1px solid #ddd;
  background: #fff;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 0.4rem;
}

.page-btn:hover {
  background: #0072AA;
  color: #fff;
  border-color: #0072AA;
}

.page-btn.active {
  background: #0072AA;
  color: #fff;
  border-color: #0072AA;
}

/* 响应式适配 */
@media (max-width: 800px) {
  .list-banner {
    height: 3rem;
  }
  
  .list-banner .column-title {
    width: 4rem;
    height: 0.8rem;
  }
  
  .list-banner .column-title h2 {
    font-size: 0.24rem;
    right: 0.8rem;
  }
  
  .breadcrumb .container {
    justify-content: flex-start;
    padding: 0 0.2rem;
  }
  
  .list-content {
    padding: 0.5rem 0 0.4rem;
  }
  
  .news-list-item a {
    padding: 0.2rem 0;
  }
  
  .news-title-text {
    font-size: 0.14rem;
  }
  
  .news-date {
    font-size: 0.12rem;
  }
}
