.banner{
  width: 100%;
  height: 340px;
  background: url("../../img/solution/banner.png") no-repeat;
  background-size: 100% 100%;
}
.banner .title{
  padding-top: 80px;
  font-weight: bold;
  font-size: 50px;
  color: #FFFFFF;
}
/* 内容 */
.content{
  width: 100%;
  padding-bottom: 100px;
}
.content .head{
  padding: 30px 0;
}
.content .head span,
.content .head a{
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}
.content .head span{
  color: #FF6117;
}
.content .head img{
  margin: 0 10px;
  width: 6px;
  height: 11px;
}
.content ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.content ul li{
  cursor: pointer;
  width: 340px;
  height: 250px;
  margin-right: 26px;
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
}
.content ul .placeholder{
  height: 0;
  background: transparent;

}
.content ul li .image{
  width: 100%;
  height: 191px;
}
.content ul li .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content ul li .title{
  padding: 20px 20px 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.content ul li .sub{
  box-sizing: border-box;
  padding:0 20px 20px;
  width: 100%;
  height: 42px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  color: #999999;
}
.pagination{
  width: 100%;
  text-align: center;
}