  	.section4{
		width: 70%;
    margin: 0 auto;
	}
  h2 {
		margin-top:6%;
      text-align: center;
      font-size: 4.5vh;
      margin-bottom: 30px;
      color: #004b93; /* 标题蓝 */
	  font-family: Source Han Sans CN;
    }

    /* 容器：自动适配屏幕 */
    .team-container {
      display: flex;
      flex-wrap: nowrap; /* 禁止换行，确保竖线完整显示 */
      justify-content: center;
      gap: 40px;         /* 列之间的间距 */
      max-width: 1200px; /* 限制最大宽度 */
      margin: 0 auto;    /* 居中 */
      position: relative;
    }

    /* 左侧/右侧 列 */
    .column {
      flex: 1; 
      min-width: 280px;  /* 防止过度缩小 */
      max-width: 500px;  /* 限制最大宽度，确保内容居中 */
      display: flex;
      flex-direction: column;
      align-items: center; /* 列内内容水平居中 */
    }

    /* 标题样式 */
    .column h3 {
      font-size: 26px;
      text-align: center;
      margin-bottom: 20px;
      color: #004b93;
     /* border-bottom: 2px solid #004b93;*/
      padding-bottom: 8px;
      font-weight: 600;
      width: 100%; /* 标题宽度为列的100% */
      max-width: 400px; /* 限制标题最大宽度 */
    }

    /* 内容容器：宽度为标题的一半，且居中显示 */
    .content-wrapper {
      width: 60%; /* 内容宽度为标题宽度的一半 */
      max-width: 280px; /* 限制内容最大宽度 */
    }

    /* 分隔线：贯穿整个内容区域 */
    .divider {
      width: 1px;
      background-color: #4675cc;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      /* 在移动端隐藏竖线 */
      display: none;
    }
	.board-three{    letter-spacing: 30px;}
	.board-threes{    letter-spacing: 23px;}
	.board-for{    letter-spacing: 18px;}
    @media (min-width: 769px) {
      .divider {
        display: block;
      }
    }

    /* 卡片样式 - 确保内容居中对齐 */
    .card {
      display: flex;
      align-items: center; /* 垂直居中对齐 */
      margin-bottom: 20px;
      padding: 10px;
      border-radius: 6px;
      transition: background-color 0.3s ease;
      min-height: 80px; /* 确保所有卡片高度一致 */
    }

    .card:hover {
      /*background-color: #f5f7fa;*/
    }

    .card img {
      width: 100px; 
      height: 100px; 
      border-radius: 50%; /* 圆形头像 */
      margin-right: 30px;
      object-fit: cover;  /* 防止图片变形 */
      border: 2px solid #1b4ca7;
      flex-shrink: 0; /* 防止头像缩小 */
	      background: #f1f1f1;
    }

    .card .info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center; /* 使文本在垂直方向居中 */
    }

    .card .name {
      font-weight: 600;
      font-size: 22px;
      margin-bottom: 4px;
      position: relative;
      display: inline-block;
      padding-bottom: 4px;
    }

    /* 姓名底部中间字的下划线，针对三字名对齐中间字底部 */
    .card .name::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 13%; /* 调整此值可精确控制下划线位置，针对三字名优化 */
      transform: translateX(-50%);
      width: 1.2em; /* 约一个字的宽度 */
      height: 2px;
      background-color: #1b4ca7; /* 与主题色一致 */
    }

    .card .title {
      font-size: 12px;
      color: #666;
      font-weight: 400;
      word-wrap: break-word; /* 处理长职务名称换行 */
    }

    /* 董事会成员 蓝底白字样式 */
    .board-member {
      background-color: #1b4ca7;
      color: #fff;
      padding: 12px 16px;
      margin-bottom: 53px;
      border-radius: 6px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: transform 0.2s ease;
      position: relative;
    }
	.board-member:first-child {
		margin-top: 50px;
	}
    /* 职位与姓名之间的竖线分隔 */
    .board-member::after {
      content: "";
      width: 1px;
      height: 16px;
      background-color: rgba(255, 255, 255, 0.9); /* 半透明白色竖线 */
      position: absolute;
      left: 52%;
      transform: translateX(-50%);
    }
	.board-member .mingz{
		padding-right: 28px;
	}
    .board-member span:first-child {
      font-weight: 0;
       /* padding-right: 20px;给竖线留出空间 */
    }

    .board-member span:last-child {
      font-weight: 0;
     /* padding-left: 20px;*/ /* 给竖线留出空间 */
    }

    .board-member:hover {
      /*transform: translateX(5px);*/
    }

    /* 响应式：手机端单列/company/companya */
    @media (max-width: 768px) {
		.teamMain{
			display:none;
		}
      .team-container {
        flex-direction: column;
        flex-wrap: wrap;
      }
      .column {
        min-width: auto;
        width: 100%;
        max-width: 100%;
      }
      
      /* 移动端内容宽度调整为80%，确保内容不拥挤 */
      .content-wrapper {
        width: 80%;
        max-width: 300px;
		font-size: 15px;
      }
      
      /* 在移动端两列之间添加水平线分隔 */
      .column:first-child {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #004b93;
      }
      
      /* 移动端调整竖线样式 */
      .board-member::after {
        height: 12px;
      }
      
      .board-member span:first-child {
        padding-right: 15px;
      }
      
      .board-member span:last-child {
        padding-left: 15px;
      }
    }
