body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.article-page {
  font-size: 16px;
  background-color: #ffffff;
  .article-main {
    flex: 1;

    .article-content {
      margin-top: 8px;
      font-size: 1em;
      line-height: 1.8;
    }

    .article-main-left {
      overflow: hidden;
      word-break: break-all;
    }

  }
  .article-main-content{
    display: flex;
    padding: 30px 16px;
    max-width: 1000px;
    margin: auto;
  }

  .article-header {
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-border, #e5e6eb);
    position: relative;

  }

  .article-main-right {
    min-width: 260px;
    max-width: 260px;
    margin-left: 60px;
    word-break: break-all;
    position: sticky;
    z-index: 100;
    height: 100%;
    text-align: left;
    padding: 10px 16px;
    /* margin-top: 30px; */

    .article-title-list {
      margin-top: 30px;
    }

    .article-recommend {
      height: 100%;

      .article-recommend--list {
        margin-top: 20px;
        .recommend-recommend--item {
          padding: 8px 0px;
        }
      }
    }

    .article-title-list-sticky {
      position: sticky;
      transition: position 0.3s ease, top 0.3s ease;
      /* 平滑过渡 */
    }

    .article-title-list-sticky.sticky {
      position: fixed;
      /* 吸附效果 */
      top: 85px;
      /* 固定在顶部 */
      width: 260px;
      /* 确保宽度与父元素一致 */
      z-index: 20;
      height: 100%;
      /* 保证在其他元素之上 */
    }
  }

}
.article-page .article-header-2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.recommend-tips--top {
  .tips-title--text {
    font-size: var(--fz-3xl);
    font-weight: bold;
    margin-bottom: 8px;
  }

  .underline-1 {
    border-bottom: 1px solid rgba(31, 35, 41, .08);
  }
}

@media (max-width: 768px) {
  .article-page {
    font-size: 16px;
    .article-main-content{
      padding: 5px 16px !important;
      flex-direction: column;
    }

    .article-title {
      font-size: var(--fz-3xl);
      line-height: 1.35 !important;
      word-break: break-word;
    }
    .article-summary{
      font-size: 0.75em!important;
      margin-top: 4px!important;
      margin-bottom: 2px!important;
    }

    .article-content {
      font-size: 1em;
    }

    .article-content .rich-video--card {
      flex-direction: column;
    }

    .article-content .rich-video--thumb img {
      width: 100% !important;
      height: 100% !important;
    }

    .article-content .rich-video--card .rich-video--thumb {
      width: auto !important;
      height: auto !important;
    }

    .article-content .rich-video--body .rich-video--footer {
      display: none !important;
    }

    .article-content .rich-trip--card {
      flex-direction: column;
    }

    .article-content .rich-trip--thumb {
      width: auto !important;
      height: auto !important;
    }

    .article-content .rich-trip--thumb img {
      width: 100% !important;
      height: 100% !important;
    }
  }

  .article-page .article-recommend--list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .article-page .article-recommend--list .recommend-recommend--item{
    min-width: 40vw;
    max-width: 40vw;
  }
  .article-main-right {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0px !important;
    position: relative;
    padding: 0px !important;
  }

  .article-title-list {
    display: none;
  }
  .article-page .article-body{
    background: linear-gradient(#0000 0%, #3d3d3d 100% 100%)!important;
  }
}

.article-page .article-author{
  display: flex;
  margin-bottom: unset;
  font-style: unset;
  line-height: unset;
}
.article-page .article-author .article-author-nickname{
  font-weight: 600;
  color: #1f2329;
  line-height: 1.8;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--fz-sm);
}
.article-page .article-author .article-author-time{
  font-size: 12px;
  color: #212121;
  line-height: 1.8;
}
.article-page .article-author .article-avatar{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 4px;
}

.article-page {
  .article-content{
    .article-summary{
      padding-block: 14px;
      padding-inline: 8px 24px;
      font-size: var(--fz-sm);
      line-height: 1.65;
      color: #3b4048;
      background: #fcf6f2;
      border: 1px solid rgba(31, 35, 41, .08);
      border-radius: 8px;
      text-align: justify;
      text-justify: inter-ideograph;
      white-space: pre-line;
    }
  }
}

