.bonded{
    max-width: unset;
    width: 100vw;
    height:30vh;
    background-color: #F9FBFB;
    margin-top:-80px;   
    padding-top:0px;
}

.bonded .features1 {
    display: grid;
    /* 重复几次，重复的值  1fr：容器宽度的1/3*/
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 100px 20px;
    column-gap: 0.5vw;
    margin-top:70px;   
  }
  
  .bonded .feature1 {
    display: grid;
    grid-template-areas:
      "icon title"
      "icon content";
    grid-template-columns: 90px 1fr;
    grid-template-rows: 1fr 3fr;
    padding:20px 10px 10px;
    /* box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.05); */
  }
  
  .bonded  .feature-title1 {
    grid-area: title;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-color-dark);
  }
  
  .bonded .feature-content1 {
    grid-area: content;
    font-size: 20px;
    font-weight:bold;
    color: #EF7C1B;
    margin-top: 8px;
  }



  /* 优势 */
  .team-intro {
    margin-top: 48px;
    padding-top: 62px;
    padding-bottom: 52px;
  }
  
  .team-members1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    margin-top: 86px;
  }
  
  .team-member1 {
    background-color: white;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 28px;
    transition: 0.4s;
    display: grid;
    justify-items: center;
  }
  .team-member1 a{
    font-size: 24px;
    color:#494949;
  }
  
  
  .profile-image1 {
    overflow: hidden;
  }
  
  .profile-image1 img {
    width: 100%;
    height: 264px;
    object-fit: cover;
    object-position: top center;
  }
  
  .team-member1 .name {
    margin-top: 18px;
    font-size: 18px;
    font-weight: bold;
    color: #EF7C1B;
  }
  
  .team-member1 .position {
    color: var(--text-color-dark-gray);
    margin-top: 20px;
    margin-bottom: 18px;
  }
  
  .social-links {
    width: 100%;
    max-width: 200px;
    display: flex;
    justify-content: space-between;
    padding: 0 42px;
  }
  
  .social-links li {
    list-style: none;
  }
  
  .social-links li a {
    color: var(--text-color-dark);
    text-decoration: none;
  }
  


  /* 品牌logo */
  .Corporate-logos{
    margin-top:100px;
    height: 60vh;
  }

  .title1{
    text-align: center; 
  }
  
  