/* 列表页样式 - 基于首页设计风格 */
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', 'Microsoft YaHei', sans-serif;
  color: #1D1D39;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.zh_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 面包屑导航 */
.zh_breadcrumb {
  background: #EBFAE9;
  padding: 20px 0;
  margin-top: 80px;
  border-bottom: 1px solid rgba(38, 144, 27, 0.1);
}

.zh_breadcrumb_container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zh_breadcrumb_icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.zh_breadcrumb_text {
  font-size: 14px;
  color: #535362;
}

.zh_breadcrumb_text a {
  color: #26901B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_breadcrumb_text a:hover {
  color: #31B923;
}

/* 主内容区 */
.zh_list_main {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

/* 列表网格 - 画廊式布局 */
.zh_list_content {
  width: 100%;
}

.zh_list_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.zh_list_card {
  background: #EBFAE9;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(38, 144, 27, 0.1);
}

.zh_list_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(38, 144, 27, 0.2);
}

.zh_list_card_image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.zh_list_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zh_list_card:hover .zh_list_card_image img {
  transform: scale(1.1);
}

.zh_list_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 144, 27, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zh_list_card:hover .zh_list_card_overlay {
  opacity: 1;
}

.zh_list_card_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #26901B;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.zh_list_card_btn:hover {
  background: #26901B;
  color: #fff;
  transform: scale(1.05);
}

.zh_list_card_info {
  padding: 25px;
}

.zh_list_card_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1D1D39;
  margin: 0;
  line-height: 1.3;
}

.zh_list_card_title a {
  color: #1D1D39;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_list_card_title a:hover {
  color: #26901B;
}

/* 分页控件 */
.zh_pagination {
  margin-top: 50px;
  text-align: center;
}

.zh_pagination .pagination {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh_pagination .pagination li {
  display: inline-block;
}

.zh_pagination .pagination a,
.zh_pagination .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  background: #EBFAE9;
  color: #1D1D39;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.zh_pagination .pagination a:hover {
  background: #26901B;
  color: #fff;
  border-color: #26901B;
}

.zh_pagination .pagination .active span {
  background: #26901B;
  color: #fff;
  border-color: #26901B;
}

/* 右侧边栏 */
.zh_list_sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.zh_sidebar_widget {
  background: #EBFAE9;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(38, 144, 27, 0.1);
}

.zh_sidebar_widget_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(38, 144, 27, 0.2);
}

.zh_sidebar_widget_title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1D1D39;
  margin: 0;
}

.zh_sidebar_widget_icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.zh_sidebar_widget_content {
  width: 100%;
}

.zh_sidebar_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh_sidebar_list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(38, 144, 27, 0.1);
}

.zh_sidebar_list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.zh_sidebar_list a {
  display: block;
  color: #535362;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.zh_sidebar_list a:hover {
  color: #26901B;
  padding-left: 10px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .zh_list_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .zh_list_main {
    grid-template-columns: 1fr;
  }
  
  .zh_list_sidebar {
    position: static;
    margin-top: 40px;
  }
  
  .zh_list_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }
  
  .zh_breadcrumb {
    margin-top: 70px;
    padding: 15px 0;
  }
  
  .zh_list_main {
    padding: 40px 0;
  }
  
  .zh_list_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .zh_sidebar_widget {
    padding: 25px;
  }
  
  .zh_list_card_image {
    height: 220px;
  }
}
