.company-info {
  width: 1200px;
  margin: 0 auto;
}

.pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.pc .left {
  width: 285px;
  height: 190px;
}

.pc .left img {
  width: 100%;
  height: 100%;
  /* cursor: pointer; */
}

.pc .right {
  width: calc(100% - 220px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 20px;
}

.pc .right .item {
  width: 285px;
  height: 80px;
  /* cursor: pointer; */
}

.pc .right .item img {
  width: 100%;
  height: 100%;
}

.m {
  display: none;
}


@media (max-width: 750px) {
  .company-info {
    width: 100%;
    /* padding: 0 10px; */
  }

  .pc {
    display: none;
  }
  
  .m {
    display: block;
    margin-bottom: 30px;
  }

  /* .pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
  } */
  
  .m .left {
    width: 100%;
    margin-bottom: 14px;
  }
  
  .m .left img {
    width: 100%;
  }
  
  .m .right {
    width: 100%;
  }
  
  .m .right .item {
    width: 100%;
    margin-bottom: 14px;
    /* cursor: pointer; */
  }
  
  .m .right .item img {
    width: 100%;
    height: 100%;
  }

}

