/* 领导展示页面样式 */
.leader-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -70px;
    margin-bottom: 50px;
  }
  
  .leader-item {
    width: 100%;
    border: 1px solid #f6f6f6;
    background: #f6f6f6;
    transform: translateX(0.4rem);
    display: flex;
    align-items: flex-start;  /* 改为顶部对齐 */
    padding: 0.2rem;
    transition: background 0.3s ease;
    margin-top: 80px;
  }
  
  .leader-item .cover {
    width: 150px;
    height: 203px;
    transform: translate(-19px, -29px);
    flex-shrink: 0;
  }
  
  .leader-item .cover img {
    display: block;
    width: 100%;
  
    object-fit: cover; /* 保持图片比例并填充容器 */
    box-shadow: 0 0 10px #ccc;  /* 保持阴影效果 */
  }
  
  .leader-item .leader-info {
    position: relative;
    flex: 1;
    margin-left: 40px;
    padding: 30px 0;  /* 添加固定的上下内边距 */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* 改为顶部对齐 */
    min-height: 203px;
    color: #000;
  }
  
  .leader-item .leader-info::after {
    position: absolute;
    right: 10px;
    bottom: 10px;
    content: "";
    width: 146px;
    height: 139px;
    background: url(../newimages/2022_ibs_20_def.png) no-repeat;
    background-size: 100% 100%;
    opacity: 0.5;
  }
  
  .leader-item:hover {
    background: linear-gradient(to bottom, #b91f2d, #830b0c);
  }
  
  .leader-item:hover .leader-info {
    color: #fff;
  }
  
  .leader-item:hover .leader-info::after {
    opacity: 0.1;
    filter: brightness(2);
    background: url(../newimages/2022_ibs_20_def.png) no-repeat;
    background-size: 100% 100%;
  }
  
  .leader-item .leader-info p {
    margin-bottom: 0.02rem;
    font-size: 16px;
    line-height: 38px;
  }
  
  /* PC端标题样式 */
  .content-header {
    position: relative;
    margin-bottom: 20px;
    border-bottom: none;
  }
  
  .section-title {
    font-weight: bold;
    font-size: 30px;
    color: #000000;
    text-align: center;
    margin: 0px auto 60px;
    display: block;
    width: 100%;
    max-width: 800px;
  }
  
  /* 响应式布局 */
  @media screen and (max-width: 768px) {
    .leader-list {
      margin-top: 5px;
      margin-bottom: -10px;
    }
    
    .leader-item {
      flex-direction: row;
      transform: none;
      align-items: flex-start;
      padding: 0;
      margin-top: 20px;
      border: none;
      background: #F6F6F6;
      box-shadow: none;
    }
  
    .leader-item .cover {
      width: 80px;
      height: 100px;
      transform: none;
      margin: 0;
    }
    
    .leader-item .cover img {
      box-shadow: none;
      position: relative;
      top: -4px;
    }
  
    .leader-item .leader-info {
      margin-left: 17px;
      margin-top: 15px;
      margin-bottom: 17px;
      text-align: left;
      padding: 0;
      min-height: auto;
      position: relative;
    }
    
    .leader-item .leader-info p {
      margin-bottom: 5px;
      font-size: 14px;
      line-height: 1.5;
      color: #3E3E3E;
      position: relative;
      z-index: 2;
    }
    
    .leader-item .leader-info::after {
      display: block;
      position: absolute;
      right: 5px;
      bottom: -10px;
      content: "";
      width: 70px;
      height: 70px;
      background: url(../newimages/2022_ibs_20_def.png) no-repeat;
      background-size: 100% 100%;
      opacity: 1;
      z-index: 1;
    }
    
    .leader-item:hover {
      background: #F6F6F6;
    }
    
    .leader-item:hover .leader-info {
      color: #000;
    }
    
    /* 移动端标题样式 */
    .content-main .content-header {
      margin-bottom: 0;
      position: relative;
      padding-bottom: 0;
      border-bottom: 1px solid #CBCBCB;
    }
    
    .content-main .section-title {
      font-weight: 400;
      font-size: 18px;
      color: #9D1D22;
      text-align: left;
      margin: 0 0 10px 0;
      position: relative;
      padding-left: 12px;
      display: inline-block;
      width: auto;
    }
    
  
  } s