/* Style for the team member section */
#row {
    display: flex;
    justify-content: space-around;
    width: 80%; /* 设置行宽度 */
    margin-bottom: 20px; /* 设置行间距 */
}
  
  /* Style for each team member's container */
  .thumbnail {
    text-align: center;
    padding: 20px; /* Optional padding to demonstrate */
    border: 2px solid transparent;
  }
  
  /* Style for the team member images */
  .team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  /* Style for the headings */
  .caption h1 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  /* Style for the paragraphs */
  .caption p {
    width: 100%; /* 设置每个网页框的宽度 */
    height: 50px; /* 设置每个网页框的高度 */
    /*border: 1px solid #ccc; /* 设置边框样式 */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .col-md-3 {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh; /* 设置容器高度 */
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* 隐藏页面的滚动条 */
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1; /* 确保视频背景在页面内容的后面 */
}

.video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#bgvid {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}

