@media screen and (min-width: 1024px) and (orientation: landscape) {
  /* 处理PC端横屏的样式 */
  .company_des {
    width: 50% !important;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin: 100px 0;
  }
  .conmany_item {
    flex-wrap: nowrap !important;
  }
.service-wrapper {
flex-wrap: norwrap !important;
}
}
@media screen and (max-width: 1023px) and (orientation: portrait) {
  /* 处理移动端竖屏的样式 */
  .company_des {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin: 30px 0;
  }
  .conmany_item {
    flex-wrap: wrap !important;
  }
  .prodetail2C .prodetail2ul li {
    width: 100% !important;
  }
.service-wrapper {
flex-wrap:wrap !important;
}
	
}
