﻿.container {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.banner {
  width: 100vw;
  height: 25vw;
  background: url(/static/images/newsBanner.jpeg) top center no-repeat;
  background-size: cover;
  /* border: solid 1px black; */
}

.news {
  margin: 50px 0;
}

.news-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  /* border: solid 1px black; */
}

.items {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

.item {
  width: 45%;
  padding: 20px 2%;
  /* border: solid 1px black; */
}

.item-title {
  font-size: 16px;
  color: #333;
  line-height: 28px;
  /* border: solid 1px black; */
}
.item-title:hover {
  color: #333;
}

.item-content {
  font-size: 14px;
  color: #999;
  line-height: 24px;
  /* text-indent: 28px; */
  /* border: solid 1px black; */
}

.item-line {
  margin: 20px 0 10px;
  width: 50px;
  border: solid 1px #df4e00;
}

.item-date {
  font-size: 14px;
  color: #888;
  line-height: 28px;
}

.pages {
  padding-top: 30px;
  /* border: solid 1px black; */
}





@media screen and (min-width: 768px) {
}

@media screen and (max-width: 767px) {
  .news {
    margin-top: 0px;
  }
  .item {
    width: 90%;
    padding: 30px 5%;
    /* border: solid 1px black; */
  }
}

@media screen and (min-width: 501px) {
}

@media screen and (max-width: 500px) {
}

