/*
---------------------------------------------
News Bulletin
---------------------------------------------
*/
.page-heading .banner-box {
  height: 320px;
  background-image: url("../images/news/banner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-heading .banner-box .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-heading .banner-box .container .inner-content {
  display: block;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
.page-heading .banner-box .container .inner-content h2 {
  font-size: 58px;
  font-weight: 600;
}
.page-heading .banner-box .container .inner-content .desc {
  font-size: 24px;
}
#news .item {
  margin-bottom: 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#news .item .thumb {
  width: 100%;
  background-color: #f5f3f3;
}
#news .item .thumb img {
  width: 100%;
  height: auto;
  max-height: 150px;
  min-height: 150px;
  display: block;
  vertical-align: middle;
  object-fit: cover;
}
#news .item .thumb .content {
  padding: 0 20px;
  max-height: 150px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#news .item .down-content {
  position: relative;
  z-index: 3;
  background-color: #fff;
}
#news .item .down-content .name {
  padding: 10px 0;
}
#news .item .name {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#news .item .desc {
  font-size: 14px;
  line-height: 24px;
  font-family: MicrosoftYaHei;
  color: #999;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#news .item .info {
  padding: 16px 0 16px 20px;
  height: 92px;
  display: block;
}
#news .item .info ul li {
  list-style: disc;
  font-size: 13px;
  height: 24px;
  line-height: 24px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#news .item .info ul li:before {
  content: '●';
  color: #aaa8a8;
  padding-right: 5px;
}
#news .item .more {
  text-align: right;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #0a6dee;
  line-height: 24px;
  padding-top: 10px;
}
@media (max-width: 1200px) {
  #app #news .item {
    min-height: 200px;
  }
  #app #news .item .info {
    padding: 7px 0 7px 12px;
    height: 82px;
  }
  #app #news .item .down-content .name {
    padding: 5px 0;
  }
  #news .item .thumb img {
    max-height: 120px;
    min-height: 120px;
  }
  #app #news .item .thumb .content {
    max-height: 120px;
    min-height: 120px;
    padding: 5px 10px;
  }
}
@media (max-width: 767px) {
  #app #news .item .thumb img {
    width: 100%;
    height: auto;
    max-height: 150px;
    min-height: 150px;
  }
  #app #news .item .thumb .content {
    max-height: 150px;
    min-height: 150px;
  }
}
