.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;

  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: drawer-mask-in 160ms ease-out forwards;

  display: flex;
  justify-content: flex-end;

  -webkit-tap-highlight-color: transparent;
}

.drawer-overlay--closing {
  animation: drawer-mask-out 160ms ease-in forwards;
}

.drawer-overlay--left {
  justify-content: flex-start;
}

.drawer-panel {
  width: var(--drawer-w, 360px);
  height: 100%;
  background: #fff;

  display: flex;
  flex-direction: column;

  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
  will-change: transform;

  transform: translateX(100%);
  animation: drawer-panel-in 200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.drawer-overlay--left .drawer-panel {
  transform: translateX(-100%);
  animation: drawer-panel-in-left 200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.drawer-overlay--closing .drawer-panel {
  animation: drawer-panel-out 180ms ease-in forwards;
}

.drawer-overlay--closing.drawer-overlay--left .drawer-panel {
  animation: drawer-panel-out-left 180ms ease-in forwards;
}

.drawer-header {
  position: relative;
  height: 56px;
  flex: 0 0 auto;
  margin-top: var(--gta-header-h);
  display: flex;
  align-items: center;
  justify-content: center;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.drawer-close {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 10px;

  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #111;

  -webkit-tap-highlight-color: transparent;
}

.drawer-close:active {
  background: rgba(0, 0, 0, 0.06);
}

.drawer-header-content {
  width: 100%;
  min-width: 0;
  padding: 0 54px;

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

.drawer-body {
  flex: 1 1 auto;
  min-height: 0;

  overflow: auto;
  -webkit-overflow-scrolling: touch;

  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
}

@keyframes drawer-mask-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes drawer-mask-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes drawer-panel-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes drawer-panel-out {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes drawer-panel-in-left {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes drawer-panel-out-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

 
.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;
}

.mobile-drawer-component{
  background: white;
  position: fixed;
  z-index: 1001;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  transition: transform 0.3s ease;
}
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

.mobile-drawer-component .mobile-drawer-title{
  position: relative;
  text-align: center;
}
.mobile-drawer-component .mobile-drawer-title .top-line{
  border-bottom: 1px solid var(--color-border);
}
.mobile-drawer-component .mobile-drawer-title p{
  height: 60px;
  line-height: 70px;
  font-size: var(--fz-lg);
  font-weight: 600;
  width: 70%;
  margin: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-drawer-component .mobile-drawer-title:before{
  content: "";
  position: absolute;
  background-color: #e6e6e6;
  border-radius: 2px;
  width: 40px;
  height: 4px;
  top: 10px;
  left: calc(50% - 20px);
}
.mobile-drawer-component .drawer-body{
  height: calc(100% - 61px);
  overflow: auto;
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
}

.service-mobile-drawer{
  padding: 0!important;
  overscroll-behavior: auto!important;
  touch-action: auto!important;
  pointer-events: auto!important;
}
.service-mobile-drawer * {
  overscroll-behavior: auto!important;
  touch-action: auto!important;
  pointer-events: auto!important;
}

.service-mobile .rich-service--card {
  --rich-service-bg-opacity: 1;
  --rich-service-base-font-size: 16px;
  --rich-service-green: #18533f;
  --rich-service-green-2: #2f7a60;
  --rich-service-muted: #6d7772;
  --rich-service-line: rgba(40, 80, 62, .14);
  --rich-service-bg-image: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px;
  border-radius: 0;
  border: 1px solid rgba(50, 80, 65, .16);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(252, 248, 239, .88));
  box-shadow: 0 26px 80px rgba(20, 50, 38, .16);
  font-size: 16px;
  line-height: 1.4;
  color: #263631;
  box-sizing: border-box;
}

.service-mobile .rich-service--card .rich-toolbar,
.service-mobile .rich-service--card .rich-toolbar--btn,
.service-mobile .rich-service--card .rich-toolbar .gta-icon {
  color: #fff !important;
}

.service-mobile .rich-service--card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--rich-service-bg-image, none);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: calc(var(--rich-service-bg-opacity, 0) * .38);
  pointer-events: none;
}

.service-mobile .rich-service--card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .9), transparent 18%),
    radial-gradient(circle at 96% 80%, rgba(255, 218, 126, .32), transparent 18%);
  pointer-events: none;
}

.service-mobile .rich-service--card :where(div, span, p, h1, h2, h3, h4, h5, h6, small, button) {
  box-sizing: border-box;
  line-height: inherit;
  color: inherit;
}

.service-mobile .rich-service--card :where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.service-mobile .rich-service--card p {
  margin: 0;
  font-size: var(--rich-service-base-font-size);
  font-weight: 400;
}

.service-mobile .rich-service--card :where(
.rich-service--title,
.rich-service--desc,
.rich-service--name,
.rich-service--role,
.rich-service--profile-tagline,
.rich-service--contact-title,
.rich-service--contact-subtitle,
.rich-service--service-title,
.rich-service--service-desc,
.rich-service--suit-text,
.rich-service--channel-title,
.rich-service--channel-desc
) > p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.service-mobile .rich-service--card :where(span, small, button) {
  font: inherit;
  letter-spacing: inherit;
}

.service-mobile .rich-service--body {
  position: relative;
  z-index: 1;
}

.service-mobile .rich-service--top {
  position: relative;
}

