:root {
  --news-bg: #221818;
  --news-text: #e7e7e7;
  --news-muted: #d6d8d9;
  --news-warm: #b2afad;
  --news-brand: #b81c22;
  --news-divider: rgba(231, 231, 231, 0.18);
  --news-content: 83.333vw;
  --zs-brand: #b81c22;
  --zs-muted: #d6d8d9;
  --zs-inner: 83.333vw;
}

body.zs-news {
  background: var(--news-bg);
  color: var(--news-text);
  overflow-x: hidden;
}

.news-page {
  width: 100%;
}

body.zs-news .page-shell {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-inner {
  width: var(--news-content);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.zs-news .hero-nav {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1.041vw);
  -webkit-backdrop-filter: blur(1.041vw);
}

.news-hero {
  position: relative;
  width: 100%;
  min-height: 54.27vw;
  padding-top: 4.062vw;
  overflow: hidden;
  background: #000;
}

.news-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.news-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.news-hero-slide.is-active {
  opacity: 1;
}

.news-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-hero-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.news-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--news-content);
  margin: 0 auto;
  padding: 0 3.125vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25vw;
  color: #ffffff;
  padding-top: 20.625vw;
  padding-bottom: 7.291vw;
  pointer-events: none;
}

.news-hero-copy {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25vw;
  width: 100%;
}

.news-hero-copy.is-active {
  display: flex;
}

.news-hero-date {
  margin: 0;
  letter-spacing: -0.031vw;
  line-height: 1.5;
}

.news-hero-title {
  margin: 0;
  width: 66.77vw;
  line-height: 1.5;
}

.news-hero-title .f_60 {
  font-size: 3.333vw;
}

.news-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.208vw;
  height: 1.927vw;
  padding: 0 1.145vw;
  border-radius: 2.968vw;
  border: 0.052vw solid #ffffff;
  background: transparent;
  color: #ffffff;
  letter-spacing: -0.052vw;
  margin-top: 0.937vw;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.news-hero-cta:hover {
  background: var(--news-brand);
  border-color: var(--news-brand);
  color: #ffffff;
}

.news-hero-arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 52.031vw;
  border: 0.052vw solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 3;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.news-hero-arrow:hover {
  background: var(--news-brand);
  border-color: var(--news-brand);
}

.news-hero-prev {
  left: 3.333vw;
}

.news-hero-next {
  right: 3.333vw;
}

.news-hero-arrow-icon {
  width: 0.625vw;
  height: 0.625vw;
  border-top: 0.078vw solid #ffffff;
  border-right: 0.078vw solid #ffffff;
  display: inline-block;
}

.news-hero-prev .news-hero-arrow-icon {
  transform: rotate(-135deg);
}

.news-hero-next .news-hero-arrow-icon {
  transform: rotate(45deg);
}

.news-section {
  width: 100%;
  padding: 7.291vw 0 6.25vw;
  background: var(--news-bg);
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5vw;
  flex-wrap: wrap;
  margin-bottom: 2.5vw;
}

.news-section-title {
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
}

.news-tabs {
  display: flex;
  align-items: center;
  gap: 2.5vw;
  flex-wrap: wrap;
}

.news-tab {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.26vw;
  color: #ffffff;
  line-height: 1.5;
  padding-bottom: 0.208vw;
  transition: color 0.2s ease;
}

.news-tab-text {
  display: inline-block;
}

