.case {
  width: 70%;
  margin: 50px auto;
}
.case .title p {
  width: 60px;
  height: 3px;
  background-color: #0075C2;
}
.case .main > div {
  padding: 5px;
}
.case .main .item {
	width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  cursor: pointer;
  overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.case .main .item>div h5{
	width: 100%;
  overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.case .main .item h5 {
  font-weight: 600;
  line-height: 25px;
}
.case .main .item p {
  margin-bottom: 0px;
}
.case .main .item img {
  width: 285px;
  height: 225px;
}
.case .main .item:hover {
  border: 1px solid #0075C2;
}
.case .more {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
}
.case .more span {
  width: 28%;
  display: inline-block;
  height: 1px;
  background-color: #ccc;
}
.case .more a {
  /* width: 150px; */
  display: inline-block;
  padding: 10px 30px;
  border-radius: 20px;
  background-color: #0075C2;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .case {
    width: 100%;
    padding: 5px;
    margin: 0;
  }
  .case .main .item img {
    width: 100%;
  }
  .case .main > div {
    padding: 5px;
  }
  .case .more {
    width: 100%;
    margin: 10px auto;
    margin-bottom: 30px;
  }
}
