@charset "UTF-8";
.news-container_4_4 {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  transition: all 0.5s;
}
@media (max-width: 1400px) {
  .news-container_4_4 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    transition: all 0.5s;
  }
}
.news-container_4_4 .news-item:nth-child(1) {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
.news-container_4_4 .news-item:nth-child(2) {
  grid-column: 3/span 2;
  grid-row: 1/span 1;
}
.news-container_4_4 .news-item:nth-child(3) {
  grid-column: 3/span 1;
  grid-row: 2/span 1;
}
.news-container_4_4 .news-item:nth-child(4) {
  grid-column: 4/span 1;
  grid-row: 2/span 1;
}
@media (max-width: 1200px) {
  .news-container_4_4 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 180px);
    transition: all 0.5s;
  }
  .news-container_4_4 .news-item:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .news-container_4_4 .news-item:nth-child(2) {
    grid-column: 3/span 2;
    grid-row: 1/span 2;
  }
  .news-container_4_4 .news-item:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 3/span 2;
  }
  .news-container_4_4 .news-item:nth-child(4) {
    grid-column: 3/span 2;
    grid-row: 3/span 2;
  }
}
@media (max-width: 992px) {
  .news-container_4_4 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 130px);
    transition: all 0.5s;
  }
}
@media (max-width: 768px) {
  .news-container_4_4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 190px);
    transition: all 0.5s;
    gap: 15px;
  }
  .news-container_4_4 .news-item:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .news-container_4_4 .news-item:nth-child(2) {
    grid-column: 1/span 2;
    grid-row: 3/span 2;
  }
  .news-container_4_4 .news-item:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 5/span 2;
  }
  .news-container_4_4 .news-item:nth-child(4) {
    grid-column: 1/span 2;
    grid-row: 7/span 2;
  }
}
@media (max-width: 576px) {
  .news-container_4_4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 130px);
    transition: all 0.5s;
    gap: 15px;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 460px) {
  .news-container_4_4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 120px);
    transition: all 0.6s;
  }
}

.news-container_4 .news-item {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
}
.news-container_4 .news-item:before {
  content: "";
  position: absolute;
  display: block;
  height: 50%;
  width: 100%;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 89%);
  z-index: 1;
}
.news-container_4 .news-item::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 5%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.news-container_4 .news-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 112%;
  height: auto;
  object-fit: cover;
}
.news-container_4 .news-item .list_cate {
  position: absolute;
  top: 0.5px;
  right: 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: #fff;
  background: #997933;
  z-index: 2;
  padding: 2px 5px 2px 12px;
  border-bottom-left-radius: 6px;
}
.news-container_4 .news-item .list_cate span {
  color: #fff;
  padding-right: 0px;
}
.news-container_4 .news-item .list_cate span::after {
  content: "、";
  display: inline-block;
  margin-right: 3px;
}
.news-container_4 .news-item .list_cate span:last-child::after {
  padding-right: 0px;
  content: "";
}
.news-container_4 .news-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 15px 20px 20px;
  width: 100%;
  height: 100px;
  z-index: 10;
  color: #fff;
  transition: all 0.5s;
}
.news-container_4 .news-item .overlay .title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-shadow: 2px 1px 15px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-container_4 .news-item .overlay .desc {
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 5px;
  text-shadow: 2px -1px 10px rgba(0, 0, 0, 0.6);
  display: none;
  transition: all 0.6s;
}
.news-container_4 .news-item .overlay .date {
  font-size: 0.8rem;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  transition: all 0.4s;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-container_4 .news-item .overlay .date i {
  color: #fff;
}
.news-container_4 .news-item .overlay:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #7d212a;
  z-index: 1;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}

.news-container_4 .news-item:nth-child(1) .overlay .title {
  font-size: 1.4rem;
}
.news-container_4 .news-item:hover .overlay {
  height: 80%;
  transition: all 0.4s;
}
.news-container_4 .news-item:hover .overlay .desc {
  display: block;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-container_4 .news-item:hover .overlay:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 0, 0, 0.5);
  z-index: -1;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}
