/* #region news_nav (parts/news-nav.php) */
.news_nav {
  padding: 4.35rem 0px 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.news_nav .nav_list {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.news_nav .nav_list li {
  flex-shrink: 0;
}
.news_nav .nav_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.39rem;
  height: 5.6rem;
  padding: 0px 1rem;
  border-radius: 10rem;
  border: 1px solid rgba(34, 29, 21, 0.2);
  font-weight: 450;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  background-color: #fff;
  transition: color 0.3s, border-color 0.3s;
}
.news_nav .nav_list a:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.news_nav .nav_list li.active a {
  color: #fff;
  border-color: transparent;
  background-image: linear-gradient(205deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 20%), linear-gradient(165deg, rgba(146, 206, 251, 0) 50%, rgba(146, 206, 251, 0.85) 100%), linear-gradient(170deg, #f99106 25%, #ffc07b 60%, #ffe0b8 85%);
  box-shadow: 0px 0.8rem 1.6rem rgba(175, 189, 198, 0.55);
}
/* #endregion */

/* #region shared bits of the news parts */
.news_list .head,
.video_list .head {
  position: relative;
  text-align: center;
}
.news_list .head .tag,
.video_list .head .tag {
  position: absolute;
  left: 0.14rem;
  top: 0.05rem;
}
.news_featured .meta,
.news_list .meta {
  font-size: 1.4rem;
  line-height: 1.9rem;
}
.news_featured .meta em,
.news_list .meta em {
  color: var(--primary);
  font-weight: 380;
  letter-spacing: 0.03em;
}
.news_featured .meta time,
.news_list .meta time {
  margin-left: 0.6rem;
  color: #7c877f;
  font-weight: 305;
}
.news_featured .meta time::before,
.news_list .meta time::before {
  content: '|';
  margin-right: 0.6rem;
}
/* #endregion */

/* #region news_featured (parts/news-featured.php) */
.news_featured {
  position: relative;
  z-index: 1;
  padding-top: 10.92rem;
}
.news_featured::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  width: 100%;
  height: 117.4rem;
  pointer-events: none;
  background: url(../img/news-bg.webp) no-repeat center top / 100% 100%;
}
.news_featured .featured_box {
  display: flex;
  justify-content: space-between;
}
.news_featured .featured_item {
  position: relative;
  display: block;
  overflow: hidden;
  width: 47.87%;
  height: 58.56rem;
  border-radius: 2.4rem;
  color: #fff;
  background-color: #04102f;
}
.news_featured .featured_item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.news_featured .featured_item:hover > img {
  transform: scale(1.04);
}
.news_featured .featured_item::after {
  content: '';
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(0deg, #04102f 0%, #04102f 12.16%, rgba(4, 16, 47, 0) 62.2%);
}
.news_featured .featured_item .info {
  position: absolute;
  left: 4.56rem;
  right: 4.56rem;
  bottom: 3.91rem;
  z-index: 2;
}
.news_featured .featured_item .meta time {
  color: rgba(255, 255, 255, 0.74);
}
.news_featured .featured_item .title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 62rem;
  margin-top: 1.1rem;
  font-weight: 380;
  font-size: 2.6rem;
  line-height: 3.6rem;
}
.news_featured .side_list {
  display: flex;
  flex-direction: column;
  gap: 1.83rem;
  width: 48.1%;
}
.news_featured .side_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 18.3rem;
  padding: 0px 2.11rem 0px 3.45rem;
  border-radius: 2.4rem;
  border: 2px solid transparent;
  background-color: rgba(255, 255, 255, 0.54);
  transition: 0.4s;
}
.news_featured .side_item .info {
  flex: 1;
  min-width: 0px;
}
.news_featured .side_item .title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 38.6rem;
  margin-top: 1.08rem;
  color: var(--dark);
  font-weight: 380;
  font-size: 2.2rem;
  line-height: 3.2rem;
  transition: color 0.3s;
}
.news_featured .side_item .img {
  flex-shrink: 0;
  width: 24.4rem;
  height: 13.72rem;
  border-radius: 1.2rem;
}
.news_featured .side_item:hover .img img {
  transform: scale(1.06);
}
.news_featured .side_list:not(:hover) .side_item.active,
.news_featured .side_item:hover {
  border-color: var(--primary);
  background-color: #fff9ee;
}
.news_featured .side_item:hover .title {
  color: var(--primary);
}
/* #endregion */

