    .lanss {
      margin: 20px 0 40px;
    }

    .lanss li.on {
      background: #DD0021;
      color: white;
    }

    .lanss li {
      font-size: 16px;
      color: #262626;
      height: 46px;
      line-height: 46px;
      padding: 0 96px;
      box-sizing: border-box;
      background: #EEEEEE;
      cursor: pointer;
      float: left;
      margin-top: 26px;
    }

    .wp_articlecontent {
      margin-left: 20px;
      margin-right: 20px;
    }

    .hasMoreTab .bd {
      clear: both;
      position: relative;
    }

    .conWrap {
      margin-bottom: 60px;
    }

    body .list_ml .yc {
      width: 775px;
      float: right;
    }

    .list_ml li {
      width: 11%;
    }

    .list_gjfw li {
      width: 25%;
      float: left;
      line-height: 35px;
      padding-left: 0px;
      box-sizing: border-box;
    }

    body .list_ml .zm {
      width: 15px;
      float: left;
      clear: both;
      height: 35px;
    }

    .list_ml li a {
      font-size: 15px;
      display: inline;
    }

    .list_gjfw li a {
      color: #252525;
    }

    .cons a {
      overflow: hidden;
    }

    a {
      text-decoration: none;
      color: #000000;
    }

    .list_gjfw {
      margin-bottom: 5px;
    }

    body .list_ml .title {
      background: none;
      margin: 20px 0 15px 0;
      border-bottom: 1px solid #CDCDCD;
      padding: 10px 0;
    }

//* 固定整体宽度容器 */
.leader-container {
    width: 800px;
    font-family: "Microsoft YaHei", sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* 每排容器 */
.leader-team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

/* 成员卡片 */
.leader-member {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
    text-align: center;
    padding-bottom: 15px;
    flex: 0 1 230px;
}

.leader-member:hover {
    transform: translateY(-5px);
}

.leader-member img {
    width: 100%;
    height: 250px;       /* 固定高度，可根据需要调整 */
    object-fit: cover;   /* 保持比例裁剪，防止拉伸 */
    display: block;
    border-bottom: 1px solid #eee;
}

.leader-member-name {
    font-size: 1em;
    font-weight: bold;
    color: black;
    margin: 10px 0 5px;
}

.leader-member-position {
    font-size: 0.85em;
    color: black;
    font-weight: bold;
    margin-bottom: 5px;
}

.leader-member-desc {
    font-size: 0.9em;
    color: black;
    padding: 0 10px;
}

/* 第一排：两个居中 */
.leader-row-center {
    justify-content: center;
}

/* 第二排：两个左右分散 */
.leader-row-space {
    justify-content: space-between;
}

/* 第三排：三个均匀排列 */
.leader-row-even {
    justify-content: space-between;
}

/* 响应式 */
@media (max-width: 768px) {
    .leader-container {
        width: 100%;
    }
    .leader-team-container {
        justify-content: center !important;
    }
    .leader-member {
        flex: 0 1 calc(45% - 20px);
    }
}
@media (max-width: 480px) {
    .leader-member {
        flex: 0 1 100%;
    }
}