.container {
  background-color: #fff; /* 设置 content 区域的背景颜色 */
  width: 1200px;
  margin: 20px auto; /* 使容器居中 */
  display: flex;
  gap: 10px; /* 减小侧边栏和主要内容之间的间距 */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
}

.decorative-image {
  width: 40px;
  height: 40px;
  margin-right: 10px; /* 图片与文字之间的间距 */
  vertical-align: middle; /* 垂直居中对齐 */
}

main {
  flex: 3; /* 主内容区的宽度 */
  line-height: 1.6; /* 增加行间距 */
  padding: 20px; /* 增加内边距 */
  min-height: 500px; /* 设置最小高度 */
}

main h1 {
  font-size: 24px;
  color: #333;
  text-align: center; /* 标题居中对齐 */
  margin-bottom: 20px; /* 增加标题与内容之间的间距 */
}

main img {
  max-width: 100%; /* 使图像适应容器宽度 */
  height: auto;
  border: 1px solid #ddd; /* 增加边框 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 增加阴影效果 */
  margin-bottom: 20px; /* 增加图像与文字之间的间距 */
}

/* 领导介绍详情页中的头像图片 */
main .leader-img {
  border: 1px solid #ddd; /* 增加边框 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 增加阴影效果 */
  max-width: 400px; /* 限制最大宽度 */
  max-height: 400px; /* 限制最大高度 */
  margin: 0 auto; /* 水平居中 */
  display: block; /* 使图片块级化 */
}

main p {
  font-size: 16px;
  color: #555;
  line-height: 1.8; /* 增加行间距 */
  margin-bottom: 20px; /* 增加段落之间的间距 */
}

main .publish-time {
  text-align: center; /* 发布时间居中对齐 */
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

/* 领导介绍卡片样式 */
.leaders {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* 卡片之间的间距 */
  margin-top: 20px;
}

.leader-card {
display:flex;
 flex-wrap:nowrap; 
  border-bottom:1px dotted #cccccc;
  width:100%;
  gap:40px;
  padding-bottom:10px;
 
}


.leader-card img {
  width: 100px;
  height: 149px; /* 设置固定高度 */
  object-fit: cover; /* 保持图片比例并裁剪 */
  display: block;
  margin-bottom:10px;
}

.leader-card .content1 {
  flex-grow: 1;

}

/* 组织列表样式 */
.organization-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.organization-list li {
  margin-bottom: 10px;
  font-size: 18px;
}

.organization-list a {
  color: #007bff;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

.organization-list a:hover {
  color: #0056b3;
  background-color: #e0e0e0;
}
.con1{
  font-size:20px;
  line-height:38px;
  text-indent:2em;
}
.con2{
   font-size:20px;
  line-height:38px;
  text-indent:2em;
}
      /* 移动端样式 */
@media (max-width: 767px) {

.container {
    background-color: #fff;
     width:100%;
  }
  main h1 {
    font-size: 18px;
  }
}