.news {
  margin-top: 100px;
  background-color:#f8f8f8;
}
.banner {
  width: 100%;
  height: auto;
  max-height: 500px;
}
/* bar */
.news-bar {
  margin-bottom: 30px;
  background-color: #fff;
}
.n-b-content {
  width: 100%;
  padding-top: 20px;
  display: flex;
}
.n-b-content .bar-item {
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.n-b-content .bar-item a{
  font-weight: bolder;
  font-size: 22px;
  color: #666666;
  line-height: 33px;
}
.n-b-content .active {
  position: relative;
}
.n-b-content .active:after{
  content: '';
  width: 100%;
  height: 4px;
  background: #ff9a00;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}
.n-b-content .active a{
  color: #333333;
}
.n-b-content .bar-item:first-child {
  margin-right: 80px;
}
/* 新闻*/
.news-list {
  width: 100%;
  margin-bottom: 30px;
}
.news-list .news-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
   align-items: center;
  margin-top: 30px;
  background-color:#fff;
}
.news-list .news-item:hover {
  background-color: rgb(246,237,222);
}
.news-list .news-item:hover .btn {
  background-color: #ff9a00;
}
.news-list .news-item img {
  width: 300px;
  height: 200px;
}
.news-list .news-item .n-i-desc {
  flex:1;
  padding: 10px 20px;
}
.n-i-desc .n-i-d-title {
  line-height: 50px;
  font-size: 22px;
}
.n-i-desc .n-i-d-content {
  font-size: 14px;
  color: #333;
}
.n-i-desc .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 3px 20px;
  color: #fff;
  background-color: #ccc;
  cursor: pointer;
}
.news-list .news-item .n-i-time {
  /*margin-top: 75px;*/
  width: 100px;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-right: 40px;
}
.news-list .news-item .n-i-time div{
  font-size: 30px;
  line-height: 35px;
}
.news-pagination {
  height: 60px;
}
/* 视频 */
.news-video {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.news-video-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 30px;
  margin-right: 20px;
  -moz-box-shadow: 2px 2px 5px #909090;/* for firefox */
  -webkit-box-shadow: 2px 2px 5px #909090;/* for safari or chrome */
  box-shadow:2px 2px 5px #909090;/* for opera or ie9 */
  padding-bottom:10px;
}
.news-video-item .n-v-i-img {
  width: 100%;
  height: 200px;
  position: relative;
  background-position: 0 0;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}
.news-video-item .n-v-i-img .mask{
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  position: absolute;
  z-index: 1;
}
.news-video-item .n-v-i-img .play {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
}
.news-video-item .n-v-i-desc {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  height: 60px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;

}
/*视频详情*/
.video-content {
	padding: 20px 0 50px 0;
}
.video-content .s-l-title {
  padding: 0 20px;
  background-color: #ededed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-size: 16px;
  line-height: 60px;
}
.video-content .s-l-title .fa-times {
  cursor: pointer;
}
