.jus-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.jus-center .layout-1 .item-box {
  padding-bottom: 30px;
}
.jus-center .layout-1 .item-box .image-box {
  display: flex;
  max-width: 100%;
  margin-bottom: 0;
  border-radius: 5px;
  overflow: hidden;
  height: 195px;
  position: relative;
  box-shadow: 13px 15px 15px 0px #f2f2f2;
  transition: all 0.2s;
}
.jus-center .layout-1 .item-box .image-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  background: #2956e7;
  background: linear-gradient(90deg, #2956e7 5%, #6569e6 54%, #9276e5 95%);
  opacity: 0.5;
  transition: all 0.2s;
}
.jus-center .layout-1 .item-box .image-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.jus-center .layout-1 .item-box .image-box .content {
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  position: absolute;
}
.jus-center .layout-1 .item-box .image-box .content .title {
  text-align: center;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.5;
  color: #fff;
  word-break: break-word;
  padding: 0;
  margin: 0;
  transition: all 0.2s;
}
.jus-center .layout-1 .item-box .image-box .content .description {
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.625;
  color: #fff;
  word-break: break-word;
  transition: all 0.2s;
}
.jus-center .layout-1 .item-box .image-box:hover {
  border-color: transparent;
}
.jus-center .layout-1 .item-box .image-box:hover:before {
  opacity: 0.8;
}