*{
  margin: 0;
  padding: 0;
}
p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.xshd-c{
  width: 100%;
}
.xshd-list{
  width: 86%;
  margin: 3vw auto;
}
.list-item{
  width: 100%;
  margin-bottom: 2vw;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, #e5f1ff);
  box-shadow: 0px 0px 15px #e5f1ff;
}
.list-item a{
  display: block;
  width: calc(100% - 0.3vw);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  background: url(../../images/flower.png) no-repeat right top;
  background-size: 7vw auto;
}
.list-line{
  width: 0.3vw;
  background: linear-gradient(to bottom, #6d51f3, #215ef4, #13ccf8);
}
.item-img{
  width: 40%;
  overflow: hidden;
}
.item-img img{
  width: 100%;
  height: 100%;
  -webkit-transition: transform 0.5s linear 0s;
  transition: transform 0.5s linear 0s;
  transform: scale(1);
}
.list-item a:hover .item-img img{
  transform: scale(1.05);
}
.item-info{
  width: 60%;
  /* background: linear-gradient(to bottom, #fff, #e5f1ff); */
  box-sizing: border-box;
  padding: 2vw 3vw;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.item-title{
  width: 100%;
  overflow: hidden;
  font-size: 1vw;
  color: #151515;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.item-js{
  width: 100%;
  overflow: hidden;
  font-size: 0.8vw;
  line-height: 1.6vw;
  color: #4f4f51;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 2vw;
}
.item-date{
  font-size: 0.6vw;
  color: #5a5a5c;
}
@media screen and (max-width: 1920px){
  .item-title{
    font-size: 1.2vw;
  }
  .item-js{
    font-size: 1vw;
  }
  .item-date{
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 1024px){
  .xshd-list{
    margin: 35px auto;
    width: 92%;
  }
  .list-item{
    margin-bottom: 35px;
  }
  .list-item a{
    width: calc(100% - 4px);
    background-size: 12vw auto;
  }
  .list-line{
    width: 4px;
  }
  .item-info{
    padding: 3vw;
  }
  .item-title{
    font-size: 2.4vw;
    line-height: 3.6vw;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .item-js{
    display: none;
  }
  .item-date{
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px){
  .list-item{
    margin-bottom: 4%;
  }
  .list-item a{
    background-size: 16vw auto;
  }
  .item-img{
    width: 45%;
  }
  .item-info{
    width: 55%;
  }
  .item-title{
    font-size: 3.8vw;
    line-height: 5vw;
  }
  .item-date{
    font-size: 3vw;
  }
}