/* 新闻列表 */
.banner {
  background-image: url(../images/news/banner.jpg);
}
.banner .content{
    color: #fff;
}
.news-tabs {
  display: flex;
  justify-content: center;
  height: 110px;
  padding-top: 30px;
}
.news-tabs li {
  height: 72px;
  line-height: 72px;
  text-align: center;
  font-size: 24px;
  color: #9e9e9e;
  padding: 0 20px;
  margin: 0 22px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.news-tabs li.active,
.news-tabs li:hover {
  color: #303030;
}
.news-tabs li.active::before,
.news-tabs li:hover::before {
  width: 36px;
}
.news-tabs li::before {
  content: "";
  width: 0;
  height: 6px;
  background: #00b4b4;
  border-radius: 6px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.news-list li {
  width: 320px;
  height: 478px;
  border: 1px solid #eee;
  margin: 0 35px 40px 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.news-list li:nth-child(4n) {
  margin-right: 0;
}
.news-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.news-list li .pic {
  width: 320;
  height: 242px;
  border-bottom: 1px solid #eee;
}
.news-list li h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 40px;
  font-size: 24px;
  padding: 10px 12px 2px;
}
.news-list li p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 34px;
  font-size: 20px;
  color: #9e9e9e;
  padding: 10px 12px 2px;
}
.news-list li a.show-details {
  line-height: 26px;
  font-size: 20px;
  color: #00b4b4;
  position: absolute;
  left: 12px;
  bottom: 20px;
}
/* 新闻详情 */
.breadcrumb {
  margin-top: 12px;
}
.article-title {
  line-height: 70px;
  font-size: 46px;
  padding: 5px 0;
}
.article-info {
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  color: #9e9e9e;
  border-bottom: 1px solid #eee;
  margin-bottom: 12px;
}
.article-content {
  margin-bottom: 50px;
}