.article-abstract {
  margin-top: 12px;
  background: #fff;
  color: #212121;
  overflow: scroll;
  /* 265px 是标题和底部的总高度 底部180px */
  height: calc(100% - var(--gta-header-h) - 295px);
  li{
    text-align: left;
    list-style: none;
    display: flex;
    align-items: center;
    padding: 8px 12px;
  }
  li.is-active{
    background: rgba(59, 130, 246, .08);
    color: #1f2329;
    font-weight: 600;
  }
  li:hover{
    background: #f7f8fa;
    color: #1f2329;
  }
  .abstract-dot{
    background-color: #000;
    border-radius: 50%;
    width: 3px;
    height: 3px;
    display: inline-block;
  }
  .ml-abstract-item{
    margin-left: 22px;
  }
  .article-abstract--item{
    a {
      position: relative;
      display: block;
      font-size: var(--fz-md);
      line-height: 1.6;
      color: #212121;
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-left: 16px;
      flex: 1;
    }
  }

}

.article-abstract .article-abstract--hd {
  padding: 12px 16px 10px;
  font-weight: 700;
  font-size: 14.5px;
  color: #1f2329;
  border-bottom: 1px solid rgba(31, 35, 41, .08);
}

.article-abstract.article-abstract--center .article-abstract--hd {
  text-align: center;
}

.article-abstract .article-abstract--list {
  margin: 0;
  padding: 8px 16px 12px 16px;
  list-style: none;
  max-height: 60vh;
  overflow: auto;
  position: relative;
  scroll-behavior: smooth;
  mask-image: linear-gradient(to bottom, transparent 0, black 10px, black calc(100% - 10px), transparent 100%);
}

.article-abstract .article-abstract--list::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(31, 35, 41, .10);
}

.article-abstract .article-abstract--list>.article-abstract--item.toc-l2 {
  margin-top: 6px;
}

.article-abstract .article-abstract--list>.article-abstract--item.toc-l2:first-child {
  margin-top: 0;
}

.article-abstract .article-abstract--item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  /* 20 - 5 */
  height: 1px;
  background: rgba(31, 35, 41, .16);
  transform: translateY(-50%) scaleY(0.5);
  transform-origin: center;
  pointer-events: none;
}

.article-abstract .toc-l3 a {
  padding-left: 34px;
  font-size: 13.5px;
}

.article-abstract .toc-l3 a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 29px;
  height: 1px;
  background: rgba(31, 35, 41, .16);
  transform: translateY(-50%) scaleY(0.5);
  transform-origin: center;
  pointer-events: none;
}

.article-abstract .article-abstract--item.toc-l3.is-active>a::before {
  background: #3b82f6;
}


@media screen and (max-width: 768px) {
  .article-abstract {
    height: auto;
  }
}

