.stshow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
}
.stshow .item {
  width: 47%;
  margin-bottom: 30px;
  cursor: pointer;
  display: flex;
}
.stshow .item:nth-of-type(3n) {
  margin-right: 0;
}
.stshow .item .img {
  width: 130px;
  height: 163px;
  overflow: hidden;
}
.stshow .item .img img {
  transition: all 0.3s linear;
}
.stshow .item .title {
  width: calc(100% - 130px);
  padding: 15px;
  box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.3s linear;
  position: relative;
}
.stshow .item .title p {
  transition: all 0.3s linear;
}
.stshow .item .title > img {
  position: absolute;
  max-width: 214px;
  max-height: 100%;
  bottom: 0;
  right: 0;
}
.stshow .item .title p:nth-of-type(1) {
  font-size: 18px;
  height: 26px;
  color: #000000;
  line-height: 26px;
  -webkit-line-clamp: 1;
}
.stshow .item .title p:nth-of-type(2) {
  font-size: 16px;
  color: #888888;
  margin: 5px 0 0;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.stshow .item .title p:nth-of-type(3) span:nth-of-type(2) {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 5px;
  background-color: #888888b1;
}
.stshow .item:hover .img img {
  transform: scale(1.2);
}
.stshow .item:hover {
  background-image: url(../images//show-item-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.stshow .item:hover .title p {
  color: #dccda6;
}
@media (max-width: 900px) {
  .stshow {
    justify-content: space-between;
  }
  .stshow .item {
    width: 47%;
    margin-right: 0 !important;
  }
}
@media (max-width: 700px) {
  .stshow {
    flex-direction: column;
  }
  .stshow .item {
    width: 100%;
    margin-right: 0 !important;
  }
}
@media (max-width: 500px) {
  .stshow .item {
    width: 100%;
    margin-right: 0 !important;
  }
}
