.logoImg{
    display: block;
    border-radius: 10px;
}
.company{
    margin-left: 20px;
}
.swiper-container{
    width: 100%;
    overflow: hidden;
}
h1{
    text-align: center;
    margin-bottom: 50px;
}
#image-container {
    white-space: nowrap;
    overflow: hidden; /* 隐藏滚动条 */
    /* width: 1000px; 容器宽度 */
    width: 100%; /* 容器宽度 */
    height: 15em; /* 容器高度 */
    /* border: 1px solid black; */
    position: relative;
  }
  #image-content {
    display: inline-block;
    /* display: flex; */
    white-space: nowrap;
    animation: scroll-left 30s linear infinite; /* 定义动画 */
  }
  .image {
    /* width: 200px;
    height: 200px; */
    width: 15em;
    height: 15em;
    display: inline-block;
    margin-right: 10px;
    border-radius: 5px;
  }

  /* 定义向左滚动的动画 */
@keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%); /* 滚动到一半 */
    }
  }

  /* 关于我们 */
  .companyInfo{
    background: url(./img/aboutUs.png) no-repeat;
    background-size: 100% 100%;
    color: white;
  }
  
  .companyInfoDiv p{
    text-indent: 2em;
  }



  /* 公司产品 */
  .comProduct{
    margin-top: 50px;
  }

  .proItem{
    background: #fff;
    padding-bottom: 1em;
    border-radius: 5px;
    /* flex: 1 0 21%; */
  }
  .proItemImg{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .proItemImg img{
    width: 17em;
    border-radius: 5px;
  }
  .proItemDesP{
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    margin-top: 1em;
  }
  .proItemDesT{
    font-size: 0.8em;
    color: #747373;
    text-align: center;
    margin-top: 1em;
  }

  .Introduction{
    color: #EA6F10;
    text-align: center;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .companyPhotoItem{
    max-width: 25%;
    flex: 1 0 21%;
    border-radius: 5px;
  }