.article-page {
  .article-main {
    .article-content-html {
      margin-top: 22px;
      width: 100%;
      p{
        min-height: 16px;
      }
    }

    .article-content .rich-trip--card {
      margin: 10px 0;
      padding: 16px;

      display: flex;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      background: #fff;
      align-items: stretch;

      position: relative;
    }
    .article-content .rich-trip--card > * {
      margin-left: 16px;
    }
    .article-content .rich-trip--card > *:first-child {
      margin-left: 0;
    }
    @supports (gap: 16px) {
      .article-content .rich-trip--card {
        gap: 16px;
      }
      .article-content .rich-trip--card > * {
        margin-left: 0;
      }
    }

    .article-content .rich-trip--overlay-link {
      position: absolute;
      inset: 0;
      display: block;
      z-index: 1;
      text-decoration: none;
      border-radius: 14px;
    }

    .article-content .rich-trip--thumb,
    .article-content .rich-trip--body {
      position: relative;
      z-index: 2;
    }

    .article-content .rich-trip--thumb {
      width: 164px;
      height: 164px;
      overflow: hidden;
      display: inline-block;
      flex: 0 0 auto;
      border-radius: 10px;
    }

    .article-content .rich-trip--thumb img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .article-content .rich-trip--body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
    }
    .article-content .rich-trip--body > * {
      margin-bottom: 10px;
    }
    .article-content .rich-trip--body > *:last-child {
      margin-bottom: 0;
    }
    @supports (gap: 10px) {
      .article-content .rich-trip--body {
        gap: 10px;
      }
      .article-content .rich-trip--body > * {
        margin-bottom: 0;
      }
    }

    .article-content .rich-image--figure {
      position: relative;
      z-index: 2;
    }
    
    .article-content .rich-image--caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 8px 12px;
      padding-top: calc(8px + var(--cap-grad));
      margin: 0;
      color: #fff;
      font-size: 0.875em; /* 14px */
      line-height: 1.4;
      text-align: center;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      pointer-events: none;
      z-index: 1;
    }

    .article-content .rich-image--caption::before {
      content: "";
      position: absolute;
      inset: calc(-1 * var(--cap-grad)) 0 0 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .28), rgba(0, 0, 0, .12) 40%, rgba(0, 0, 0, 0) 100%);
      z-index: -1;
    }

    .article-content .rich-trip--title {
      margin: 0;
      font-size: 1em; /* 16px */
      line-height: 1.3;
      font-weight: 600;
      color: #111827;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .article-content .rich-trip--footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .article-content .rich-trip--footer > * {
      margin-left: 12px;
    }
    .article-content .rich-trip--footer > *:first-child {
      margin-left: 0;
    }
    @supports (gap: 12px) {
      .article-content .rich-trip--footer {
        gap: 12px;
      }
      .article-content .rich-trip--footer > * {
        margin-left: 0;
      }
    }

    .article-content .rich-trip--price {
      margin: 0;
      font-size: 1em; /* 16px */
      font-weight: 700;
      color: #111827;
    }

    .article-content .rich-trip--actions {
      display: flex;
      justify-content: flex-end;
      position: relative;
      z-index: 3;
    }


    .article-content .rich-video--card {
      margin: 10px 0;
      padding: 16px;

      display: flex;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      background: #fff;
      align-items: stretch;

      position: relative;
      text-decoration: none;
      color: inherit;
    }
    .article-content .rich-video--card > * {
      margin-left: 16px;
    }
    .article-content .rich-video--card > *:first-child {
      margin-left: 0;
    }
    @supports (gap: 16px) {
      .article-content .rich-video--card {
        gap: 16px;
      }
      .article-content .rich-video--card > * {
        margin-left: 0;
      }
    }

    .article-content .rich-video--card:hover {
      border-color: #d1d5db;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    }

    .article-content .rich-video--thumb,
    .article-content .rich-video--body {
      position: relative;
      z-index: 2;
    }

    .article-content .rich-video--thumb {
      width: 164px;
      height: 164px;
      overflow: hidden;
      display: inline-block;
      flex: 0 0 auto;
      border-radius: 12px;
      background: #f3f4f6;
    }

    .article-content .rich-video--thumb img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .article-content .rich-video--play {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      pointer-events: none;
    }

    .article-content .rich-video--play-icon {
      width: 56px;
      height: 56px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.45);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .article-content .rich-video--play-icon::before {
      content: "";
      position: absolute;
      left: 22px;
      top: 18px;
      width: 0;
      height: 0;
      border-left: 16px solid #fff;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      opacity: 0.95;
    }

    .article-content .rich-video--body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
    }
    .article-content .rich-video--body > * {
      margin-bottom: 10px;
    }
    .article-content .rich-video--body > *:last-child {
      margin-bottom: 0;
    }
    @supports (gap: 10px) {
      .article-content .rich-video--body {
        gap: 10px;
      }
      .article-content .rich-video--body > * {
        margin-bottom: 0;
      }
    }

    .article-content .rich-video--title {
      margin: 0;
      font-size: 1em; /* 16px */
      line-height: 1.3;
      font-weight: 700;
      color: #111827;

      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .article-content .rich-video--summary {
      margin: 0;
      font-size: 0.75em; /* 12px */
      line-height: 1.5;
      color: #6b7280;

      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
      overflow: hidden;
    }

    .article-content .rich-video--tags {
      display: flex;
      flex-wrap: wrap;
      margin-right: -8px;
      margin-bottom: -8px;
    }
    .article-content .rich-video--tags > * {
      margin-right: 8px;
      margin-bottom: 8px;
    }
    @supports (gap: 8px) {
      .article-content .rich-video--tags {
        gap: 8px;
        margin-right: 0;
        margin-bottom: 0;
      }
      .article-content .rich-video--tags > * {
        margin-right: 0;
        margin-bottom: 0;
      }
    }

    .article-content .rich-video--tag {
      display: inline-flex;
      align-items: center;
      height: 26px;
      padding: 0 5px;
      border-radius: 5px;

      font-size: 0.75em; /* 12px */
      color: #374151;

      background: #f3f4f6;
      border: 1px solid #e5e7eb;
      user-select: none;
    }

    .article-content .rich-video--footer {
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px dashed #e5e7eb;

      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .article-content .rich-video--actions {
      display: flex;
      justify-content: flex-end;
      position: relative;
      z-index: 3;
    }

    .article-content .rich-image--figure img {
      /*aspect-ratio: 16/9;*/
      width: 100%;
    }
  }
}
.recommend-recommend--item .article-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.recommend-recommend--item .article-cover-wrap {
  position: relative;
  padding-bottom: 22px;
}

