﻿.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; */
}

.news-card2 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  /* border: solid 1px black; */
}

.card2-block {
  width: 50vw;
  max-width: 640px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  /* border: solid 1px black; */
}

.block-header {
  margin: 2%;
  width: 96%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #ddd;
}

.header-span {
  margin: 10px 0;
}

.block-header-name {
  font-size: 20px;
  color: #b00;
  border-bottom: solid 3px #b00;
}

.block-header-more {
  font-size: 16px;
  color: #999;
}

.block-body {
  /* margin: 2% 0; */
  width: 96%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
}

.block-body-item {
  margin: 1% 0;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.body-item-title {
  font-size: 16px;
  color: #333;
}

.body-item-date {
  font-size: 16px;
  color: #999;
}





@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; */
  }

  .card2-block {
    width: 98vw;
  }
}

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

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