.service-mobile .rich-service--copy-block {
  min-width: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.service-mobile .rich-service--badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  background:
    linear-gradient(325deg,
    color-mix(in srgb, var(--color-brand, #2fb26a) 80%, var(--brand-700, #1c8a4d) 20%),
    color-mix(in srgb, var(--brand-900, #115533) 50%, black 14%));
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 14px 28px rgba(17, 85, 51, .22),
    inset 0 1px 0 rgba(255, 255, 255, .14);
  white-space: nowrap;
}

.service-mobile .rich-service--badge-logo {
  --gta-logo-icon-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--gta-logo-icon-size);
  height: var(--gta-logo-icon-size);
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.service-mobile .rich-service--badge-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2px, .4vw, 3px);
  min-width: 0;
  white-space: nowrap;
}

.service-mobile .rich-service--badge-brand {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .92) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}

.service-mobile .rich-service--badge-label {
  font-size: 15px;
  line-height: 1.08;
  letter-spacing: .02em;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .12);
  font-weight: 500;
}

.service-mobile .rich-service--title {
  margin-top: 38px;
  font-size: 38px !important;
  line-height: 1.32;
  color: var(--rich-service-green) !important;
  font-weight: 700 !important;
  letter-spacing: .06em;
  word-break: keep-all;
}

.service-mobile .rich-service--desc {
  margin-top: clamp(12px, 3vw, 18px);
  font-size: clamp(13px, 2.8vw, 19px);
  line-height: 1.6;
  color: #69736e !important;
  font-weight: 700;
}

.service-mobile .rich-service--profile {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 35px;
}

.service-mobile .rich-service--avatar {
  position: relative;
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1;
  margin: 6px auto 0;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd6ca;
  box-shadow: 0 14px 38px rgba(20, 50, 38, .14);
}

.service-mobile .rich-service--avatar[data-has-avatar="0"]::after {
  content: attr(data-initial);
  position: absolute;
  inset: 6px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f1ece1 0%, #ece7db 100%);
  font-size: clamp(44px, 9vw, 70px);
  line-height: 1;
  font-weight: 900;
  color: var(--rich-service-green) !important;
}

.service-mobile .rich-service--avatar-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
}

.service-mobile .rich-service--name {
  position: relative;
  z-index: 1;
  margin-top: clamp(10px, 2.6vw, 18px);
  font-size: clamp(26px, 4.8vw, 34px);
  font-weight: 900 !important;
  color: var(--rich-service-green) !important;
  line-height: 1.08;
}

.service-mobile .rich-service--role {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #5b6761 !important;
  white-space: nowrap;
}
.service-mobile .rich-service--role:after{
  content: '';
  margin-left: 8px;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #409d30;
  mask: url(/static/image/yeziyou.8b764077ba70f604ddac.svg) no-repeat center / contain;
  -webkit-mask: url(/static/image/yeziyou.8b764077ba70f604ddac.svg) no-repeat center / contain;
  margin-bottom: -2px;
}
.service-mobile .rich-service--role:before{
  content: '';
  margin-right: 8px;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #409d30;
  mask: url(/static/image/yezizuo.618e53e3ba61da5ed441.svg) no-repeat center / contain;
  -webkit-mask: url(/static/image/yezizuo.618e53e3ba61da5ed441.svg) no-repeat center / contain;
  margin-bottom: -2px;
}

.service-mobile .rich-service--profile-tagline {
  z-index: 1;
  width: 220px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700 !important;
  color: var(--rich-service-green) !important;
  background: white;
  padding: 8px 12px;
  margin: auto;
  margin-top: 8px;
  border-radius: 8px;
}

.service-mobile .rich-service--profile-tagline span{
  padding: 0 16px;
}
.service-mobile .rich-service--profile-tagline i{
  margin-right: 4px;
  color: #409d30;
}

.service-mobile .rich-service--profile-tagline span:first-child{
  border-right: 1px solid #5b6761;
}

.service-mobile .rich-service--services {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.service-mobile .rich-service--services-card {
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(51, 92, 72, .12);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 36px rgba(36, 72, 56, .10);
  overflow: hidden;
  padding: 12px 0;
  text-align: center;
}

.service-mobile .rich-service--services-title {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(51, 92, 72, .12);
}
.service-mobile .rich-service--services-title span{
  color: var(--rich-service-green);;
}
.service-mobile .rich-service--service {
  text-align: center;
  border-right: 1px solid rgba(51, 92, 72, .12);
}
.service-mobile .rich-service--service:last-child{
  border-right: unset;
}

.service-mobile .rich-service--title-text {
  font-size: 14px;
  font-weight: 500;
}
.service-mobile .rich-service--title-text:last-child {
  font-size: 18px;
  font-weight: bold;
}

.service-mobile .rich-service--service-icon {
  width: clamp(32px, 4.1vw, 48px);
  height: clamp(32px, 4.1vw, 48px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--color-brand, #2fb26a), var(--brand-700, #1c8a4d));
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(28, 138, 77, .22);
}

.service-mobile .rich-service--service-icon .gta-icon[data-size="custom"] {
  --gta-icon-size: clamp(16px, 2.1vw, 22px);
}

.service-mobile .rich-service--service-text {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.18;
  overflow: hidden;
  margin-top: 8px;
}

.service-mobile .rich-service--service-title {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #1f2c28 !important;
}

.service-mobile .rich-service--service-desc {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #61706a !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-mobile .rich-service--suit .rich-service--suit-tip{
  font-weight: 600;
}
.service-mobile .rich-service--suit {
  margin-top: 12px;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid rgba(126, 191, 158, .46);
  background: white;
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--rich-service-green) !important;
  white-space: nowrap;
  overflow: hidden;
  justify-content: center;
}

.service-mobile .rich-service--suit-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rich-service-green-2) !important;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgb(241 226 226 / 86%);
  box-shadow: 0 4px 12px rgba(47, 93, 70, .08);
}

.service-mobile .rich-service--suit-icon-glyph {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rich-service-green-2) !important;
}

.service-mobile .rich-service--suit-icon-glyph .gta-icon[data-size="custom"] {
  --gta-icon-size: 100%;
  width: 100%;
  height: 100%;
  display: block;
}

.service-mobile .rich-service--suit-text {
  display: inline-flex;
  align-items: baseline;
  gap: .18em;
  min-width: 0;
  font-size: clamp(15px, 2.7vw, 17px);
  line-height: 1.2;
  font-weight: 500 !important;
  color: var(--rich-service-green) !important;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  font-size: 11px;
}

.service-mobile .rich-service--suit-label {
  flex: 0 0 auto;
  white-space: nowrap;
}

.service-mobile .rich-service--suit-content {
  font-size: 11px;
  display: flex;
  justify-content: space-around;
  flex: 1;
}
.service-mobile .rich-service--suit-content span{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 20%;
}

