.news-list-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 75px 16px;
}
.news-list-box .news-item-box {
  width: 100%;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}
.news-list-box .news-item-box::before {
  display: block;
  content: '';
  background: #17469d29;
  height: 100%;
  left: -100%;
  position: absolute;
  top: -100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  pointer-events: none;
}
.news-list-box .news-item-box::after {
  display: block;
  content: '';
  background: #17469d29;
  height: 100%;
  left: 100%;
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  pointer-events: none;
}
.news-list-box .news-item-box:last-child {
  margin-bottom: 0;
}
.news-list-box .news-item-box:hover {
  box-shadow: 0 0 20px 0 #17469d88;
}
.news-list-box .news-item-box:hover::before,
.news-list-box .news-item-box:hover::after {
  left: 0;
  top: 0;
}
.news-list-box .news-item-box a {
  line-height: 0;
  display: block;
  position: relative;
}
.news-list-box .news-item-box a::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 2;
  transform: translateY(-50%);
  transition: all 0.6s;
  pointer-events: none;
}
.news-list-box .news-item-box a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 2;
  transform: translateY(-50%);
  transition: all 0.6s;
  pointer-events: none;
}
.news-list-box .news-item-box a:hover::before {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.news-list-box .news-item-box a:hover::after {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.news-list-box .news-item-box a:hover .ovrly.media {
  background: url("../imgs/play.png") center no-repeat;
}
.news-list-box .news-item-box a:hover .ovrly::before {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.news-list-box .news-item-box a:hover .ovrly::after {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.news-list-box .news-item-box a .ovrly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
.news-list-box .news-item-box a .ovrly::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 1px solid #fff;
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  transition: all 0.6s;
  pointer-events: none;
}
.news-list-box .news-item-box a .ovrly::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  transition: all 0.6s;
  pointer-events: none;
}
.news-list-box .news-item-box a .ovrly:hover::before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
.news-list-box .news-item-box a .ovrly:hover::after {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
.news-list-box .news-item-box a .news-text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 0 5% 5%;
  color: #fff;
  line-height: 1.5;
  background-image: linear-gradient(to bottom, #12196900, #121969e3);
}
.news-list-box .news-item-box a .news-text-box .news-date {
  font-size: 12px;
}
.news-list-box .news-item-box a .news-text-box .news-title {
  font-size: 16px;
}
.news-list-box .news-item-box img {
  width: 100%;
  aspect-ratio: 515 / 336;
}
@media (max-width: 1000px) {
  .news-list-box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 45px 16px;
  }
  .news-list-box .news-item-box {
    width: 100%;
    line-height: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  .news-list-box .news-item-box:last-child {
    margin-bottom: 0;
  }
  .news-list-box .news-item-box:hover {
    box-shadow: 0 0 20px 0 #17469d88;
  }
  .news-list-box .news-item-box a {
    line-height: 0;
    position: relative;
  }
  .news-list-box .news-item-box a .news-text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 0 5% 5%;
    color: #fff;
    line-height: 1.5;
    background-image: linear-gradient(to bottom, #12196900, #121969e3);
  }
  .news-list-box .news-item-box a .news-text-box .news-date {
    font-size: 12px;
  }
  .news-list-box .news-item-box a .news-text-box .news-title {
    font-size: 16px;
  }
  .news-list-box .news-item-box img {
    width: 100%;
  }
}
/*# sourceMappingURL=news.css.map */