/* #region news_list (parts/news-list.php) */
.news_list {
  position: relative;
  z-index: 2;
  padding: 15.96rem 0px 3rem;
}
.news_list .body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 7.98rem;
  margin-top: 6.31rem;
}
.news_list .main {
  flex: 1;
  min-width: 0px;
}
.news_list .article_list li + li {
  margin-top: 2.08rem;
}
.news_list .article_list li.hide {
  display: none;
}
.news_list .article_list li.show {
  animation: news_list_fade 0.5s ease;
}
@keyframes news_list_fade {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.news_list .article_item {
  display: flex;
  height: 29.62rem;
  padding: 3.1rem 3.18rem;
  border-radius: 2.4rem;
  border: 1px solid #e4e8ee;
  transition: 0.4s;
}
.news_list .article_item .img {
  flex-shrink: 0;
  width: 42.1rem;
  height: 23.22rem;
  border-radius: 2.6rem;
}
.news_list .article_item:hover .img img {
  transform: scale(1.05);
}
.news_list .article_item .info {
  flex: 1;
  min-width: 0px;
  padding: 3.94rem 0px 0px 6.42rem;
}
.news_list .article_item .title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 55rem;
  margin-top: 1.1rem;
  color: var(--dark);
  font-weight: 380;
  font-size: 2.6rem;
  line-height: 3.6rem;
  transition: color 0.3s;
}
.news_list .article_item .more {
  display: flex;
  align-items: center;
  gap: 1.83rem;
  margin-top: 2.7rem;
  font-weight: 450;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.news_list .article_item .more::after {
  content: '';
  width: 3.34rem;
  height: 3.34rem;
  border-radius: 50%;
  transition: 0.3s;
  background: var(--dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9' fill='none' stroke='%23fff' stroke-width='1.5'%3E%3Cpath d='M1.3 7.7 7.7 1.3M2.2 1.3h5.5v5.5'/%3E%3C/svg%3E") no-repeat center / 0.8rem auto;
}
.news_list .article_list:not(:hover) .article_item.active,
.news_list .article_item:hover {
  border-color: #f18200;
  background-color: #fff9ee;
  box-shadow: inset 0px 0px 0px 1px #f18200, 0px 1.4rem 2.6rem rgba(240, 131, 0, 0.1);
}
.news_list .article_item:hover .title {
  color: var(--primary);
}
.news_list .article_item:hover .more::after {
  transform: rotate(45deg);
  background-color: var(--primary);
}
.news_list .btn_box {
  margin-top: 4.49rem;
  text-align: center;
}
.news_list .btn_box.hide {
  display: none;
}
.news_list .btn_more {
  min-width: 19.99rem;
}
.news_list .sidebar {
  position: sticky;
  top: 11rem;
  flex-shrink: 0;
  width: 43.87rem;
}
.news_list .side_title {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 450;
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.news_list .side_title::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0.43rem;
  width: 0.4rem;
  height: 2.26rem;
  background-color: #fc8216;
}
.news_list .hot_box {
  padding: 2.74rem 4.52rem 2.3rem 3.13rem;
  border-radius: 2.4rem;
  border: 1px solid #e4e8ee;
  background-color: #fff;
}
.news_list .hot_list {
  margin-top: 2.4rem;
}
.news_list .hot_list a {
  display: flex;
  padding: 1.715rem 0px;
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.news_list .hot_list li + li a {
  border-top: 1px solid #e4e8ee;
}
.news_list .hot_list em {
  flex-shrink: 0;
  width: 4rem;
  color: rgba(15, 26, 18, 0.74);
  font-weight: 450;
}
.news_list .hot_list li:nth-child(-n + 3) em {
  color: #fc8216;
}
.news_list .hot_list li:first-child em {
  font-weight: 520;
}
.news_list .hot_list span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 29rem;
  color: #16202c;
  font-weight: 380;
  transition: color 0.3s;
}
.news_list .hot_list a:hover span {
  color: var(--primary);
}
.news_list .laofan_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 29.2rem;
  margin-top: 3.1rem;
  padding: 2.84rem 3.23rem 3.48rem;
  border-radius: 2.3rem;
  color: #fff;
  background: #010e30 url(../img/news-laofan-bg.webp) no-repeat center / cover;
}
.news_list .laofan_box p {
  max-width: 32.5rem;
  margin-top: 2.26rem;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.news_list .laofan_box .btn {
  width: 100%;
  margin-top: auto;
}
/* #endregion */

/* #region video_list (parts/video-list.php) */
.video_list {
  padding: 15.1rem 0px 2.9rem;
}
.video_list .video_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7.17rem 5.85rem;
  margin-top: 6.4rem;
}
.video_list .video_grid li.hide {
  display: none;
}
.video_list .video_grid li.show {
  animation: video_list_fade 0.5s ease;
}
@keyframes video_list_fade {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.video_list .video_item {
  display: block;
}
.video_list .cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 368 / 655;
  border-radius: 2.6rem;
  background-color: #04102f;
}
.video_list .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.video_list .video_item:hover .cover img {
  transform: scale(1.05);
}
.video_list .cover::after {
  content: '';
  position: absolute;
  inset: 0px;
  opacity: 0;
  transition: opacity 0.4s;
  background-color: rgba(4, 16, 47, 0.25);
}
.video_list .video_item:hover .cover::after {
  opacity: 1;
}
.video_list .play,
.video_list .video_popup .tip::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 6.4rem;
  height: 6.4rem;
  margin: -3.2rem 0px 0px -3.2rem;
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 17'%3E%3Cpath fill='%23211d1b' d='M1.6.4 10.3 7.2c.9.7.9 2 0 2.6L1.6 16.6C.9 17.1 0 16.6 0 15.8V1.2C0 .4.9-.1 1.6.4Z'/%3E%3C/svg%3E") no-repeat 53% center / 1.09rem auto;
}
.video_list .video_item:hover .play {
  transform: scale(1.1);
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 17'%3E%3Cpath fill='%23fff' d='M1.6.4 10.3 7.2c.9.7.9 2 0 2.6L1.6 16.6C.9 17.1 0 16.6 0 15.8V1.2C0 .4.9-.1 1.6.4Z'/%3E%3C/svg%3E");
}
.video_list .video_item .title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 5.6rem;
  margin-top: 2.66rem;
  color: var(--dark);
  font-weight: 520;
  font-size: 2rem;
  line-height: 2.8rem;
  transition: color 0.3s;
}
.video_list .video_item:hover .title {
  color: var(--primary);
}
.video_list .video_item time {
  display: block;
  margin-top: 1.12rem;
  color: #7c877f;
  font-weight: 305;
  font-size: 1.4rem;
  line-height: 1.9rem;
}
.video_list .btn_box {
  margin-top: 7.02rem;
  text-align: center;
}
.video_list .btn_box.hide {
  display: none;
}
.video_list .btn_more {
  min-width: 19.99rem;
}
.video_list .video_popup {
  position: fixed;
  inset: 0px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
}
.video_list .video_popup.active {
  opacity: 1;
  visibility: visible;
}
.video_list .video_popup .video_inner {
  position: relative;
  height: 80vh;
  aspect-ratio: 9 / 16;
  max-width: 90vw;
  border-radius: 2.6rem;
  background-color: #000;
  transform: scale(0.94);
  transition: transform 0.3s;
}
.video_list .video_popup.active .video_inner {
  transform: scale(1);
}
.video_list .video_popup .poster,
.video_list .video_popup video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.video_list .video_popup video {
  display: none;
  position: absolute;
  inset: 0px;
  object-fit: contain;
  background-color: #000;
}
.video_list .video_popup.playing video {
  display: block;
}
.video_list .video_popup .tip {
  position: absolute;
  inset: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  border-radius: inherit;
  color: #fff;
  background-image: linear-gradient(0deg, rgba(4, 16, 47, 0.95) 0%, rgba(4, 16, 47, 0.5) 40%, rgba(4, 16, 47, 0.2) 100%);
}
.video_list .video_popup .tip::before {
  content: '';
  opacity: 0.5;
}
.video_list .video_popup.playing .tip {
  display: none;
}
.video_list .video_popup .tip .title {
  font-weight: 450;
  font-size: 2.2rem;
  line-height: 3.2rem;
}
.video_list .video_popup .tip p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.video_list .video_popup .video_close {
  position: absolute;
  right: -6rem;
  top: 0px;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
  background: rgba(255, 255, 255, 0.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23fff' stroke-width='1.6'%3E%3Cpath d='M1 1l12 12M13 1 1 13'/%3E%3C/svg%3E") no-repeat center / 1.4rem auto;
}
.video_list .video_popup .video_close:hover {
  transform: rotate(90deg);
}
/* #endregion */

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .news_featured .side_item .title {
    font-size: 2rem;
    line-height: 3rem;
  }
  .news_list .body {
    gap: 4rem;
  }
  .news_list .article_item .img {
    width: 36rem;
    height: auto;
  }
  .news_list .article_item .info {
    padding: 2.4rem 0px 0px 4rem;
  }
  .news_list .sidebar {
    width: 38rem;
  }
}

