.news_banner {
  position: relative;
  background-color: #000;
}
.news_banner .img {
  max-width: 256rem;
  margin: 0 auto;
}
.news_banner .wrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}
.news_banner .content {
  height: 100%;
  pointer-events: auto;
}
.news_banner .flex {
  height: 100%;
}
.news_banner .head {
  width: 50%;
  padding: 8rem 0;
  margin-bottom: 1.764706%;
}
.news_banner .head p {
  margin-top: 2rem;
}
.news_banner form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 0.6rem;
  background-color: #fff;
  max-width: 47.6rem;
  margin-top: 4rem;
}
.news_banner form input[type="text"] {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  color: var(--title);
  padding: 0 2.2rem;
}
.news_banner form input[type="text"]::placeholder {
  color: #5e646e;
}
.news_banner form input[type="submit"] {
  width: 5.6rem;
  height: 5.6rem;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  border-radius: 0.6rem 0.5rem 0.5rem 0.6rem;
  background: url(../img/icon-search-w2.svg) no-repeat center / 40% var(--primary);
}
.news_banner form input[type="submit"]:hover {
  background-color: var(--secondary);
}
.news_nav {
  padding: 4rem 0;
}
.news_nav ul {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.news_nav li:first-child {
  margin-left: auto;
}
.news_nav li:last-child {
  margin-right: auto;
}
.news_nav .active a,
.news_nav a:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.news_nav a {
  display: block;
  color: #5e646e;
  text-align: center;
  transition: all 0.3s;
  border-radius: 2.2rem;
  border: 1px solid #e8eaee;
  padding: 1.1rem 1.9rem;
}
.news_sticky {
  padding: 3.5rem 0;
}
.news_sticky .news_sticky_swiper {
  overflow: hidden;
}
.news_sticky .news_sticky_swiper .swiper-slide {
  gap: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_sticky .news_sticky_swiper .img {
  display: block;
  width: 55.588235%;
  --h: 67.724868%;
  border-radius: 1.4rem;
}
.news_sticky .news_sticky_swiper .img .tag {
  position: absolute;
  left: 2.6rem;
  top: 2.2rem;
  z-index: 2;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  background-color: var(--primary);
  padding: 0.8rem 1.4rem;
  border-radius: 0.5rem;
}
.news_sticky .news_sticky_swiper .info {
  flex: 1;
  max-width: 56rem;
}
.news_sticky .news_sticky_swiper .info .cat {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.news_sticky .news_sticky_swiper .info .title {
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1.2;
  margin-top: 1.7rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_sticky .news_sticky_swiper .info .metas {
  color: #8a909a;
  font-size: 1.25rem;
  margin-top: 2rem;
}
.news_sticky .news_sticky_swiper .info .desc {
  color: #5e646e;
  max-width: 44rem;
  line-height: 1.75;
  margin-top: 1.8rem;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_sticky .news_sticky_swiper .info .btn {
  margin-top: 2.6rem;
}
.news_main {
  padding: 9rem 0 12rem;
}
.news_main .list ul {
  display: grid;
  gap: 3rem 2.132353%;
  grid-template-columns: repeat(3, 1fr);
}
.news_main .navigation {
  margin-top: 9.7rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .news_sticky .news_sticky_swiper .info .title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .news_sticky .news_sticky_swiper .info .title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .news_banner .head {
    margin: 0;
    padding: 50px 0;
  }
  .news_banner .head p {
    margin-top: 12px;
  }
  .news_banner .head form {
    max-width: 320px;
    margin-top: 20px;
  }
  .news_banner .head form input[type="text"] {
    padding: 0 15px;
    font-size: 15px;
  }
  .news_banner .head form input[type="submit"] {
    width: 44px;
    height: 44px;
  }
  .news_nav {
    padding: 30px 0;
  }
  .news_nav ul {
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    overflow: auto;
  }
  .news_nav ul::-webkit-scrollbar {
    display: none;
  }
  .news_nav a {
    white-space: nowrap;
  }
  .news_sticky {
    padding: 30px 0;
    overflow: hidden;
  }
  .news_sticky .news_sticky_swiper {
    overflow: visible;
  }
  .news_sticky .news_sticky_swiper .img {
    width: 50%;
    border-radius: 10px;
  }
  .news_sticky .news_sticky_swiper .img .tag {
    left: 15px;
    top: 15px;
    font-size: 12px;
  }
  .news_sticky .news_sticky_swiper .info .title {
    font-size: 20px;
    margin-top: 12px;
  }
  .news_sticky .news_sticky_swiper .info .metas {
    margin-top: 12px;
  }
  .news_sticky .news_sticky_swiper .info .desc {
    margin-top: 12px;
  }
  .news_sticky .news_sticky_swiper .info .btn {
    margin-top: 20px;
  }
  .news_sticky .swiper_btns {
    width: auto;
    position: static;
    transform: translate(0);
    padding: 0 20px;
    justify-content: flex-end;
    margin-top: 30px;
  }
  .news_main {
    padding: 50px 0;
  }
  .news_main .list ul {
    gap: 20px 12px;
  }
  .news_main .navigation {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .news_banner .head {
    width: 100%;
  }
  .news_sticky .news_sticky_swiper .swiper-slide {
    display: block;
  }
  .news_sticky .news_sticky_swiper .img {
    width: 100%;
  }
  .news_sticky .news_sticky_swiper .info {
    margin-top: 20px;
  }
  .news_main .list ul {
    grid-template-columns: 1fr;
  }
}
