@charset "utf-8";
/* news_list */
#news_menu {
  border-bottom: 10px solid #e61f41;
}
#news_menu a {
  display: inline-block;
  padding: 0 30px;
  line-height: 60px;
  font-size: 18px;
}
#news_menu a.sel {
  background: #e61f41;
  color: #fff;
}
#list .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 80px auto;
  width: 80%;
}
#list .list a {
  display: block;
  margin: 20px 1.5%;
  width: 200px;
  font-size: 16px;
}
#list .list a p {
  margin: 0;
  border-radius: 5px;
}
#list .list a p.img {
  width: 100%;
  height: 300px;
  background: #333 no-repeat center top;
  background-size: cover;
}
#list .list a p.txt {
  margin: 10px;
  font-size: 16px;
}
#list .list a p.txt span {
  display: block;
  font-size: 14px;
}
/*手机版*/
@media screen and (max-width: 800px) {
  #news_menu {
    border-bottom-width: 2vw;
  }
  #news_menu a {
    padding: 0;
    width: 30%;
    line-height: 2.4em;
    font-size: 1.1rem;
  }
  #list .list {
    margin: 40px auto;
    width: 90%;
  }
  #list .list a {
    margin: 10px 1.5%;
    width: 47%;
    font-size: 16px;
  }
  #list .list a p.img {
    height: 60vw;
  }
  #list .list a p.txt {
    font-size: 18px;
  }
  #list .list a p.txt span {
    display: block;
    font-size: 14px;
  }
}