.news-container_4 .news-item:nth-child(1):hover .overlay {
  height: 40%;
}
.news-container_4 .news-item:nth-child(2):hover .overlay {
  height: 65%;
}

.news-container_5 {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  transition: all 0.6s;
}
@media (max-width: 1400px) {
  .news-container_5 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    transition: all 0.6s;
  }
}
.news-container_5 .news-item:nth-child(1) {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
.news-container_5 .news-item:nth-child(2) {
  grid-column: 3/span 1;
  grid-row: 1/span 1;
}
.news-container_5 .news-item:nth-child(3) {
  grid-column: 4/span 1;
  grid-row: 1/span 1;
}
.news-container_5 .news-item:nth-child(4) {
  grid-column: 3/span 1;
  grid-row: 2/span 1;
}
.news-container_5 .news-item:nth-child(5) {
  grid-column: 4/span 1;
  grid-row: 2/span 1;
}
@media (max-width: 1200px) {
  .news-container_5 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 180px);
    transition: all 0.6s;
  }
  .news-container_5 .news-item:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .news-container_5 .news-item:nth-child(2) {
    grid-column: 3/span 2;
    grid-row: 1/span 2;
  }
  .news-container_5 .news-item:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 3/span 2;
  }
  .news-container_5 .news-item:nth-child(4) {
    grid-column: 3/span 2;
    grid-row: 3/span 2;
  }
  .news-container_5 .news-item:nth-child(5) {
    grid-column: 1/span 2;
    grid-row: 5/span 2;
  }
}
@media (max-width: 992px) {
  .news-container_5 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 130px);
    transition: all 0.6s;
  }
  .news-container_5:nth-child(5) {
    grid-column: 1/span 2;
    grid-row: 5/span 2;
  }
}
@media (max-width: 768px) {
  .news-container_5 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(10, 200px);
    transition: all 0.6s;
    gap: 15px;
  }
  .news-container_5 .news-item:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .news-container_5 .news-item:nth-child(2) {
    grid-column: 1/span 2;
    grid-row: 3/span 2;
  }
  .news-container_5 .news-item:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 5/span 2;
  }
  .news-container_5 .news-item:nth-child(4) {
    grid-column: 1/span 2;
    grid-row: 7/span 2;
  }
  .news-container_5 .news-item:nth-child(5) {
    grid-column: 1/span 2;
    grid-row: 9/span 2;
  }
}
@media (max-width: 576px) {
  .news-container_5 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(10, 145px);
    transition: all 0.6s;
    gap: 15px;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 460px) {
  .news-container_5 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(10, 125px);
    transition: all 0.6s;
  }
}

.news-container_5 .news-item {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
}
.news-container_5 .news-item:before {
  content: "";
  position: absolute;
  display: block;
  height: 50%;
  width: 100%;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 89%);
  z-index: 1;
}
.news-container_5 .news-item::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 5%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.news-container_5 .news-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  object-fit: cover;
}
.news-container_5 .news-item .list_cate {
  position: absolute;
  top: 0.5px;
  right: 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: #fff;
  background: #997933;
  z-index: 2;
  padding: 2px 5px 2px 12px;
  border-bottom-left-radius: 6px;
}
.news-container_5 .news-item .list_cate span {
  color: #fff;
  padding-right: 0px;
}
.news-container_5 .news-item .list_cate span::after {
  content: "、";
  display: inline-block;
  margin-right: 3px;
}
.news-container_5 .news-item .list_cate span:last-child::after {
  padding-right: 0px;
  content: "";
}
.news-container_5 .news-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 15px 20px 20px;
  width: 100%;
  height: 100px;
  z-index: 10;
  color: #fff;
  transition: all 0.6s;
}
.news-container_5 .news-item .overlay .title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-shadow: 2px 1px 15px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-container_5 .news-item .overlay .desc {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 5px;
  text-shadow: 2px -1px 10px rgba(0, 0, 0, 0.6);
  display: none;
  transition: all 0.6s;
}
.news-container_5 .news-item .overlay .date {
  font-size: 0.8rem;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  transition: all 0.6s;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-container_5 .news-item .overlay .date i {
  color: #fff;
}
.news-container_5 .news-item .overlay:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}