.news-tab-bar {
  display: block;
  width: 4.166vw;
  max-width: 100%;
  height: 0.104vw;
  background: var(--news-brand);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.news-tab.is-active {
  color: var(--news-brand);
}

.news-tab.is-active .news-tab-bar {
  opacity: 1;
  transform: scaleX(1);
}

.news-tab:hover {
  color: var(--news-brand);
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(6.25vw, 8.125vw) minmax(0, 24.375vw) minmax(0, 1fr);
  gap: 5.885vw;
  align-items: flex-start;
  padding: 3.333vw 0;
  border-bottom: 0.052vw solid var(--news-divider);
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:last-child {
  border-bottom: 0.052vw solid var(--news-divider);
}

.news-item-date {
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
  padding-top: 0.312vw;
}

.news-item-image {
  display: block;
  width: 100%;
  aspect-ratio: 468 / 259;
  border-radius: 0.833vw;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-item-image:hover img {
  transform: scale(1.04);
}

.news-item-text {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  color: #ffffff;
  min-width: 0;
}

.news-item-title {
  margin: 0;
  line-height: 1.5;
}

.news-item-title a {
  color: #ffffff;
  display: inline;
  transition: color 0.2s ease;
}

.news-item-title a:hover {
  color: var(--news-brand);
}

.news-item-desc {
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-pagination {
  margin-top: 3.541vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875vw;
}

.news-page-btn {
  width: 2.083vw;
  height: 2.083vw;
  border-radius: 52.031vw;
  border: 0.052vw solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
}

.news-page-btn:hover {
  background: var(--news-brand);
  border-color: var(--news-brand);
}

.news-page-btn.is-disabled,
.news-page-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.news-page-btn.is-disabled:hover,
.news-page-btn[disabled]:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.news-page-btn-icon {
  width: 0.52vw;
  height: 0.52vw;
  border-top: 0.104vw solid #ffffff;
  border-right: 0.104vw solid #ffffff;
  display: inline-block;
}

.news-page-prev .news-page-btn-icon {
  transform: rotate(-135deg);
}

.news-page-next .news-page-btn-icon {
  transform: rotate(45deg);
}

.news-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.875vw;
}

.news-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.083vw;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  cursor: pointer;
}

.news-page-num.news-page-ellipsis {
  cursor: default;
}

.news-page-num.is-hidden {
  display: none;
}

.news-page-num a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.083vw;
  border-radius: 2.604vw;
  color: inherit;
  transition: background 0.25s ease, color 0.25s ease;
}

.news-page-num.is-active a {
  background: var(--news-brand);
  color: #ffffff;
  width: 2.083vw;
  text-align: center;
}

.news-page-num a:hover {
  color: #ffffff;
}

.news-page-num.is-active a:hover {
  background: var(--news-brand);
}

.news-page-ellipsis {
  color: rgba(255, 255, 255, 0.6);
}


/* 
*======================================================media===============================================================
*/
@media screen and (max-width:768px) {
  :root {
    --news-content: 92%;
    --zs-inner: 92%;
  }

  .news-page {
    width: 100%;
  }

  body.zs-news .page-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .zs-news .hero-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .news-hero {
    width: 100%;
    min-height: 520px;
    padding-top: 56px;
  }

  .news-hero-slide img {
    width: 100%;
    height: 100%;
  }

  .news-hero-mask {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.55) 100%);
  }

  .news-hero-inner {
    width: 76%;
    max-width: 100%;
    padding: 120px 16px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .news-hero-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .news-hero-copy.is-active {
    display: flex;
  }

  .news-hero-date {
    letter-spacing: -0.25px;
  }

  .news-hero-title {
    width: 100%;
    max-width: 100%;
  }

  .news-hero-cta {
    display: inline-flex;
    min-width: 100px;
    min-height: 40px;
    height: 40px;
    padding: 0 20px;
    border-radius: 57px;
    border: 1px solid #ffffff;
    letter-spacing: -0.5px;
    margin-top: 12px;
  }

  .news-hero-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
  }

  .news-hero-prev {
    left: 12px;
  }

  .news-hero-next {
    right: 12px;
  }

  .news-hero-arrow-icon {
    width: 10px;
    height: 10px;
    border-top: 1.5px solid #ffffff;
    border-right: 1.5px solid #ffffff;
  }

  .news-section {
    width: 100%;
    padding: 48px 0 64px;
  }

  .news-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .news-head {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .news-tabs {
    display: flex;
    gap: 16px 24px;
    flex-wrap: wrap;
  }

  .news-tab {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 4px;
  }

  .news-tab-bar {
    width: 48px;
    max-width: 100%;
    height: 2px;
  }

  .news-list {
    display: flex;
    flex-direction: column;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--news-divider);
  }

  .news-item:last-child {
    border-bottom: 1px solid var(--news-divider);
  }

  .news-item-date {
    padding-top: 0;
  }

  .news-item-image {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news-item-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .news-pagination {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .news-page-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
  }

  .news-page-btn-icon {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }

  .news-page-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .news-page-num {
    display: inline-flex;
    height: 40px;
  }

  .news-page-num a {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    height: 40px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
  }

  .news-page-num.is-active a {
    width: 40px;
  }
  .news-hero-title .f_60{
    font-size: 18px;
  }
}