@media screen and (max-width: 1024px) {
  .news_featured .featured_box {
    flex-direction: column;
    gap: 2rem;
  }
  .news_featured .featured_item,
  .news_featured .side_list {
    width: 100%;
  }
  .news_list .body {
    flex-direction: column;
  }
  .news_list .main {
    width: 100%;
  }
  .news_list .sidebar {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
  }
  .news_list .laofan_box {
    height: auto;
    margin-top: 0px;
  }
  .video_list .video_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .news_nav {
    padding: 20px 0px 16px;
  }
  .news_nav .content {
    padding: 0px;
  }
  .news_nav .nav_list {
    justify-content: flex-start;
    gap: 8px;
    padding: 6px 20px 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .news_nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .news_nav .nav_list a {
    width: auto;
    height: 38px;
    padding: 0px 18px;
    font-size: 13px;
  }
  .news_list .head,
  .video_list .head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .news_list .head .tag,
  .video_list .head .tag {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 14px;
  }
  .news_featured .meta,
  .news_list .meta {
    font-size: 12px;
    line-height: 1.5;
  }
  .news_featured {
    padding-top: 30px;
  }
  .news_featured::before {
    height: 900px;
  }
  .news_featured .featured_box {
    gap: 12px;
  }
  .news_featured .featured_item {
    height: auto;
    aspect-ratio: 335 / 250;
    border-radius: 14px;
  }
  .news_featured .featured_item .info {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .news_featured .featured_item .title {
    max-width: none;
    margin-top: 6px;
    font-size: 17px;
    line-height: 1.45;
  }
  .news_featured .side_list {
    gap: 10px;
  }
  .news_featured .side_item {
    height: auto;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
  }
  .news_featured .side_item .title {
    max-width: none;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
  }
  .news_featured .side_item .img {
    width: 110px;
    height: 72px;
    border-radius: 8px;
  }
  .news_list {
    padding: 50px 0px 20px;
  }
  .news_list .body {
    gap: 30px;
    margin-top: 24px;
  }
  .news_list .article_list li + li {
    margin-top: 12px;
  }
  .news_list .article_item {
    flex-direction: column;
    height: auto;
    padding: 12px 12px 18px;
    border-radius: 14px;
  }
  .news_list .article_item .img {
    width: 100%;
    height: auto;
    aspect-ratio: 421 / 232;
    border-radius: 10px;
  }
  .news_list .article_item .info {
    padding: 14px 4px 0px;
  }
  .news_list .article_item .title {
    max-width: none;
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.5;
  }
  .news_list .article_item .more {
    gap: 10px;
    margin-top: 12px;
    font-size: 13px;
  }
  .news_list .article_item .more::after {
    width: 26px;
    height: 26px;
    background-size: 7px auto;
  }
  .news_list .btn_box {
    margin-top: 24px;
  }
  .news_list .btn_more,
  .video_list .btn_more {
    min-width: 0px;
  }
  .news_list .sidebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .news_list .side_title {
    padding-left: 12px;
    font-size: 18px;
    line-height: 26px;
  }
  .news_list .side_title::before {
    top: 5px;
    width: 3px;
    height: 16px;
  }
  .news_list .hot_box {
    padding: 20px 20px 10px;
    border-radius: 14px;
  }
  .news_list .hot_list {
    margin-top: 12px;
  }
  .news_list .hot_list a {
    padding: 12px 0px;
    font-size: 14px;
    line-height: 1.6;
  }
  .news_list .hot_list em {
    width: 26px;
  }
  .news_list .hot_list span {
    max-width: none;
  }
  .news_list .laofan_box {
    padding: 20px;
    border-radius: 14px;
  }
  .news_list .laofan_box p {
    max-width: none;
    margin-top: 10px;
    padding-left: 12px;
    font-size: 14px;
    line-height: 1.6;
  }
  .news_list .laofan_box .btn {
    margin-top: 20px;
  }
  .video_list {
    padding: 50px 0px 20px;
  }
  .video_list .video_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
    margin-top: 24px;
  }
  .video_list .cover {
    border-radius: 12px;
  }
  .video_list .play,
  .video_list .video_popup .tip::before {
    width: 44px;
    height: 44px;
    margin: -22px 0px 0px -22px;
    background-size: 9px auto;
  }
  .video_list .video_item .title {
    height: 42px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 21px;
  }
  .video_list .video_item time {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
  }
  .video_list .btn_box {
    margin-top: 30px;
  }
  .video_list .video_popup .video_inner {
    height: auto;
    width: 80vw;
    max-height: 80vh;
    border-radius: 14px;
  }
  .video_list .video_popup .video_close {
    right: 0px;
    top: -50px;
    width: 36px;
    height: 36px;
    background-size: 12px auto;
  }
  .video_list .video_popup .tip {
    padding: 18px;
  }
  .video_list .video_popup .tip .title {
    font-size: 16px;
    line-height: 1.5;
  }
  .video_list .video_popup .tip p {
    font-size: 13px;
  }
}

.news_banner {
  height: 68.08rem;
  overflow: hidden;
  isolation: isolate;
  background-color: #041030;
}
.news_banner.img_bg > img {
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.news_banner:hover > img {
  transform: scale(1.02);
}
.news_banner::before {
  content: '';
  position: absolute;
  inset: 0px;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(4, 16, 48, 0.9) 0%, rgba(4, 16, 48, 0.88) 3.88%, rgba(4, 16, 48, 0.53) 28.76%, rgba(4, 16, 48, 0) 55.77%);
}
.news_banner .content {
  height: 100%;
  padding-top: 21.4rem;
}
.news_banner .tcon h1 {
  color: #fff;
  font-weight: 520;
  font-size: 6.4rem;
  line-height: 8rem;
}
.news_banner .tcon p {
  max-width: 52rem;
  margin-top: 1.64rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 305;
  font-size: 2.2rem;
  line-height: 3.5rem;
}
.news_banner .btns {
  display: flex;
  gap: 1.96rem;
  margin-top: 3.66rem;
}
.news_banner .btn {
  min-width: 16.39rem;
  padding: 0px 3.1rem;
}

@media screen and (max-width: 1024px) {
  .news_banner.img_bg > img {
    object-position: 65% center;
  }
}

@media screen and (max-width: 768px) {
  .news_banner {
    height: 400px;
  }
  .news_banner::before {
    background-image: linear-gradient(90deg, rgba(4, 16, 48, 0.85) 0%, rgba(4, 16, 48, 0.4) 100%);
  }
  .news_banner .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0px;
  }
  .news_banner .tcon h1 {
    font-size: 30px;
    line-height: 1.3;
  }
  .news_banner .tcon p {
    max-width: none;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
  }
  .news_banner .btns {
    margin-top: 24px;
  }
  .news_banner .btn {
    min-width: 0px;
    padding: 0px 22px;
  }
}
