.yibo_news_read {
  overflow: hidden;
  padding: var(--component-gap-xs) 0 0;
  background: var(--bg-color);
}

.yibo_news_read-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: calc(var(--text-size-xl) * 2);
  position: relative;
}

.yibo_news_read-related-nav {
  background: #FFFAF4;
  padding: var(--component-gap-xs) var(--text-gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--component-gap-xs);
  height: fit-content;
}

.yibo_news_read-related-nav-title {
  font-size: var(--text-size);
  font-weight: 500;
  line-height: 1.2;
  color: var(--title-text-color);
  padding-bottom: var(--text-gap-md);
  border-bottom: 1px solid #A09D9D;
}


.yibo_news_read-related-nav-list {
  margin-top: var(--text-gap);
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}

.yibo_news_read-related-nav-item {
  font-family: var(--font-family);
  font-size: var(--text-size-md);
  color: var(--title-text-color);
}

.yibo_news_read-related-nav-item a {
  display: flex;
  align-items: center;
  gap: var(--text-gap-xs);
}


.yibo_news_read-related-nav-item.nav-item a::before {
  content: '';
  display: inline-block;
  height: var(--text-size-sm);
  aspect-ratio: 1 / 1;
  background-image: url('https://okki-shop.oss-accelerate.aliyuncs.com/templates/shop-default/a5a2bd0a-c771-434c-8951-1a50c10314fe-aret_right_1786604695145.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


.yibo_news_read-related-nav-item .goods-item-img {
  width: clamp(40px, 4.9479vw, 95px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.yibo_news_read-related-nav-item .goods-item-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.yibo_news_read-related-nav-item .goods-item-title {
  font-size: var(--text-size);
  font-weight: 500;
  line-height: 1.2;
  display: -webkit-box;
  color: inherit;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 限制显示的行数 */
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  /* 防止长英文单词或连续字符溢出不换行 */
}



.yibo_news_read-article {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8229vw, 35px);
}

.yibo_news_read-header {
  display: flex;
  flex-direction: column;
  gap: var(--text-gap-xs);
}

.yibo_news_read-title {
  margin: 0;
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1.2;
}

.yibo_news_read-date {
  color: rgba(122, 116, 116, 1);
  font-family: var(--font-family);
  font-size: var(--text-size-sm);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yibo_news_read-body {
  color: var(--text-color);
  font-family: var(--font-family);
  padding-bottom: var(--text-gap);
}

.yibo_news_read-body> :first-child {
  margin-top: 0;
}

.yibo_news_read-body> :last-child {
  margin-bottom: 0;
}

.yibo_news_read-body p,
.yibo_news_read-body li {
  color: #5B5757;
  font-size: var(--text-size-md);
  font-weight: 400;
  line-height: 1.4118;
  margin: var(--text-gap-xs) 0;
}

.yibo_news_read-body p {
  /* 35 / 1920 * 100vw = 1.8229vw */
  margin: clamp(16px, 1.8229vw, 35px) 0;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
}

.yibo_news_read-body :is(h2, h3, h4) {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--text-size);
  font-weight: 500;
  line-height: 1.2;
}

.yibo_news_read-body img {
  /* display: block; */
  height: auto;
  border-radius: var(--radius);
}

.yibo_news_read-post-nav {
  display: flex;
  flex-direction: column;
}



.yibo_news_read-post-nav-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  border-top: 1px solid rgba(122, 116, 116, 0.28);
  border-bottom: 1px solid rgba(122, 116, 116, 0.28);
  padding: var(--text-gap) 0;
}

.yibo_news_read-post-divider {
  width: 1px;
  background: rgba(122, 116, 116, 0.28);
}

.yibo_news_read-post-link-arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--text-gap-xs);
}

.yibo_news_read-post-card {
  min-width: 0;
}

.yibo_news_read-post-card.is-next {
  text-align: right;
}



.yibo_news_read-post-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--text-gap-xs);
  min-height: 100%;
  padding: var(--text-gap-lg) 0;
  color: inherit;
  text-decoration: none;
}

.yibo_news_read-post-card.is-next .yibo_news_read-post-link {
  align-items: flex-end;
}

.yibo_news_read-post-arrow {
  flex: 0 0 auto;
  color: var(--title-text-color);
  background: #FFFAF4;
  border: none;
}

.yibo_news_read-post-link:hover .yibo_news_read-post-title-text {
  color: var(--primary-color);
}

.yibo_news_read-post-link:hover .yibo_news_read-post-arrow {
  color: var(--color-second);
  background: var(--color-primary);
  border-color: var(--color-primary);
}



.yibo_news_read-post-meta,
.yibo_news_read-post-title-text {
  display: block;
}

.yibo_news_read-post-meta {
  color: rgba(122, 116, 116, 1);
  font-family: var(--font-family);
  font-size: var(--text-size-sm);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yibo_news_read-post-title-text {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--text-size-md);
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .yibo_news_read-layout,
  .yibo_news_read-post-nav-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .yibo_news_read-post-divider {
    display: none;
  }

  .yibo_news_read-post-card.is-next {
    text-align: left;
  }

  .yibo_news_read-post-card.is-next .yibo_news_read-post-link {
    justify-content: flex-start;
  }

  .yibo_news_read-body p {
    flex-wrap: wrap;
    gap: var(--text-gap-md);
  }

  .yibo_news_read-body img {
    width: 100%;
  }
}