.service-mobile .rich-service--contact {
  position: relative;
  margin-top: 12px;
  padding: 16px 26px;
  border-radius: 22px;
  border: 1px solid rgba(210, 190, 130, .28);
  background: linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(245, 252, 247, .72));
  box-shadow: 0 18px 45px rgba(46, 58, 52, .09), inset 0 0 0 1px rgba(255, 255, 255, .58);
}

.service-mobile .rich-service--contact-title,
.service-mobile .rich-service--contact-subtitle {
  text-align: center;
}

.service-mobile .rich-service--contact-title {
  margin: 0;
  font-size: 20px !important;
  color: var(--rich-service-green) !important;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1 !important;
}

.service-mobile .rich-service--contact-subtitle {
  margin: 8px;
  font-size: 13px !important;
  color: #434343 !important;
  line-height: 1 !important;
}

.service-mobile .rich-service--channels {
  border-radius: 8px;
  background-color: white ;
  color: var(--rich-service-green);
}

.service-mobile .rich-service--channel {
  appearance: none;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: .25s;
  gap: 16px;
  width: 100%;
  margin-top: 8px;
  background: unset;
  border: unset;
  outline: unset;
}

.service-mobile .rich-service--channel-icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  background: none;
  box-shadow: none;
  flex: 0 0 auto;
}
.service-mobile .rich-service--channel-icon .gta-icon{
  font-size: var(--gta-icon-size);
}

.service-mobile .rich-service--channel-icon .gta-icon[data-size="custom"] {
  --gta-icon-size: 38px;
  width: 1em;
  height: 1em;
}

.service-mobile .rich-service--channel-text {
  min-width: 0;
  line-height: 1.2;
  text-align: center;
  flex: 1;
}


.service-mobile .rich-service--channel-title {
  display: block;
  font-size: 18px;
  font-weight: 900;
  white-space: normal;
  text-align: left;
}

.service-mobile .rich-service--channel-desc {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  white-space: normal;
  text-align: left;
}

.service-mobile .rich-service--card.is-profile-hidden .rich-service--top {
  grid-template-columns: minmax(0, 1fr);
}

.service-mobile .rich-service--bottom{
  margin: -12px;
  margin-top: 12px;
  background: white;
  padding: 12px 0;
  display: flex;
  justify-content: space-around;
  font-size: 13px;
}

.service-mobile .rich-service--bottom .gta-icon{
  margin-right: 4px;
  color: #409d30;
}

.service-mobile .rich-service--bottom span{
  text-align: center;
  width: 30%;
  border-right: 1px solid rgba(51, 92, 72, .12);
}
.service-mobile .rich-service--bottom span:last-child{
  border: unset;
}


.service-mobile .rich-service--channels.color-btn-1{
  color: white;
  background-color: var(--rich-service-green);
}

.service-mobile .rich-service--channels.color-btn-2{
  color: white;
  background-color: #73c337;
}

.service-mobile .rich-service--channels.color-btn-3{
  color: white;
  background-color: #1296db;
}

.service-mobile .rich-service--channels .gta-btn--primary{
  background-color: white!important;
  height: 30px;
  color: var(--rich-service-green)!important;
}

/*行程*/

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

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

  position: relative;
}

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

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

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

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

.article-page .rich-trip--body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

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

.article-page .rich-trip--summary {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-page .rich-trip--meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.article-page .rich-trip--route,
.article-page .rich-trip--stats,
.article-page .rich-trip--rating,
.article-page .rich-trip--participants {
  display: flex;
  align-items: center;
  min-width: 0;
}

.article-page .rich-trip--route,
.article-page .rich-trip--rating,
.article-page .rich-trip--participants {
  gap: 8px;
}

.article-page .rich-trip--stats {
  flex-wrap: wrap;
  gap: 12px;
}

.article-page .rich-trip--meta-icon,
.article-page .rich-trip--stat-icon {
  flex: 0 0 auto;
  font-size: 15px;
  color: #0f766e;
}

.article-page .rich-trip--route-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.4;
  color: #111827;
}

.article-page .rich-trip--stat-value {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #f59e0b;
}

.article-page .rich-trip--stat-muted {
  font-size: 13px;
  line-height: 1.4;
  color: #6b7280;
}

.article-page .rich-trip--stat-divider {
  font-size: 13px;
  line-height: 1;
  color: #9ca3af;
}

.article-page .rich-trip--footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-page .rich-trip--price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

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

@media (max-width: 768px) {
  .article-page .article-content .rich-trip--card {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    gap: 0;
    border-radius: 5px;
  }

  .article-page .article-content .rich-trip--thumb {
    width: auto !important;
    height: auto !important;
    border-radius: unset;
  }
  .article-page .article-content .rich-trip--body{
    padding: 8px 12px;
  }
  .article-page .article-content .rich-trip--summary{
    display: none;
  }
  .article-page .rich-trip--meta-icon, .article-page .rich-trip--stat-icon{
    color: #73c337 !important;
  }
  .article-page .article-content .rich-trip--thumb img {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
}

@media (max-width: 350px) {
}

/*客服*/

.article-page .article-content .rich-service--card {
  --rich-service-base-font-size: 16px;
  --rich-service-green: #18533f;
  --rich-service-green-2: #2f7a60;
  --rich-service-muted: #6d7772;
  --rich-service-line: rgba(40, 80, 62, .14);
  --rich-service-bg-image: none;
  --rich-service-bg-opacity: 0;
  --rich-service-font-cn: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --rich-service-font-title: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --rich-service-font-en: Georgia, "Times New Roman", serif;
  position: relative;
  width: 100%;
  max-width: 690px;
  margin: 18px auto;
  padding: 24px;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(50, 80, 65, .16);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(252, 248, 239, .88));
  font-size: 16px;
  line-height: 1.4;
  color: #263631;
  box-sizing: border-box;
}

.article-page .article-content .rich-service--card .rich-toolbar,
.article-page .article-content .rich-service--card .rich-toolbar--btn,
.article-page .article-content .rich-service--card .rich-toolbar .gta-icon {
  color: #fff !important;
}