.news-container_5 .news-item:nth-child(1) .overlay .title {
  font-size: 1.4rem;
}
.news-container_5 .news-item:hover .overlay {
  height: 100%;
  transition: all 0.6s;
  padding-top: 13%;
}
.news-container_5 .news-item:hover .overlay .title {
  font-weight: 500;
  color: #997933;
  text-shadow: 2px 1px 15px rgba(0, 0, 0, 0);
}
.news-container_5 .news-item:hover .overlay .desc {
  color: #222;
  margin-top: 10px;
  display: block;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-shadow: 2px 1px 15px rgba(0, 0, 0, 0);
}
.news-container_5 .news-item:hover .overlay .date {
  color: #333;
}
.news-container_5 .news-item:hover .overlay .date i {
  color: #444;
}
.news-container_5 .news-item:hover .overlay:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}

.news-container_6 {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  transition: all 0.6s;
}
@media (max-width: 1400px) {
  .news-container_6 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px);
    transition: all 0.6s;
  }
}
.news-container_6 .news-item:nth-child(1) {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.news-container_6 .news-item:nth-child(2) {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
}
.news-container_6 .news-item:nth-child(3) {
  grid-column: 3/span 1;
  grid-row: 1/span 1;
}
.news-container_6 .news-item:nth-child(4) {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.news-container_6 .news-item:nth-child(5) {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
}
.news-container_6 .news-item:nth-child(6) {
  grid-column: 3/span 1;
  grid-row: 2/span 1;
}
@media (max-width: 1200px) {
  .news-container_6 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 160px);
    transition: all 0.6s;
  }
  .news-container_6 .news-item:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .news-container_6 .news-item:nth-child(2) {
    grid-column: 3/span 2;
    grid-row: 1/span 2;
  }
  .news-container_6 .news-item:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 3/span 2;
  }
  .news-container_6 .news-item:nth-child(4) {
    grid-column: 3/span 2;
    grid-row: 3/span 2;
  }
  .news-container_6 .news-item:nth-child(5) {
    grid-column: 1/span 2;
    grid-row: 5/span 2;
  }
  .news-container_6 .news-item:nth-child(6) {
    grid-column: 3/span 2;
    grid-row: 5/span 2;
  }
}
@media (max-width: 992px) {
  .news-container_6 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 130px);
    transition: all 0.6s;
  }
}
@media (max-width: 768px) {
  .news-container_6 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(12, 160px);
    transition: all 0.6s;
    gap: 15px;
  }
  .news-container_6 .news-item:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .news-container_6 .news-item:nth-child(2) {
    grid-column: 1/span 2;
    grid-row: 3/span 2;
  }
  .news-container_6 .news-item:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 5/span 2;
  }
  .news-container_6 .news-item:nth-child(4) {
    grid-column: 1/span 2;
    grid-row: 7/span 2;
  }
  .news-container_6 .news-item:nth-child(5) {
    grid-column: 1/span 2;
    grid-row: 9/span 2;
  }
  .news-container_6 .news-item:nth-child(6) {
    grid-column: 1/span 2;
    grid-row: 11/span 2;
  }
}
@media (max-width: 576px) {
  .news-container_6 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(12, 140px);
    transition: all 0.6s;
    gap: 15px;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 460px) {
  .news-container_6 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(12, 120px);
    transition: all 0.6s;
  }
}

