.company-list {
  overflow: hidden;
}
.company-list .item{
  margin: 10px 0;
  float: left;
  width: 100%;
  overflow: hidden;
}

.company-list .item .image {
  float: left;
  width: 30%;
  height: 200px;
}
.company-list .item .image a{
  display: block;
  width: 100%;
  height: 100%;
}
.company-list .item .image img {
  width: 100%;
  height: 100%;
}
.company-list .item .info {
  float: right;
  width: 70%;
  padding:20px 40px;
}
.company-list .cor-name {
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-list .cor-msg {
  margin-top: 20px;
  font-size: 15px;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}