.article-page .article-content .rich-service--card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--rich-service-bg-image, none);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: calc(var(--rich-service-bg-opacity, 0) * .38);
  pointer-events: none;
}

.article-page .article-content .rich-service--card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, .9), transparent 18%),
    radial-gradient(circle at 96% 80%, rgba(255, 218, 126, .32), transparent 18%);
  pointer-events: none;
}

.article-page .article-content .rich-service--card :where(div, span, p, h1, h2, h3, h4, h5, h6, small, button) {
  box-sizing: border-box;
  line-height: inherit;
  color: inherit;
}

.article-page .article-content .rich-service--card :where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.article-page .article-content .rich-service--card p {
  font-size: var(--rich-service-base-font-size);
  font-weight: 400;
}

.article-page .article-content .rich-service--card :where(
  .rich-service--title,
  .rich-service--desc,
  .rich-service--name,
  .rich-service--role,
  .rich-service--profile-tagline,
  .rich-service--contact-title,
  .rich-service--contact-subtitle,
  .rich-service--service-title,
  .rich-service--service-desc,
  .rich-service--suit-text,
  .rich-service--channel-title,
  .rich-service--channel-desc
) > p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.article-page .article-content .rich-service--card :where(span, small, button) {
  font: inherit;
  letter-spacing: inherit;
}

.article-page .article-content .rich-service--body {
  position: relative;
  z-index: 1;
}

.article-page .article-content .rich-service--top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 35%);
  align-items: start;
  gap: clamp(16px, 4vw, 32px);
}

.article-page .article-content .rich-service--copy-block {
  min-width: 0;
}

.article-page .article-content .rich-service--badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 5px 18px;
  border-radius: 5px;
  background:
    linear-gradient(145deg,
    color-mix(in srgb, var(--color-brand, #2fb26a) 80%, var(--brand-700, #1c8a4d) 20%),
    color-mix(in srgb, var(--brand-900, #115533) 86%, black 14%));
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 14px 28px rgba(17, 85, 51, .22),
    inset 0 1px 0 rgba(255, 255, 255, .14);
  white-space: nowrap;
}

.article-page .article-content .rich-service--badge-logo {
  --gta-logo-icon-size: clamp(20px, 3vw, 40px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--gta-logo-icon-size);
  height: var(--gta-logo-icon-size);
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.article-page .article-content .rich-service--badge-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2px, .4vw, 3px);
  min-width: 0;
  white-space: nowrap;
}

.article-page .article-content .rich-service--badge-brand {
  font-size: 16px !important;
  line-height: 1.2;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .92) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}

.article-page .article-content .rich-service--badge-label {
  font-size: 18px !important;
  line-height: 1.08;
  letter-spacing: .02em;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .12);
  font-weight: 500;
}

.article-page .article-content .rich-service--title {
  margin-top: 38px;
  font-size: 38px !important;
  line-height: 1.32;
  color: var(--rich-service-green) !important;
  font-weight: 700 !important;
  letter-spacing: .06em;
  word-break: keep-all;
}

.article-page .article-content .rich-service--desc {
  margin-top: clamp(12px, 3vw, 18px);
  font-size: clamp(13px, 2.8vw, 19px);
  line-height: 1.6;
  color: #69736e !important;
  font-weight: 700;
}

.article-page .article-content .rich-service--profile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 236px;
  margin-left: auto;
  padding-right: clamp(6px, 1vw, 12px);
  text-align: center;
}

.article-page .article-content .rich-service--avatar {
  position: relative;
  width: 100%;
  max-width: 176px;
  aspect-ratio: 1;
  margin: 6px auto 0;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd6ca;
  box-shadow: 0 14px 38px rgba(20, 50, 38, .14);
}

.article-page .article-content .rich-service--avatar[data-has-avatar="0"]::after {
  content: attr(data-initial);
  position: absolute;
  inset: 6px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f1ece1 0%, #ece7db 100%);
  font-size: clamp(44px, 9vw, 70px);
  line-height: 1;
  font-weight: 900;
  color: var(--rich-service-green) !important;
}

.article-page .article-content .rich-service--avatar-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
}

.article-page .article-content .rich-service--name {
  position: relative;
  z-index: 1;
  margin-top: clamp(10px, 2.6vw, 18px);
  font-size: clamp(26px, 4.8vw, 34px);
  font-weight: 900 !important;
  color: var(--rich-service-green) !important;
  line-height: 1.08;
}

.article-page .article-content .rich-service--role {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: clamp(14px, 2.3vw, 16px);
  line-height: 1.2;
  font-weight: 500;
  color: #5b6761 !important;
  white-space: nowrap;
}

.article-page .article-content .rich-service--profile-leaf {
  position: absolute;
  right: -6px;
  top: 102px;
  width: 115px;
  height: auto;
  aspect-ratio: 1402 / 1122;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: .96;
  z-index: 0;
  transform: rotate(-7deg);
}

.article-page .article-content .rich-service--profile-tagline {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700 !important;
  color: var(--rich-service-green) !important;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page .article-content .rich-service--profile-tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(156px, 78%, 220px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 170, 128, .65), transparent);
}

.article-page .article-content .rich-service--services {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 18px;
  border: 1px solid rgba(51, 92, 72, .12);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 36px rgba(36, 72, 56, .10);
  overflow: hidden;
}

.article-page .article-content .rich-service--service {
  position: relative;
  min-width: 0;
  min-height: clamp(76px, 11vw, 96px);
  padding: 14px 12px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(4px, .9vw, 10px);
  transition: .25s;
}

.article-page .article-content .rich-service--service:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(52, 89, 75, .18);
  pointer-events: none;
}

.article-page .article-content .rich-service--service:hover {
  transform: none;
  background: rgba(248, 251, 249, .72);
}