.news-container_6 .news-item {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
}
.news-container_6 .news-item:before {
  content: "";
  position: absolute;
  display: block;
  height: 50%;
  width: 100%;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 33, 71, 0) 5%, rgba(0, 33, 71, 0.5) 50%, rgba(0, 33, 71, 0.7) 89%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.news-container_6 .news-item::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 5%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.news-container_6 .news-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 116%;
  height: auto;
  object-fit: cover;
}
.news-container_6 .news-item .list_cate {
  position: absolute;
  top: 0.4px;
  right: 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: #fff;
  background: #997933;
  z-index: 20;
  padding: 2px 5px 2px 12px;
  border-bottom-left-radius: 6px;
}
.news-container_6 .news-item .list_cate span {
  color: #fff;
  padding-right: 0px;
}
.news-container_6 .news-item .list_cate span::after {
  content: "、";
  display: inline-block;
  margin-right: 3px;
}
.news-container_6 .news-item .list_cate span:last-child::after {
  padding-right: 0px;
  content: "";
}
.news-container_6 .news-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 15px 20px 20px;
  width: 100%;
  height: 100px;
  z-index: 10;
  color: #fff;
  transition: all 0.6s;
}
.news-container_6 .news-item .overlay .title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-shadow: 2px 1px 15px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-container_6 .news-item .overlay .desc {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 5px;
  text-shadow: 2px -1px 10px rgba(0, 0, 0, 0.6);
  display: none;
  transition: all 0.6s;
}
.news-container_6 .news-item .overlay .date {
  font-size: 0.8rem;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  transition: all 0.6s;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-container_6 .news-item .overlay .date i {
  color: #d2b48c;
}
.news-container_6 .news-item .overlay:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}

.news-container_6 .news-item:hover .overlay {
  height: 100%;
  transition: all 0.6s;
  padding-top: 13%;
}
.news-container_6 .news-item:hover .overlay .title {
  font-weight: 500;
  color: #d2b48c;
  text-shadow: 2px 1px 15px rgba(0, 0, 0, 0);
}
.news-container_6 .news-item:hover .overlay .desc {
  color: #fff;
  margin-top: 10px;
  display: block;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-shadow: 2px 1px 15px rgba(0, 0, 0, 0);
}
.news-container_6 .news-item:hover .overlay .date {
  color: #d2b48c;
}
.news-container_6 .news-item:hover .overlay .date i {
  color: #fff;
}
.news-container_6 .news-item:hover .overlay:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 33, 71, 0.7);
  mix-blend-mode: multiply;
  z-index: -1;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}

