@media screen and (max-width: 991px) {
  body {
    width: 991px;
    overflow-x: auto;
  }

  .banner {
    height: 198px;
  }
}

@media screen and (min-width: 991px) {
  .banner {
    height: 20vw;
  }
}

.tabs {
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.tabs > .tab-item {
  font-size: 15px;
  line-height: 100%;
  color: #332d2c;
  padding: 8px;
  background-color: transparent;
}

.tabs > .tab-item:hover {
  color: #fefefe;
  background-color: #0b60a9;
  cursor: pointer;
}

.tabs > .tab-item.active {
  color: #fefefe;
  background-color: #0b60a9;
}

.tabs > .tab-item:not(:last-child) {
  margin-right: 30px;
}

.tabs > .tab-item.active a{color:#fff;}

.content {
    justify-content: center;
    position: relative;
    padding: 50px 0 0 220px;
    min-height: 400px;
}

.news-section{
  display: none;
  margin-bottom: 50px;
}

.news-section.active{
  display: block;
}

.main {
  width: 100%;
}

.main > .title {
  width: 100%;
  height: 58px;
  font-size: 12px;
  line-height: 100%;
  color: #8b8b8c;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 8px;
  
}

.main > .title > span {
  font-size: 20px;
    line-height: 100%;
    color: #000;
    margin-right: 5px;
    border-bottom: 2px solid #0b60a8;
    padding-bottom: 8px;
}

.news-section > .main > .list{
  width: 100%;
  margin-bottom: 50px;
}

.news-section > .main > .list > .item{
  width: 100%;
  /* height: 12vw; */
  border-bottom: 1px solid #ececec;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
}
.news-section > .main > .list > .item a {
    width: 100%;
    position: relative;
}
.news-section > .main > .list > .item > a > img {
  width: 240px;
  height: 135px;
  object-fit: cover;
  object-position: center;
  margin-right: 20px;
}

.news-section > .main > .list > .item > a > .item-content{
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0;
}

.news-section > .main > .list > .item > a > .item-content > .title {
  font-size: 16px;
  line-height: 100%;
  color: #5f5f5f;
  font-weight: bold;
}

.news-section > .main > .list > .item > a > .item-content > .content{
  font-size: 12px;
  line-height: 100%;
  color: #5f5f5f;
  min-height:initial !important;
  padding-top:0;
  padding-left:0;
}

.news-section > .main > .list > .item > a > .item-content > .publish-date{
  font-size: 12px;
  line-height: 100%;
  color: #5f5f5f;
}

.sidebar {
  width: 220px;
  padding: 70px 20px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

.sidebar > .title {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.sidebar > .title span {
    font-size: 20px;
    line-height: 100%;
    color: #000;
    margin-right: 5px;
    border-bottom: 2px solid #0b60a8;
    padding-bottom: 8px;
    font-weight:bold;
    display:block;
    width:100%;
    font-weight:bold;
}

.sidebar > .menu {
  width: 100%;
  padding-right: 15px;
}

.sidebar > .menu > .menu-item {
  width: 100%;
  margin-bottom: 6px;
}

.sidebar > .menu > .menu-item > .title {
  width: 100%;
  height: 44px;
  /*background-color: #eee;*/
  color: #000;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
  justify-content: left;
  cursor: pointer;
  text-indent:20px;
  border-bottom:solid 2px #eee;
}

.sidebar > .menu > .menu-item > .submenu {
  width: 100%;
  overflow: hidden;
}

.submenu > .submenu-item {
  font-size: 12px;
  line-height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  color: #5f5d5d;
}

.submenu > .submenu-item:hover {
  color: #0b60a8;
}