/* #article {
  line-height: 2;
  color: #666;
}

#article .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

#article .list .item {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
}

#article .list .item .slide {
  padding-bottom: 80% !important;
}

#article .list .item span {
  background-color: #eee;
  display: block;
  text-align: center;
  padding: 10px 0;
} */
.list{
  width: 1200px;
  margin: 0 auto;
}
.list .item{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.list .item .slide{
  width: 100px;
}
.list .item .slide img{
  width: 300px;
  height: 260px;
}
.item-content{
  width: 870px;
  padding: 15px 10px;
  background-color: #FAFAFA;
  position: relative;
}

.item-content a h3{
  color: black;
}
.item-content a:hover h3{
  color: orange;
}
.item-content a span{
  position: absolute;
  bottom: 40px;
  background-color: #FF6600;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
}
.item-content a:hover span{
  background-color: #FF4A00;
}


@media screen and (max-width: 768px) {
  #article .list{
    width: 90vw;
    margin: 0 auto;
  }
  .list .item .slide img{
    width: 90vw;
    height: 55vw;
  }
  .item-content{
    display: none;
  }
}
