/* 面包屑导航的样式 */
.breadcrumb {
  padding: 10px 15px;
  margin-bottom: 20px;
  width: 1200px; /* 设置宽度 */
  margin: 0 auto; /* 居中对齐 */
}

.breadcrumb .home-icon {
  width: 20px; /* 缩小图标大小 */
  height: 20px; /* 缩小图标大小 */
  margin-right: 5px; /* 图标和文字之间的间距 */
  stroke: currentColor; /* 使用当前文本颜色 */
  fill: none; /* 不填充颜色 */
  stroke-width: 2; /* 设置边线宽度 */
  vertical-align: middle; /* 垂直居中显示图标 */
  margin-top: -5px;
}

.breadcrumb a,
.breadcrumb span {
  display: inline-block;
  text-align: left; /* 文字左对齐 */
  text-decoration: none; /* 去掉下划线 */
  font-size: 16px; /* 调整字体大小 */
  color: #555; /* 调整字体颜色 */
}

.breadcrumb a:hover {
  color: #0056b3; /* 鼠标悬停时的颜色 */
}

.breadcrumb .separator {
  color: #6c757d;
  margin: 0 5px;
  font-size: 16px; /* 调整分隔符的字体大小 */
}
/* 图片居中 */
.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto; /* 图片居中 */
}
/* 内容容器 */
.content {
  min-height: 400px;
}

/* 查询区域 */
.wlfx-search-form {
  width: 1200px;
  border: 0px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between; /* 水平分布 */
}

.wlfx-search-form form {
  display: flex;
  align-items: center;
  width: 100%; /* 占满整个宽度 */
}

.wlfx-search-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  width: 200px; /* 调整输入框宽度 */
  flex: 1; /* 使输入框均匀分布 */
}

.wlfx-search-form button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.wlfx-search-form button:hover {
  background-color: #0056b3;
}

/* 列表区域 */
.article-list {
  width: 1200px;
}

/* 表格 */
.article-list table {
  width: 100%;
  border-collapse: collapse;
}

/* 表头 */
.article-list th {
  background-color: #f0f0f0; /* 调整表头背景色 */
  color: #333;
  padding: 15px;
  text-align: center; /* 文字居中 */
  border-bottom: 1px solid #ddd;
}

/* 表格行 */
.article-list td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center; /* 文字居中 */
  white-space: nowrap; /* 防止换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 多余文字用省略号代替 */
  max-width: 150px; /* 限制最大宽度 */
}

.article-list td a {
  color: #333333;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
  text
}

.article-list td a:hover {

}

/* 奇数行背景色 */
.article-list tr:nth-child(odd) td {
  background-color: #f9f9f9;
}

/* 偶数行背景色 */
.article-list tr:nth-child(even) td {
  background-color: #fff;
}

/* 表格行悬停效果 */
.article-list tr:hover td {
  background-color: #e0e0e0;
}

/* 链接样式 */
.article-list a {
  text-decoration: none;
  color: #007bff;
}

.article-list a:hover {
 
}

.article-detail {
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-detail h1 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.article-detail .meta {
  margin-bottom: 20px;
  text-align: center;
  color: #666;
}

.article-detail .meta span {
  margin: 0 20px;
}

.article-content {
  padding: 10px 20px; /* 增加两边留白 */
  background-color: #fff;
  border: 1px solid #ccc;
  margin-top: 10px;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.pagination a {
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  margin: 0 4px;
  color: #333;
}

.pagination a:hover {
  background-color: #f1f1f1;
}
     /* 移动端样式 */
@media (max-width: 767px) {
  .content {
    width:100%;
   min-height:400px;
}
  .wlfx-search-form {
    width: 100%;
    flex-wrap: wrap;
  }
  .article-item{
  padding:10px 0px;
    margin-bottom:10px;
    align-items: start;
  }
  
  .page-item {
    color: #333333;
    text-decoration: none;
    padding: 4px 8px;
    font-size: 14px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}
  .article-detail h1{
    font-size:18px;
  }
  .article-detail {
    width:100%;
    box-sizing:border-box;
  }
  .article-list{
      width: 100%;
    gap:0px;
  }
  .article-summary h2 {
    font-size: 16px;
  }
  .article-summary .date {
    font-size: 14px;
    margin-bottom:4px;
  }
  .article-summary .excerpt {
    font-size: 14px;
  }
  .view-details {
    bottom: 47px;
  }
    .page-item {
    color: #333333;
    text-decoration: none;
    padding: 4px 8px;
    font-size: 14px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}
  .article-detail h1{
    font-size:18px;
  }
  .pagination a {
    padding: 4px 4px;
 
  }
 .wlfx-search-form form {
    flex-wrap: wrap;
}
   .wlfx-search-form form input{
    margin-bottom:10px;
}
  .article-list th{
  padding:10px;
    font-size:16px;
  }
  .article-list td a{
  font-size:14px;
  }
   .article-list td {
  font-size:14px;
  }
}