.article-page .article-content .rich-service--service-icon {
  width: clamp(32px, 4.1vw, 48px);
  height: clamp(32px, 4.1vw, 48px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--color-brand, #2fb26a), var(--brand-700, #1c8a4d));
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(28, 138, 77, .22);
}

.article-page .article-content .rich-service--service-icon .gta-icon[data-size="custom"] {
  --gta-icon-size: clamp(16px, 2.1vw, 22px);
}

.article-page .article-content .rich-service--service-text {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.18;
  text-align: left;
  overflow: hidden;
}

.article-page .article-content .rich-service--service-title {
  display: block;
  font-size: clamp(10px, 1.7vw, 15px);
  font-weight: 900;
  color: #1f2c28 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page .article-content .rich-service--service-desc {
  display: block;
  margin-top: clamp(2px, 1vw, 5px);
  font-size: clamp(8px, 1.25vw, 11px);
  font-weight: 700;
  color: #61706a !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page .article-content .rich-service--suit {
  margin-top: 18px;
  min-height: 58px;
  padding: 0px 24px;
  border-radius: 18px;
  border: 1px solid rgba(126, 191, 158, .46);
  background: linear-gradient(135deg, rgba(255, 255, 255, .4), rgba(248, 253, 250, .85));
  box-shadow: 0 10px 28px rgba(47, 93, 70, .08), inset 0 0 0 1px rgba(255, 255, 255, .56);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  color: var(--rich-service-green) !important;
  white-space: nowrap;
  overflow: hidden;
  justify-content: center;
}

.article-page .article-content .rich-service--suit-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rich-service-green-2) !important;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 4px 12px rgba(47, 93, 70, .08);
}

.article-page .article-content .rich-service--suit-icon-glyph {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rich-service-green-2) !important;
}

.article-page .article-content .rich-service--suit-icon-glyph .gta-icon[data-size="custom"] {
  --gta-icon-size: 100%;
  width: 100%;
  height: 100%;
  display: block;
}

.article-page .article-content .rich-service--suit-text {
  display: inline-flex;
  align-items: baseline;
  gap: .18em;
  min-width: 0;
  font-size: clamp(15px, 2.7vw, 17px);
  line-height: 1.2;
  font-weight: 500 !important;
  color: var(--rich-service-green) !important;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page .article-content .rich-service--suit-label {
  flex: 0 0 auto;
  white-space: nowrap;
}

.article-page .article-content .rich-service--suit-content {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page .article-content .rich-service--contact {
  position: relative;
  margin-top: 18px;
  padding: 16px 26px;
  border-radius: 22px;
  border: 1px solid rgba(210, 190, 130, .28);
  background: linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(245, 252, 247, .72));
  box-shadow: 0 18px 45px rgba(46, 58, 52, .09), inset 0 0 0 1px rgba(255, 255, 255, .58);
}

.article-page .article-content .rich-service--contact-title,
.article-page .article-content .rich-service--contact-subtitle {
  text-align: center;
}

.article-page .article-content .rich-service--contact-title {
  margin: 0;
  font-size: 20px !important;
  color: var(--rich-service-green) !important;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1 !important;
}

.article-page .article-content .rich-service--contact-title:after{
  content: '';
  margin-left: 8px;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #73c337;
  mask: url(/static/image/yeziyou.8b764077ba70f604ddac.svg) no-repeat center / contain;
  -webkit-mask: url(/static/image/yeziyou.8b764077ba70f604ddac.svg) no-repeat center / contain;
}
.article-page .article-content .rich-service--contact-title:before{
  content: '';
  margin-right: 8px;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #73c337;
  mask: url(/static/image/yezizuo.618e53e3ba61da5ed441.svg) no-repeat center / contain;
  -webkit-mask: url(/static/image/yezizuo.618e53e3ba61da5ed441.svg) no-repeat center / contain;
}

.article-page .article-content .rich-service--contact-subtitle {
  margin: 8px;
  font-size: 13px !important;
  color: #434343 !important;
  line-height: 1 !important;
}

.article-page .article-content .rich-service--channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-page .article-content .rich-service--channel {
  appearance: none;
  padding: 8px 12px;
  border: 1px solid rgba(58, 91, 74, .15);
  border-radius: 17px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 22px rgba(40, 50, 45, .055);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .25s;
  gap: 16px;
}

.article-page .article-content .rich-service--channel:hover:not(:disabled) {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(47, 122, 96, .34);
  box-shadow: 0 18px 32px rgba(40, 70, 55, .13);
}

.article-page .article-content .rich-service--channel:disabled,
.article-page .article-content .rich-service--channel[data-disabled="1"] {
  opacity: .72;
  cursor: default;
  transform: none;
}

.article-page .article-content .rich-service--channel-icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  background: none;
  box-shadow: none;
  flex: 0 0 auto;
}
.article-page .article-content .rich-service--channel-icon .gta-icon{
  font-size: var(--gta-icon-size);
}

.article-page .article-content .rich-service--channel-icon .gta-icon[data-size="custom"] {
  --gta-icon-size: 38px;
  width: 1em;
  height: 1em;
}

.article-page .article-content .rich-service--channel-text {
  min-width: 0;
  line-height: 1.2;
  text-align: center;
}

