.banner {
  height: 540px;
  width: 100%;
}

.banner .swiper-container {
  height: 540px;
  overflow: hidden;
  width: 100%;
}

.banner .swiper-container .swiper-scrollbar {
  display: none;
}

.banner .swiper-container img {
  height: 100%;
  width: 100%;
}

.company-show{
  background: #f7f8fa;
}

.company-show>.content{
  padding: 30px 0;
}

.content .companys {
  display: grid;
  grid-template-columns: repeat(auto-fill, 290px);
  align-items: center;
  grid-gap: 20px 12px;
  flex-wrap: wrap;
}

.content .companys .company {
  margin-top: 20px;
  width: 250px;
  height: 350px;
  background: #FFFFFF;
  box-shadow: 4px 6px 15px 1px rgba(32, 26, 28, 0.03);
  cursor: pointer;
}

.content .companys .company .detail {
  box-sizing: border-box;
  padding: 10px;
}

.content .companys .company .img-container {
  width: 100%;
  height: 200px;
}

.content .companys .company .detail .title {
  font-size: 16px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content .companys .company .detail .desc {
  font-size: 13px;
  line-height: 25px;
  color: #999999;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
-webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}