.articleBanners {
  width: 97%;
  margin: 0 auto;
}

.articleBanners img {
  margin-top: 1em;
}

.page .title h2 {
  font-size: 1.5rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin: 3em 0 0 0;
}

.lineImg {
  width: 30%;
  margin: 0 auto;
  display: block;
  margin: 1em auto 4em auto;
}

.news {
  min-height: 50vh;
  margin: 0 4em;
}

.newsItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4em;
}

.newsItem:nth-child(even) {
  flex-direction: row-reverse;
}

.newsItem > div {
  margin: 0 1em;
  width: 100%;
}

.newsItem .title {
  font-size: 1.3rem;
  font-weight: 500;
}

.newsItem .subTitle {
  line-height: 1.8em;
}

.newsItem img {
  width: 530px;
  height: 400px;
  object-fit: cover;
}

.newsItemImg {
  position: relative;
}

.newsItemImg:hover:after {
  content: '';
  width: 530px;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  background: #efefef;
  opacity: 0.4;
  z-index: 2;
}

.newsItem a {
  background: var(--bg-menu);
  font-weight: 500;
  padding: .5em 2em;
  border-radius: 5px;
  font-size: .8em;
  color: var(--textColor);
  box-shadow: 2px 2px 10px 0px #0002, 1px 1px 3px 0px #0001;
}

.newsItem > div > a:hover {
  color: var(--mainColor);
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .news {
    margin: 0 2em !important;
  }
  .newsItem {
    flex-direction: column-reverse !important;
  }
}

@media screen and (max-width: 428px) {
  .newsItem img {
    width: 300px !important;
    height: 230px !important;
  }
}