.article-page .article-content .rich-service--channel-title {
  display: block;
  font-size: clamp(12px, 2.8vw, 18px);
  font-weight: 900;
  color: var(--rich-service-green) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page .article-content .rich-service--channel-desc {
  display: block;
  margin-top: clamp(2px, 1vw, 5px);
  font-size: clamp(8px, 1.8vw, 12px);
  font-weight: 600;
  color: #7a8580 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page .article-content .rich-service--card.is-profile-hidden .rich-service--top {
  grid-template-columns: minmax(0, 1fr);
}

.article-page .article-content .rich-service--card.is-profile-hidden .rich-service--profile {
  display: none;
}

.article-page .article-content .rich-service--card.is-services-hidden .rich-service--services {
  display: none;
}

.article-page .article-content .rich-service--card.is-contact-hidden .rich-service--contact {
  display: none;
}

.article-page .article-content .rich-service--card.is-title-hidden .rich-service--title {
  display: none;
}

.article-page .article-content .rich-service--card.is-intro-hidden .rich-service--desc {
  display: none;
}

.article-page .article-content .rich-service--card.is-badge-hidden .rich-service--badge {
  display: none;
}

.article-page .article-content .rich-service--card.is-suit-hidden .rich-service--suit {
  display: none;
}

.article-page .article-content .rich-service--card.is-name-hidden .rich-service--name {
  display: none;
}

.article-page .article-content .rich-service--card.is-role-hidden .rich-service--role {
  display: none;
}

.article-page .article-content .rich-service--card.is-tagline-hidden .rich-service--profile-tagline {
  display: none;
}

.article-page .article-content .rich-service--channel:focus-visible {
  outline: 2px solid rgba(40, 88, 66, .28);
  outline-offset: 2px;
}

.article-page .article-content .rich-service--btn{
  display: none;
}

.article-page .rich-service--footer {
  margin-top: clamp(16px, 2.8vw, 22px);
  padding-top: clamp(12px, 2vw, 16px);
  border-top: 1px solid rgba(54, 89, 73, .12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.article-page .rich-service--footer-item {
  position: relative;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 clamp(8px, 1.6vw, 14px);
}

.article-page .rich-service--footer-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(54, 89, 73, .14);
}

.article-page .rich-service--footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #73c337 !important;
}

.article-page .rich-service--footer-icon .gta-icon[data-size="custom"] {
  --gta-icon-size: 16px;
}

.article-page .rich-service--footer-text {
  min-width: 0;
  font-size: clamp(11px, 1.8vw, 14px);
  line-height: 1.2;
  font-weight: 700;
  color: #66736d !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .article-page .article-content .rich-service--card {
    max-width: 100%;
    margin: 12px auto;
    padding: 16px;
    border-radius: 0;
    font-size: 14px;
    border-left: 0;
    border-right: 0;
  }

  .article-page .article-content .rich-service--top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-page .article-content .rich-service--title {
    margin-top: 20px;
    font-size: 26px !important;
    text-align: center;
  }

  .article-page .article-content .rich-service--desc {
    text-align: center;
  }

  .article-page .article-content .rich-service--badge {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    padding: 4px 14px;
  }

  .article-page .article-content .rich-service--badge-logo {
    --gta-logo-icon-size: clamp(18px, 4vw, 28px);
  }

  .article-page .article-content .rich-service--badge-brand {
    font-size: 13px !important;
  }

  .article-page .article-content .rich-service--badge-label {
    font-size: 15px !important;
  }

  .article-page .article-content .rich-service--profile {
    max-width: 100%;
    margin-left: 0;
    padding-right: 0;
  }

  .article-page .article-content .rich-service--avatar {
    max-width: 120px;
    padding: 4px;
  }

  .article-page .article-content .rich-service--avatar[data-has-avatar="0"]::after {
    font-size: clamp(32px, 12vw, 48px);
  }

  .article-page .article-content .rich-service--name {
    margin-top: 10px;
    font-size: 24px !important;
  }

  .article-page .article-content .rich-service--role {
    font-size: 13px;
  }

  .article-page .article-content .rich-service--profile-leaf {
    width: 80px;
    top: 76px;
    right: 0;
  }

  .article-page .article-content .rich-service--profile-tagline {
    font-size: 12px;
    margin-top: 8px;
    padding-top: 8px;
  }

  .article-page .article-content .rich-service--services {
    margin-top: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 12px;
  }

  .article-page .article-content .rich-service--service {
    min-height: 64px;
    padding: 10px 8px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .article-page .article-content .rich-service--service:not(:last-child)::after {
    display: none;
  }

  .article-page .article-content .rich-service--service:nth-child(2)::after {
    display: block;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(52, 89, 75, .18);
  }

  .article-page .article-content .rich-service--service:nth-child(-n+2)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: rgba(52, 89, 75, .12);
    pointer-events: none;
  }

  .article-page .article-content .rich-service--service-icon {
    width: 28px;
    height: 28px;
  }

  .article-page .article-content .rich-service--service-icon .gta-icon[data-size="custom"] {
    --gta-icon-size: 14px;
  }

  .article-page .article-content .rich-service--service-text {
    text-align: center;
  }

  .article-page .article-content .rich-service--service-title {
    font-size: 11px;
  }

  .article-page .article-content .rich-service--service-desc {
    font-size: 9px;
    margin-top: 2px;
  }

  .article-page .article-content .rich-service--suit {
    margin-top: 12px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    gap: 10px;
  }

  .article-page .article-content .rich-service--suit-icon {
    width: 28px;
    height: 28px;
  }

  .article-page .article-content .rich-service--suit-icon-glyph {
    width: 14px;
    height: 14px;
  }

  .article-page .article-content .rich-service--suit-text {
    font-size: 13px;
  }

  .article-page .article-content .rich-service--contact {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .article-page .article-content .rich-service--contact-title {
    font-size: 17px !important;
  }

  .article-page .article-content .rich-service--contact-title::before,
  .article-page .article-content .rich-service--contact-title::after {
    width: .8em;
    height: .8em;
  }

  .article-page .article-content .rich-service--contact-subtitle {
    margin: 6px;
    font-size: 12px !important;
  }

  .article-page .article-content .rich-service--channels {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .article-page .article-content .rich-service--channel {
    padding: 10px 14px;
    border-radius: 14px;
    justify-content: flex-start;
    gap: 14px;
  }

  .article-page .article-content .rich-service--channel-icon .gta-icon[data-size="custom"] {
    --gta-icon-size: 32px;
  }

  .article-page .article-content .rich-service--channel-title {
    font-size: 15px;
  }

  .article-page .article-content .rich-service--channel-desc {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .article-page .article-content .rich-service--card{
    display: none;
  }
  .article-page .article-content .rich-service--btn{
    display: block;
  }
  .article-page .article-content .rich-service--btn button{
    display: block;
    width: 90%;
    outline: unset;
    border: unset;
    background: white;
    padding: 0;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #FF5B00;
    border-radius: 30px;
    padding: 6px;
    color: white;
    font-size: 18px;
    font-weight: bold;
  }
  .article-page .article-content .rich-service--btn button i{
    margin: 0 10px 0 30px;
  }
  .article-page .article-content .rich-service--card {
    padding: 12px;
  }

  .article-page .article-content .rich-service--title {
    font-size: 22px !important;
    margin-top: 16px;
  }

  .article-page .article-content .rich-service--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .article-page .article-content .rich-service--service {
    min-height: 56px;
    padding: 8px 6px;
  }

  .article-page .article-content .rich-service--service-icon {
    width: 24px;
    height: 24px;
  }

  .article-page .article-content .rich-service--suit {
    padding: 0 10px;
  }

  .article-page .article-content .rich-service--contact {
    padding: 12px;
  }

  .article-page .article-content .rich-service--contact-title::before,
  .article-page .article-content .rich-service--contact-title::after {
    display: none;
  }

  .article-page .article-content .rich-service--channel {
    padding: 8px 12px;
  }

  .article-page .article-content .rich-service--channel-title {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .article-page .article-content .rich-service--btn button i{
    margin: 0 10px 0 10px;
  }
}

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

.article-page .article-main .article-content-html p {
  line-height: 2;
}

.article-page .article-content .rich-image--figure {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  overflow: hidden;
}

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

.article-page .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-page .article-content .rich-image--figure img {
  margin: 10px 0;
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .article-page .article-main-content .article-main{
    max-width: unset;
  }

}


  /*视频*/
.article-page .rich-video--card {
  margin: 10px 0;
  padding: 16px;

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

  position: relative;
  text-decoration: none;
  color: inherit;
}

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

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

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

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

.article-page .rich-video--play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.article-page .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-page .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-page .rich-video--body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-page .rich-video--title {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;

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

.article-page .rich-video--summary {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;

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

.article-page .rich-video--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-page .rich-video--tag {
  display: inline-block;
  padding: 2px 12px;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 12px;
  color: var(--color-brand, #168247);
  font-weight: 500;
}

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

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

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

/*景区*/

.article-page .rich-scenic--card {
  position: relative;
  margin: 0;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.article-page .rich-scenic--thumb {
  display: block;
  line-height: 0;
}

.article-page .rich-scenic--img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.article-page .rich-scenic--body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 16px 56px 14px 16px;

  background: linear-gradient(to top,
  rgba(0, 0, 0, 0.78) 0%,
  rgba(0, 0, 0, 0.48) 40%,
  rgba(0, 0, 0, 0.18) 70%,
  rgba(0, 0, 0, 0.00) 100%);
}

.article-page .rich-scenic--name,
.article-page .rich-scenic--title {
  margin: 0;
  padding: 0;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
  color: #fff;
}

.article-page .rich-scenic--name {
  font-size: 22px;
  font-weight: 700;
}

.article-page .rich-scenic--title {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.article-page .rich-scenic--cta {
  position: absolute;
  right: 12px;
  bottom: 12px;

  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  text-decoration: none;

  background: rgba(0, 0, 0, 0.08);

}

.article-page .rich-scenic--cta:active {
  background: rgba(0, 0, 0, 0.12);
}

.article-page .rich-scenic--cta {
  --gta-icon-size: 36px;
}

@media (max-width: 768px) {
  .article-page .rich-video--card{
    padding: unset;
    border-radius: 5px;
    overflow: hidden;
  }
  .article-page .rich-video--card .rich-video--thumb{
    border-radius: unset;
  }
  .article-page .rich-video--card .rich-video--body{
    display: none;
  }
  .article-page .rich-scenic--card{
    border-radius: 5px;
  }
  .article-page .rich-scenic--body .rich-scenic--title{
    line-height: 1.5!important;
  }
  .article-page .rich-scenic--body{
    padding: 16px;
  }
  .article-page .rich-scenic--body .rich-scenic--cta{
    display: none;
  }
  .article-page .article-content .rich-video--card {
    flex-direction: column;
  }

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

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

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

@media (max-width: 480px) {
}

@media (max-width: 350px) {
}


.article-page .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-page .article-fixed .article-fixed-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  white-space: nowrap;
}

.article-page .article-fixed .article-fixed-item i {
  margin-right: 4px;
}

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

.article-page .article-fixed.is-mobile {
  bottom: 15px;
  right: 50%;
  transform: translate(50%);
  max-width: calc(100vw - 40px);
  gap: 8px;
}

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

.article-page .article-fixed.is-pc {
  bottom: 15px;
  right: 50%;
  transform: translateX(50%);
}

.article-page .article-fixed.is-pc .article-fixed-item {
  width: 100%;
  padding: 8px 16px;
  justify-content: center;
}

.not-found-page {
 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.not-found-content {
  text-align: center;
  max-width: 600px;
}

.not-found-image {
  margin-bottom: 32px;
}

.not-found-image-img {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.not-found-image i {
  font-size: 250px;
}


.not-found-message {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 600;
  color: #e74c3c;
}

.not-found-description {
  margin-bottom: 32px;
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

.not-found-countdown {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-brand);
}

.not-found-countdown span {
  display: inline-block;
  min-width: 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 4px;
}

.not-found-button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #3498db;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.not-found-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.not-found-button:active {
  transform: translateY(0);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .not-found-page {
    min-height: 50vh;
    padding: 30px 16px;
  }

  .not-found-image {
    margin-bottom: 24px;
  }

  .not-found-image-img {
    max-width: 180px;
  }

  .not-found-message {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .not-found-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .not-found-countdown {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .not-found-countdown span {
    font-size: 20px;
    min-width: 20px;
  }

  .not-found-button {
    padding: 10px 24px;
    font-size: 14px;
  }
}


.not-found-content {
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--toastify-color-error);
  line-height: 1;
  margin-bottom: 20px;
}

.not-found-message {
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
}

.not-found-description {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 32px;
  line-height: 1.6;
}

.not-found-button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: var(--color-brand);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.not-found-button:hover {
  background-color: var(--brand-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.not-found-button:active {
  transform: translateY(0);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .not-found-page {
    min-height: 50vh;
    padding: 30px 16px;
  }

  .not-found-code {
    font-size: 80px;
    margin-bottom: 16px;
  }

  .not-found-message {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .not-found-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .not-found-button {
    padding: 10px 28px;
    font-size: 14px;
  }
}

.article-page .article-recommend .recommend-recommend--item .article-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  position: relative;
}

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

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

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

.article-page .article-recommend .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;
}

.article-page .article-recommend .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;
}

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

.article-page .article-recommend .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;
}

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

.article-page .article-recommend .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;
}

.article-page .article-recommend .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;
}

.article-page .article-recommend .recommend-recommend--item {
  position: relative;
  padding: 0 !important;
  margin-bottom: 12px;
}

.article-page .article-recommend .recommend-recommend--item .article-cover-wrap {
  padding: 0;
}

.article-page .article-recommend .recommend-recommend--item .article-body.aside {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 8px;
  background: linear-gradient(#0000 0%, #3d3d3d 80% 100%);
}

.article-page .article-recommend .recommend-recommend--item .article-body.aside .article-title {
  margin: 0;
  font-size: 14px !important;
  color: white;
}

.article-page .article-recommend .recommend-recommend--item .article-body.aside .article-summary {
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 11px;
  color: #f5f5f5;
}

@media (max-width: 768px) {
  .article-page .article-recommend--list.mobile {
    overflow: hidden;
    margin-bottom: 12px;
  }

  .article-page .article-recommend--list.mobile .recommend-recommend--item {
    flex-shrink: 0;
    width: 280px;
    margin-bottom: 0;
  }
}

.article-page .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;
}

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

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

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

.article-page {
  font-size: 16px;
  background-color: #ffffff;
}

.article-page .article-main {
  flex: 1;
  max-width: calc(100% - 380px);
}

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

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

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

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

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

.article-page .article-main-right {
  min-width: 350px;
  max-width: 350px;
  height: 100%;
  margin-left: 30px;
  padding: 10px 16px;
  box-sizing: border-box;
  word-break: break-all;
  position: sticky;
  z-index: 100;
  text-align: left;
}

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

.article-page .article-main-right .article-recommend {
  height: 100%;
}

.article-page .article-main-right .article-recommend .article-recommend--list {
  margin-top: 20px;
}

.article-page .article-main-right .article-recommend .recommend-recommend--item {
  padding: 8px 0;
}

.article-page .article-title-list-sticky {
  position: sticky;
  transition: position 0.3s ease, top 0.3s ease;
}

.article-page .article-title-list-sticky.sticky {
  position: fixed;
  top: 85px;
  width: 318px;
  height: var(--article-toc-max-height, calc(100vh - 85px - 32px));
  max-height: var(--article-toc-max-height, calc(100vh - 85px - 32px));
  box-sizing: border-box;
  z-index: 20;
}

.article-page .article-recommend .recommend-tips--top .tips-title--text {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
}

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

@media (max-width: 768px) {
  .article-page {
    font-size: 16px;
  }

  .article-page .article-main-content {
    padding: 0 !important;
    flex-direction: column;
  }

  .article-page .article-title {
    font-size: var(--fz-3xl);
    line-height: 1.35 !important;
    word-break: break-word;
  }

  .article-page .article-summary {
    font-size: 0.8em !important;
    margin-top: 4px !important;
    margin-bottom: 2px !important;
  }

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


  .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-page .article-main-right {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 0 !important;
    position: relative;
  }

  .article-page .article-title-list {
    display: none;
  }

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

.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-page .article-title {
  margin: 0;
  color: var(--color-text-strong);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.article-page .article-toc-lite {
  margin-top: 12px;
  padding-bottom: 20px;
  background: #fff;
  border: 1px solid rgba(31, 35, 41, .08);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  color: #212121;
  overflow: hidden;
}

.article-page .article-toc-lite.article-toc-lite--drawer {
  margin-top: 0;
  padding-bottom: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.article-page .article-title-list-sticky.sticky {
  display: flex;
  flex-direction: column;
}

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

.article-page .article-toc-lite .article-toc-lite--list {
  margin: 0;
  padding: 8px 16px 12px 16px;
  list-style: none;
  max-height: 60vh;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  scroll-behavior: smooth;
  mask-image: linear-gradient(to bottom, transparent 0, black 10px, black calc(100% - 10px), transparent 100%);
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 35, 41, .28) transparent;
}

.article-page .article-title-list-sticky.sticky .article-toc-lite--list {
  flex: 1;
  min-height: 0;
  max-height: none;
}

.article-page .article-toc-lite .article-toc-lite--list::-webkit-scrollbar {
  display: block;
  width: 6px;
}

.article-page .article-toc-lite .article-toc-lite--list::-webkit-scrollbar-track {
  background: transparent;
}

.article-page .article-toc-lite .article-toc-lite--list::-webkit-scrollbar-thumb {
  background: rgba(31, 35, 41, .28);
  border-radius: 999px;
}

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

.article-page .article-toc-lite .article-toc-lite--item {
  margin: 0;
}

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

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

.article-page .article-toc-lite .article-toc-lite--item a {
  position: relative;
  display: block;
  padding: 7px 16px 7px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #212121;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.article-page .article-toc-lite .article-toc-lite--item a:hover {
  background: #f7f8fa;
  color: #1f2329;
}

.article-page .article-toc-lite .article-toc-lite--item.is-active>a {
  background: rgba(59, 130, 246, .08);
  color: #1f2329;
  font-weight: 600;
}

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

.article-page .article-toc-lite .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-page .article-toc-lite .article-toc-lite--item.toc-l3.is-active>a::before {
  background: #3b82f6;
}

@media screen and (max-width: 768px) {
  .article-page .article-toc-lite.article-toc-lite--drawer .article-toc-lite--list {
    padding: 8px 16px 12px 16px;
    max-height: calc(100dvh - 160px);
    mask-image: none;
  }

  .article-page .article-toc-lite.article-toc-lite--drawer .article-toc-lite--list::before {
    left: 16px;
  }

  .article-page .article-toc-lite:not(.article-toc-lite--drawer) .article-toc-lite--list {
    max-height: none;
  }
}

