.news_banner {
  max-width: 256rem;
  margin: 0 auto;
}
.news_banner .flex {
  padding: 8rem 0;
  min-height: 56.8rem;
  flex-direction: column;
}
.news_banner .head {
  max-width: 93.6rem;
}
.news_banner .head p {
  color: var(--text);
  margin-top: 3rem;
}
.news_banner form {
  display: grid;
  grid-template-columns: 1fr auto;
  background-color: #f7f7f9;
  border-radius: 100px;
  padding: 0.9rem;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.08);
  max-width: 64rem;
  width: 100%;
  margin: 3.6rem auto 0;
}
.news_banner form input[type="text"] {
  font-size: 1.8rem;
  color: var(--title);
  background-color: transparent;
  padding: 0 2.4rem;
}
.news_banner form input[type="text"]::placeholder {
  color: #a5a4a9;
}
.news_banner form .arrow_cir {
  width: 5.4rem;
  height: 5.4rem;
}
.news_banner form input[type="submit"] {
  display: none;
}
.news_nav {
  padding: 3.3rem 0;
}
.news_nav ul {
  gap: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.news_nav .item {
  cursor: pointer;
  display: block;
  text-align: center;
  line-height: 5.2rem;
  transition: all 0.3s;
  border-radius: 100px;
  outline: 1px solid transparent;
  border: 1px solid rgba(71, 71, 72, 0.32);
  text-transform: uppercase;
  min-width: 14.6rem;
  padding: 0 2.7rem;
  letter-spacing: 0.04375em;
}
.news_nav .item:hover,
.news_nav .item.active {
  border-color: var(--primary);
}
.news_nav .item.active {
  outline-color: var(--primary);
}
.news_sticky {
  padding: 8.6rem 0;
}
.news_sticky .flex {
  border-radius: 2.1rem;
  background-color: #f2f2f2;
}
.news_sticky .img {
  width: 49.940476%;
  border-radius: 2.1rem;
  --h: 76.281287%;
}
.news_sticky .head {
  flex: 1;
  padding: 5rem 3.869048% 5rem 5.833333%;
}
.news_sticky .head .date {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.155556em;
}
.news_sticky .head .title {
  margin-top: 1rem;
  color: var(--primary);
  font-size: 4.2rem;
  line-height: 1.285714;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_sticky .head .desc {
  color: var(--text);
  max-width: 63rem;
  margin-top: 3rem;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_sticky .head .btn {
  margin-top: 4.6rem;
}
.news_main {
  padding: 13rem 0;
}
.news_main .list {
  margin-top: 6rem;
}
.news_main .list ul {
  display: grid;
  gap: 5.3rem 2.321429%;
  grid-template-columns: repeat(3, 1fr);
}
.news_main .list .center:has(button) {
  margin-top: 6.4rem;
  min-height: 5.8rem;
}
@media screen and (max-width: 768px) {
  .news_banner .flex {
    padding: 50px 0;
    min-height: unset;
  }
  .news_banner .head p {
    margin-top: 12px;
  }
  .news_banner form {
    margin-top: 30px;
    padding: 6px;
    max-width: 500px;
  }
  .news_banner form input[type="text"] {
    font-size: 15px;
    padding: 0 15px;
  }
  .news_banner form .arrow_cir {
    width: 42px;
    height: 42px;
  }
  .news_nav {
    padding: 20px 0;
  }
  .news_nav ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    overflow: auto;
  }
  .news_nav ul::-webkit-scrollbar {
    display: none;
  }
  .news_nav li:first-child {
    margin-left: auto;
  }
  .news_nav li:last-child {
    margin-right: auto;
  }
  .news_nav .item {
    font-size: 14px;
    padding: 0 15px;
    line-height: 40px;
    min-width: unset;
    white-space: nowrap;
  }
  .news_sticky {
    padding: 50px 0;
  }
  .news_sticky .flex {
    border-radius: 15px;
  }
  .news_sticky .img {
    border-radius: 15px;
  }
  .news_sticky .head {
    padding: 20px;
  }
  .news_sticky .head .date {
    font-size: 14px;
  }
  .news_sticky .head .title {
    font-size: 16px;
    margin-top: 8px;
  }
  .news_sticky .head .desc {
    margin-top: 12px;
  }
  .news_sticky .head .btn {
    margin-top: 15px;
  }
  .news_main {
    padding: 50px 0;
  }
  .news_main .list {
    margin-top: 30px;
  }
  .news_main .list ul {
    gap: 20px 12px;
  }
  .news_main .list .center:has(button) {
    margin-top: 30px;
    min-height: 42px;
  }
}
@media screen and (max-width: 576px) {
  .news_sticky .flex {
    display: block;
  }
  .news_sticky .img {
    width: 100%;
  }
  .news_main .list ul {
    grid-template-columns: 1fr;
  }
}
