﻿.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;
  background-color: #fff;
  /* border: solid 1px black; */
}

.news-title {
  /* text-align: center; */
  font-size: 24px;
  line-height: 40px;
  margin: 0 10px;
  text-align: center;
}

.news-date {
  width: 100%;
  border-bottom: solid 1px #ccc;
  color: #999;
  padding: 10px 0;
  text-align: center;
}

.news-img {
  width: 80%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  /* border: solid 1px black; */
}
.news-img>img {
  width: 100%;
  max-width: 600px;
  max-height: 600px;
}


.news-content {
  margin: 20px 20px;
  line-height: 28px;
  color: #666;
  font-size: 14px;
  /* border: solid 1px black; */
}

.news-content p {
  margin-bottom: 10px;
  line-height: 24px;
  text-indent: 28px;
}

.news-nav {
  width: 100%;
  margin: 20px 15px 10px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.news-nav>a {
  margin: 0 10px;
}






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

@media screen and (max-width: 767px) {
  .banner {
    display: none;
  }
  .news-content {
    margin: 20px;
  }
  .news {
    margin-top: 20px;
  }
}

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

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