.recommend-recommend--item .article-cover {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: #f4f6f8;
}

.recommend-recommend--item .article-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recommend-recommend--item .article-meta {
  position: absolute;
  left: 5px;
  bottom: 20px;
  transform: translateY(50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
}

.recommend-recommend--item .article-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef2f7;
  border: 2px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
}

.recommend-recommend--item .article-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recommend-recommend--item .article-name {
  font-size: 14px;
  font-weight: 600;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: auto;
  line-height: 1;
  padding-bottom: 2px;
}

.recommend-recommend--item .article-body {
  padding: 12px;
  padding-top: 6px;
}

.recommend-recommend--item .article-title {
  font-size: var(--fz-sm);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  color: #222;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.recommend-recommend--item .article-summary {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.recommend-recommend--item{
  position: relative;
  padding: 0!important;
  margin-bottom: 12px;
  .article-cover-wrap{
    padding: 0;
  }
  .article-body.aside{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 8px;
    background: linear-gradient(#0000 0%, #3d3d3d 80% 100%);
    .article-title{
      margin: 0;
      font-size: 14px !important;
      color: white;
    }
    .article-summary{
      margin-top: 8px;
      margin-bottom: 4px;
      font-size: 11px;
      color: #f5f5f5;
    }
  }
}

/* 移动端样式 */
@media (max-width: 768px) {
  .article-recommend--list.mobile {
    overflow: hidden;
    margin-bottom: 12px;
  }
  
  .article-recommend--list.mobile .recommend-recommend--item {
    flex-shrink: 0;
    width: 280px;
    margin-bottom: 0;
  }
}

.metabar-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-top: auto;
  --gta-icon-size: 32px;
  --metabar-avatar-size: 56px;
  --metabar-gap: 14px;
}

.metabar-share-btn.gta-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-surface, #fff);
}


.metabar-share-btn:hover {
  background: var(--color-surface-2, #f7f8fa);
}

.metabar-share-btn:active {
  transform: scale(.97);
}

.article-fixed {
  position: fixed;
  box-shadow: 0 0 4px #0000001f;
  font-size: var(--fz-md);
  font-weight: 600;
  color: var(--color-fg);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 25px;

  .article-fixed-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    white-space: nowrap;
    i {
      margin-right: 4px;
    }
  }

 

  .favorite-item.favorited i {
    color: var(--color-brand);
  }

  /* 移动端样式 */
  &.is-mobile {
    bottom: 15px;
    right: 50%;
    transform: translate(50%);
    max-width: calc(100vw - 40px);
    gap: 8px;

    .article-fixed-item:first-child {
      border-right: 1px solid var(--color-border, #e5e6eb);
    }
  }

  /* PC 端样式 */
  &.is-pc {
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    .article-fixed-item {
      width: 100%;
      padding: 8px 16px;
      justify-content: center;
    }
  }
}

/*# sourceMappingURL=website-route-article.8c95c5c0.chunk.css.map*/