.news-container_7 {
  transition: all 0.6s;
}
@media (min-width: 1200px) {
  .news-container_7 {
    display: flex;
    flex-wrap: wrap;
    transition: all 0.6s;
  }
  .news-container_7 .news-left {
    flex: 0 0 60%;
    max-width: 60%;
    min-height: 500px;
    transition: all 0.6s;
  }
  .news-container_7 .news-right {
    flex: 0 0 40%;
    max-width: 40%;
    padding-left: 24px;
    min-height: 500px;
    transition: all 0.6s;
  }
}
@media (max-width: 1200px) {
  .news-container_7 {
    transition: all 0.6s;
  }
  .news-container_7 .news-left {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 500px;
    transition: all 0.6s;
  }
  .news-container_7 .news-right {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 500px;
    transition: all 0.6s;
  }
}
@media (max-width: 1300px) {
  .news-container_7 {
    width: 96%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .news-container_7 {
    width: 88%;
    margin: 0 auto;
    transition: all 0.6s;
  }
}

.news-container_7 .news-item {
  display: block;
  text-align: left;
  text-decoration: none;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.news-container_7 .news-item .pic_col {
  flex: 0 0 auto;
  width: 100%;
}
.news-container_7 .news-item .pic_col .pic_col_ratio {
  position: relative;
  width: 100%;
  min-height: 100px;
  overflow: hidden;
  padding-top: 60%;
}
.news-container_7 .news-item .pic_col .pic_col_ratio img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-out;
}
.news-container_7 .news-item .info_col {
  flex: 0 0 auto;
  width: 100%;
  padding: 0px 5px 20px 0px;
}
.news-container_7 .news-item .info_col .list_cate {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 400;
  z-index: 2;
  margin-top: 10px;
}
.news-container_7 .news-item .info_col .list_cate span {
  color: #222;
  padding-right: 0px;
}
.news-container_7 .news-item .info_col .list_cate span::after {
  content: "、";
  display: inline-block;
  margin-right: 3px;
}
.news-container_7 .news-item .info_col .list_cate span:last-child::after {
  padding-right: 0px;
  content: "";
}
.news-container_7 .news-item .info_col .list_date {
  font-size: 0.85rem;
  color: #444;
  letter-spacing: 0.1rem;
  font-family: "Roboto", sans-serif;
}
.news-container_7 .news-item .info_col .list_date i {
  color: #997933;
}
.news-container_7 .news-item .info_col .list_title {
  font-size: 1.2rem;
  line-height: 1.3em;
  color: #019e9e;
  font-weight: 400;
  display: block;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 768px) {
  .news-container_7 .news-item .info_col .list_title {
    min-height: 45px;
  }
}
.news-container_7 .news-item .info_col .list_desc {
  margin-top: 5px;
  font-size: 0.85rem;
  line-height: 1.6em;
  margin-top: 3px;
  color: #444;
  font-weight: 400;
  display: block;
  letter-spacing: 0.1rem;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 768px) {
  .news-container_7 .news-item .info_col .list_desc {
    min-height: 40px;
  }
}
.news-container_7 .news-item .info_col .list_dep {
  font-size: 0.85rem;
  font-weight: 300;
  color: #333;
}
.news-container_7 .news-item .info_col .list_dep i {
  color: #997933;
  font-size: 1rem;
}

.news-container_7 .news-left .news-item {
  border-bottom: 1px solid #e6e6e6;
}
.news-container_7 .news-left .news-item:hover .pic_col_ratio img {
  width: 101%;
  height: auto;
  transition: all 0.4s ease-out;
}
.news-container_7 .news-left .news-item .info_col .list_title {
  font-size: 1.8rem;
  font-weight: 600;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-container_7 .news-left .news-item .info_col .list_title:hover {
  color: #997933;
}
.news-container_7 .news-left .news-item .info_col .list_desc {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
}
.news-container_7 .news-left .news-item::after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background-color: #019e9e;
  z-index: 1;
  transition: all 0.4s ease-out;
}
.news-container_7 .news-left .news-item:hover::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #019e9e;
  z-index: 1;
  transition: all 0.4s ease-out;
}

.news-container_7 .news-right .news-item {
  margin-bottom: 20px;
}
.news-container_7 .news-right .news-item .pic_col {
  flex: 0 0 40%;
  max-width: 40%;
}
.news-container_7 .news-right .news-item .pic_col .pic_col_ratio {
  padding-top: 62%;
}
.news-container_7 .news-right .news-item .info_col {
  position: relative;
  margin-left: 15px;
  flex: 0 0 calc(60% - 15px);
  max-width: calc(60% - 15px);
  padding: 5px 5px 10px 0px;
  border-bottom: 1px solid #e6e6e6;
}
.news-container_7 .news-right .news-item .info_col::after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background-color: #019e9e;
  z-index: 1;
  transition: all 0.4s ease-out;
}
.news-container_7 .news-right .news-item .info_col:hover::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #019e9e;
  z-index: 1;
  transition: all 0.4s ease-out;
}
.news-container_7 .news-right .news-item .info_col .list_title {
  font-size: 1rem;
  font-weight: 500;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-container_7 .news-right .news-item .info_col .list_desc {
  display: none;
}

.news-container_7 .news-item {
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.news-container_7 .news-item:hover {
  cursor: pointer;
  transition: all 0.4s;
}
.news-container_7 .news-item:hover .info_col .list_title {
  color: #997933;
}

/*# sourceMappingURL=news-index.css.map */
