/* 对齐 finka.cn / finka 活动站与网络表演页的视觉规范（主色 #ff4040 等） */

:root {
  --primary: #ff4040;
  --primary-active: #fc5252;
  --text: #404040;
  --text-title: #1a1a1a;
  --muted: #666;
  --footer-muted: #c6c6c6;
  --footer-h5: #a9a9a9;
  --agreement: #0a8fff;
  --agreement-legacy: #042df7;
  --phone-bg: #eee;
  --intro-bg: #ffe6e6;
  --header-h: 90px;
  --nav-break: 500px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  text-align: center;
  width: 100%;
  min-height: 100vh;
  min-height: 730px;
  color: var(--text);
  background: url(static/picture/finka_logo_app.v7a431c944a.png) no-repeat center center;
  background-size: 100%;
}

@media screen and (max-width: 500px) {
  body {
    min-height: 100vh;
    min-height: 100dvh;
    background-size: cover;
  }
}

a {
  text-decoration: none;
  color: var(--text);
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/* 旧版 .pc header 已弃用，统一为 .pc-header，避免与首页顶栏选择器冲突 */

.clearfix::after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
}

/* —— 手机顶栏 —— */
.phone .header {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.phone .header_box {
  padding: 10px;
}

.phone .header .right_img {
  float: right;
  height: 26px;
}

.phone .header .left_img {
  float: left;
  height: 26px;
  cursor: pointer;
}

.phone_nav {
  font-size: 0;
  height: 44px;
  line-height: 44px;
  background: #f5f5f5;
  display: none;
}

.phone_nav.is-open {
  display: block;
}

.phone_nav li {
  display: inline-block;
  width: 20%;
  color: var(--text);
  font-size: 14px;
}

.phone_nav--4 li {
  width: 25%;
  font-size: 13px;
}

.phone_nav--5 li {
  width: 20%;
  font-size: 12px;
}

.phone_nav--5.phone_nav--with-search > li:not(.phone_nav__search-item) {
  width: 25%;
  font-size: 13px;
}

.phone_nav__search-item {
  width: 100%;
  display: block;
  padding: 8px 12px 10px;
  box-sizing: border-box;
  height: auto;
  line-height: normal;
}

.phone_nav__search-input {
  width: 100%;
  box-sizing: border-box;
  height: 32px;
  padding: 0 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
}

.phone_nav__search-input:focus {
  outline: none;
  border-color: var(--primary);
}

.phone_nav a.active,
.phone_nav a.is-active {
  color: var(--primary);
}

.phone {
  display: none;
}

.pc {
  display: block;
}

@media screen and (max-width: 500px) {
  .phone {
    display: block;
  }

  .pc {
    display: none;
  }
}

/* —— 首页：全宽红底 + 轮播（每屏 = 手机 mockup + 白字标题 + 双白按钮，对齐 finka.cn PC 首页）—— */
.main-hero-carousel {
  width: 100%;
  background-color: #ff4040;
  padding: 0 0 20px;
  min-width: 0;
}

/* 取消 min-width:900px，避免平板宽度出现横向滚动条 */

.hero-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-carousel--red {
  max-width: 1280px;
  padding: 0 12px;
}

.hero-carousel__viewport--red {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

@media screen and (min-width: 768px) {
  .hero-carousel__viewport--red {
    min-height: 580px;
  }
}

@media screen and (min-width: 1100px) {
  .hero-carousel__viewport--red {
    min-height: 620px;
  }
}

.hero-carousel__slides {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.hero-carousel--red .hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-carousel--red .hero-carousel__arrow {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  color: #fff;
}

.hero-carousel--red .hero-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  color: var(--text-title);
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel__arrow:hover {
  background: #fff;
}

.hero-carousel__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.hero-carousel__arrow--prev {
  left: 4px;
}

.hero-carousel__arrow--next {
  right: 4px;
}

.hero-carousel__arrow--prev::after,
.hero-carousel__arrow--next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-carousel__arrow--prev::after {
  transform: translateX(2px) rotate(-135deg);
}

.hero-carousel__arrow--next::after {
  transform: translateX(-2px) rotate(45deg);
}

.hero-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 0 8px 4px;
}

.hero-carousel__dots--on-red .hero-carousel__dot {
  background: rgba(255, 255, 255, 0.35);
}

.hero-carousel__dots--on-red .hero-carousel__dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero-carousel__dots--on-red .hero-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-carousel__dot:hover {
  background: rgba(0, 0, 0, 0.35);
}

.hero-carousel__dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}

@media screen and (max-width: 500px) {
  .hero-carousel__arrow {
    width: 36px;
    height: 36px;
  }

  .hero-carousel__arrow--prev {
    left: 2px;
  }

  .hero-carousel__arrow--next {
    right: 2px;
  }
}

.home {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 80%;
  max-width: 1000px;
  min-height: 550px;
  flex-wrap: wrap;
  gap: 24px;
}

.home__img {
  height: 550px;
  width: 274px;
  margin-right: 0;
  object-fit: contain;
  flex-shrink: 0;
}

@media screen and (min-width: 901px) {
  .home__img {
    margin-right: 88px;
  }
}

.home__body {
  flex: 1;
  min-width: 260px;
  text-align: left;
}

.home__title {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 48px;
}

.home__title > h1 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  overflow-wrap: anywhere;
}

.home__title span {
  display: block;
  font-size: 0.65em;
  font-weight: 500;
  margin-top: 12px;
  opacity: 0.95;
}

.home .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home .btns .item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  height: 88px;
  padding-left: 16px;
  width: 100%;
  max-width: 306px;
  color: var(--text-title);
  font-weight: 600;
  font-size: 24px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.home .btns .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.home .btns .item span.sub {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #7c7c7c;
  margin-top: 4px;
}

.home .btns .item .icon {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  flex-shrink: 0;
}

@media screen and (max-width: 500px) {
  .main-hero-carousel {
    background: url(static/picture/finka_logo_app.v7a431c944a.png) no-repeat top center;
    background-size: 100% auto;
    background-color: #ff4040;
    padding-bottom: 0.6rem;
  }

  .hero-carousel__viewport--red {
    min-height: 18rem;
  }

  .home {
    flex-direction: column;
    width: 100%;
    min-height: auto;
    padding: 1.2rem 0 0;
  }

  .home__img {
    width: 5.87rem;
    height: 11.8rem;
    max-width: 88vw;
    margin-right: 0;
  }

  .home__body {
    text-align: center;
    width: 100%;
    padding: 0 0.5rem;
  }

  .home__title {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .home .btns {
    justify-content: center;
    width: 100%;
    padding: 1.5rem 0.4rem 0;
    background: linear-gradient(180deg, rgba(255, 64, 64, 0), var(--primary) 46%);
  }

  .home .btns .item {
    width: 7.44rem;
    max-width: 92vw;
    height: 1.49rem;
    font-size: 0.43rem;
    border-radius: 0.21rem;
  }

  .home .btns .item span.sub {
    font-size: 0.28rem;
  }
}

/* —— 产品介绍条（浅粉 #ffe6e6）—— */
.intro {
  background: var(--intro-bg);
  padding: 48px 20px 56px;
}

.intro__title {
  color: var(--text-title);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 500;
  text-align: center;
  margin: 0 auto 36px;
  padding-bottom: 14px;
  position: relative;
  max-width: 900px;
}

.intro__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.intro__subhead {
  margin: -20px auto 32px;
  font-size: clamp(15px, 2.4vw, 17px);
  font-weight: 400;
  text-align: center;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.5;
}

.page-intro .intro__subhead {
  color: rgba(255, 255, 255, 0.9);
}

.intro__strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 8px 24px;
  max-width: 1100px;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* 隐藏横向滚动条（仍可用触控板/触摸滑动），去掉底部灰线与小三角 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.intro__strip::-webkit-scrollbar {
  display: none;
}

.intro__strip img {
  height: 360px;
  width: auto;
  border-radius: 12px;
  scroll-snap-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255, 64, 64, 0.12);
}

@media screen and (max-width: 500px) {
  .intro {
    padding: 1.2rem 0 1.6rem;
  }

  .intro__title {
    font-size: 0.75rem;
  }

  .intro__subhead {
    margin: -0.35rem auto 0.5rem;
    font-size: 0.32rem;
  }

  .intro__strip img {
    height: 11rem;
  }
}

/* 产品介绍单页（intro.html）：主区品牌红底、白字标题、截图白描边大圆角（对齐 finka 产品介绍页） */
.page-intro .intro {
  background: var(--primary);
  padding: clamp(40px, 6vw, 56px) 20px clamp(48px, 7vw, 72px);
  min-height: min(680px, calc(100dvh - var(--header-h) - 220px));
}

.page-intro .intro__title {
  color: #fff;
}

.page-intro .intro__title::after {
  background: #fff;
}

.page-intro .intro__strip img {
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

@media screen and (max-width: 500px) {
  .page-intro .intro {
    min-height: min(62vh, 520px);
  }

  .page-intro .intro__strip img {
    border-radius: 0.36rem;
  }
}

a.seo-autolink {
  color: var(--agreement);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a.seo-autolink:hover {
  color: #0876d8;
}

/* —— 首页：翻咔APP是什么（浅灰底 + 三卡横排）—— */
.seo-about-panel {
  width: 100%;
  background: #f8f9fa;
  text-align: left;
  padding: 48px 20px 52px;
  box-sizing: border-box;
}

.seo-about-panel__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.seo-about-panel__head {
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.seo-about-panel__head h2 {
  margin: 0 0 0.5em;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text-title);
}

.seo-about-panel__lead {
  margin: 0;
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.75;
  color: var(--muted);
  font-weight: 400;
}

.seo-about-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.seo-about-card {
  margin: 0;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #e8e9eb;
  border-radius: 10px;
  box-sizing: border-box;
}

.seo-about-card__title {
  margin: 0 0 0.65em;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 600;
  color: #005d5d;
}

.seo-about-card__text {
  margin: 0;
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.8;
  color: var(--text);
}

@media screen and (max-width: 768px) {
  .seo-about-panel__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 500px) {
  .seo-about-panel {
    padding: 1rem 0.56rem 1.1rem;
  }

  .seo-about-panel__head {
    margin-bottom: 0.75rem;
  }

  .seo-about-panel__head h2 {
    font-size: 0.42rem;
  }

  .seo-about-panel__lead {
    font-size: 0.32rem;
  }

  .seo-about-card {
    padding: 0.5rem 0.45rem;
  }

  .seo-about-card__title {
    font-size: 0.36rem;
  }

  .seo-about-card__text {
    font-size: 0.32rem;
  }
}

/* —— SEO 文案区（产品介绍与联系我们之间）—— */
.seo-content {
  max-width: 42rem;
  margin: 0 auto;
  padding: 40px 20px 48px;
  background: #fff;
  text-align: left;
  color: var(--text);
}

.seo-content--nav-only {
  padding-top: 28px;
  padding-bottom: 36px;
}

.seo-content h2 {
  margin: 1.5em 0 0.55em;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 600;
  color: var(--text-title);
}

.seo-content h2:first-child {
  margin-top: 0;
}

.seo-content__h3 {
  margin: 0.35em 0 0.5em;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 600;
  color: var(--text-title);
}

.seo-content p {
  margin: 0 0 1.25em;
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.8;
}

.seo-content p:last-of-type {
  margin-bottom: 0;
}

.seo-content__nav {
  margin-top: 1.75em;
  margin-bottom: 0;
  font-size: clamp(15px, 2vw, 16px);
}

.seo-content__nav a {
  color: var(--agreement);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-content__nav a:hover {
  color: #0876d8;
}

.seo-content__nav-sep {
  color: var(--muted);
  text-decoration: none;
}

@media screen and (max-width: 500px) {
  .seo-content {
    padding: 1rem 0.56rem 1.2rem;
  }

  .seo-content h2 {
    font-size: 0.42rem;
  }

  .seo-content__h3 {
    font-size: 0.34rem;
  }

  .seo-content p {
    font-size: 0.32rem;
  }

  .seo-content__nav {
    font-size: 0.32rem;
  }
}

.related-links {
  max-width: 42rem;
  margin: 0 auto;
  padding: 8px 20px 48px;
  background: #fff;
  text-align: left;
  color: var(--text);
  border-top: 1px solid #eee;
}

.related-links h2 {
  margin: 0 0 0.75em;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 600;
  color: var(--text-title);
}

.related-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 0.65em;
}

.related-links a {
  display: inline-block;
  margin: 0;
  font-size: clamp(15px, 2vw, 16px);
  color: var(--agreement);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.related-links a:hover {
  color: #0876d8;
}

@media screen and (max-width: 500px) {
  .related-links {
    padding: 0.4rem 0.56rem 1.2rem;
  }

  .related-links h2 {
    font-size: 0.42rem;
  }

  .related-links a {
    font-size: 0.32rem;
  }
}

/* 首页：站内快捷链接 + 相关搜索（白底改红底，与轮播 #ff4040 衔接） */
.page-home .seo-content--nav-only {
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.page-home .seo-content__nav a {
  color: #e8f4ff;
}

.page-home .seo-content__nav a:hover {
  color: #fff;
}

.page-home .seo-content__nav-sep {
  color: rgba(255, 255, 255, 0.55);
}

.page-home .related-links {
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.92);
  border-top-color: rgba(255, 255, 255, 0.22);
  text-align: center;
}

.page-home .related-links__grid {
  justify-content: center;
}

.page-home .related-links h2 {
  color: #fff;
}

.page-home .related-links a {
  color: #cfe8ff;
}

.page-home .related-links a:hover {
  color: #fff;
}

@media screen and (max-width: 500px) {
  .page-home .seo-content--nav-only,
  .page-home .related-links {
    padding-left: 0.56rem;
    padding-right: 0.56rem;
  }
}

/* —— 联系我们（红底白字 + 白卡片）—— */
.contact {
  background-color: var(--primary);
  padding: 60px 20px 72px;
  text-align: center;
}

.contact__title {
  color: #fff;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
  margin: 0 0 12px;
}

.contact__subhead {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.4;
  margin: 0 0 40px;
}

.contact__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.contact .item {
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  width: 100%;
  max-width: 368px;
  min-height: 140px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.contact .item .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact .item .title .icon,
.contact .item .title .go {
  flex-shrink: 0;
}

.contact .item .value {
  font-size: 18px;
  color: var(--text);
}

.contact .item .value a {
  color: var(--primary);
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  .contact {
    padding: 1.28rem 0 2.72rem;
  }

  .contact__title {
    font-size: 0.85rem;
    padding-left: 0.8rem;
    text-align: left;
  }

  .contact__subhead {
    font-size: 0.34rem;
    padding-left: 0.8rem;
    text-align: left;
    margin-bottom: 0.6rem;
  }

  .contact .item {
    width: 4.21rem;
    max-width: 46%;
    min-height: 2.67rem;
    border-radius: 0.32rem;
    padding: 0.4rem;
  }

  .contact .item .title {
    font-size: 0.43rem;
  }

  .contact .item .value {
    font-size: 0.32rem;
  }
}

/* —— 页脚（三行模板：灰字 + 协议标准蓝链 + 备案行略小）—— */
footer.site-footer {
  padding: 24px 16px;
  line-height: 1.65;
  background-color: #fff;
  font-size: 13px;
  color: #b2b2b2;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

footer.site-footer p {
  margin: 0 0 12px;
}

footer.site-footer p:last-child {
  margin-bottom: 0;
  font-size: 12px;
  color: #b2b2b2;
}

footer.site-footer p.agreement {
  color: #b2b2b2;
}

footer.site-footer p.agreement a {
  color: #007bff;
  text-decoration: none;
}

footer.site-footer p.agreement a:hover {
  text-decoration: underline;
}

footer.site-footer p.agreement span {
  padding: 0 4px;
  color: #b2b2b2;
}

footer.site-footer p.site-footer__legal a {
  color: #b2b2b2;
  text-decoration: none;
}

footer.site-footer p.site-footer__legal a:hover {
  text-decoration: underline;
  color: #999;
}

footer.site-footer img.beian-icon {
  height: 13px;
  width: auto;
  vertical-align: middle;
  margin: 0 2px;
}

/* 页脚：多列模块 + 域名 / robots / sitemap / 索引更新时间 */
footer.site-footer .site-footer__grid,
.phone .footer-block .site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 24px;
  max-width: 960px;
  margin: 0 auto 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

footer.site-footer .site-footer__heading,
.phone .footer-block .site-footer__heading {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

footer.site-footer .site-footer__list,
.phone .footer-block .site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer.site-footer .site-footer__list li,
.phone .footer-block .site-footer__list li {
  margin: 0 0 8px;
}

footer.site-footer .site-footer__list li:last-child,
.phone .footer-block .site-footer__list li:last-child {
  margin-bottom: 0;
}

footer.site-footer .site-footer__list a,
.phone .footer-block .site-footer__list a {
  color: #007bff;
  text-decoration: none;
  font-size: 13px;
}

footer.site-footer .site-footer__list a:hover,
.phone .footer-block .site-footer__list a:hover {
  text-decoration: underline;
}

footer.site-footer .site-footer__meta,
.phone .footer-block .site-footer__meta {
  max-width: 960px;
  margin: 0 auto 16px;
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

footer.site-footer .site-footer__meta-line,
.phone .footer-block .site-footer__meta-line {
  margin: 0 0 6px;
}

footer.site-footer .site-footer__meta-line:last-child,
.phone .footer-block .site-footer__meta-line:last-child {
  margin-bottom: 0;
}

footer.site-footer .site-footer__meta a,
.phone .footer-block .site-footer__meta a {
  color: #007bff;
  text-decoration: none;
}

footer.site-footer .site-footer__meta a:hover,
.phone .footer-block .site-footer__meta a:hover {
  text-decoration: underline;
}

footer.site-footer .site-footer__sep,
.phone .footer-block .site-footer__sep {
  color: #ccc;
}

footer.site-footer .site-footer__meta-hint,
.phone .footer-block .site-footer__meta-hint {
  color: #b2b2b2;
  margin-left: 4px;
}

@media (max-width: 640px) {
  footer.site-footer .site-footer__grid,
  .phone .footer-block .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  footer.site-footer .site-footer__grid,
  .phone .footer-block .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.phone .footer-block {
  text-align: center;
  font-size: 13px;
  padding: 24px 16px;
  color: #b2b2b2;
  line-height: 1.65;
  background-color: #fff;
  box-sizing: border-box;
}

.phone .footer-block p {
  margin: 0 0 12px;
}

.phone .footer-block p:last-child {
  margin-bottom: 0;
  font-size: 12px;
}

.phone .footer-block p.agreement {
  color: #b2b2b2;
}

.phone .footer-block p.agreement a {
  color: #007bff;
  text-decoration: none;
}

.phone .footer-block p.agreement a:hover {
  text-decoration: underline;
}

.phone .footer-block p.agreement span {
  padding: 0 4px;
  color: #b2b2b2;
}

.phone .footer-block p.site-footer__legal a {
  color: #b2b2b2;
  text-decoration: none;
}

.phone .footer-block p.site-footer__legal a:hover {
  text-decoration: underline;
}

.phone .footer-block img {
  vertical-align: middle;
  height: 13px;
  margin: 0 2px;
}

/* ========== 网络表演页 ========== */
.perform-bg {
  background-color: var(--primary);
  overflow: hidden;
}

.perform {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

/* 下载区：全宽红底内左对齐，白字标题 + 下方双胶囊按钮 */
.perform-down {
  text-align: left;
  padding: 24px 0 8px;
}

.perform-down .perform-title {
  margin: 0 0 18px;
  padding: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  text-align: left;
}

.perform-app {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  margin: 0 0 12px;
}

.perform-app .download {
  min-width: 148px;
  height: 52px;
  padding: 0 22px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-title);
  box-sizing: border-box;
}

/* 节目列表区标题（与下载区分隔） */
.perform > .perform-title {
  margin: 0;
  padding: 18px 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.perform-app .download p {
  text-align: center;
  margin: 0;
}

.perform-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 14px;
  margin: 0;
  min-height: 320px;
  padding-bottom: 8px;
  list-style: none;
}

.perform-list li {
  width: auto;
  min-width: 0;
  background-color: #fff;
  margin: 0;
  list-style: none;
}

.perform-list li.perform-empty {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  box-sizing: border-box;
}

.perform-list li.perform-empty .perform-box {
  padding: 16px 14px;
}

.perform-list li.perform-empty code {
  font-size: 0.92em;
}

.perform-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.perform-load-err {
  color: #c00 !important;
  -webkit-line-clamp: unset !important;
  display: block !important;
}

.perform-video {
  min-height: 200px;
  position: relative;
  cursor: pointer;
  background: #000;
}

.perform-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 235 / 290;
  max-height: 290px;
  object-fit: cover;
  vertical-align: top;
}

.perform-video .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  pointer-events: none;
  display: block;
  object-fit: contain;
}

.perform-video.is-playing .play-overlay {
  opacity: 0;
  transition: opacity 0.2s;
}

.perform-box {
  padding: 0 10px;
  min-height: 120px;
  text-align: left;
}

.perform-box h3 {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-title);
  padding: 10px 0;
  margin: 0;
}

.perform-box p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.perform-button {
  width: 100%;
  padding-bottom: 30px;
  text-align: center;
}

.perform-button span {
  width: 140px;
  height: 40px;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin: 0 auto;
  cursor: pointer;
  color: var(--text-title);
}

.perform-button span:hover {
  filter: brightness(0.98);
}

.preload-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* PC 顶栏（与官网：浅灰底 + 底边红条 + 左 Logo 右导航） */
.pc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  min-height: var(--header-h);
  background-color: #fff;
  border-bottom: 3px solid var(--primary);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
}

#intro,
#contact {
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.pc-header__logo {
  line-height: 0;
  flex-shrink: 0;
}

.pc-header__logo img {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.pc-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 90px;
  flex-wrap: wrap;
  gap: 0;
}

.pc-header__nav--4 a {
  padding: 0 22px;
}

.pc-header__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 500;
  color: #404040;
}

.pc-header__nav.pc-header__nav--5 a {
  padding: 0 12px;
  font-size: 18px;
}

.pc-header__search {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 4px 0 10px;
  flex-shrink: 0;
}

.pc-header__search-input {
  width: 160px;
  max-width: 22vw;
  height: 36px;
  padding: 0 14px;
  font-size: 15px;
  border: 1px solid #d0d0d0;
  border-radius: 18px;
  background: #f7f7f7;
  color: #404040;
}

.pc-header__search-input::placeholder {
  color: #999;
}

.pc-header__search-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

.pc-header__nav a:hover {
  color: #1a1a1a;
  text-decoration: none;
}

.pc-header__nav a.is-active {
  position: relative;
  font-weight: 700;
}

.pc-header__nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

@media screen and (max-width: 900px) and (min-width: 501px) {
  .pc-header {
    padding: 12px 16px 14px;
    flex-wrap: wrap;
    min-height: 0;
    row-gap: 4px;
  }

  .pc-header__nav {
    height: auto;
    min-height: 48px;
    flex: 1 1 220px;
    justify-content: flex-end;
  }

  .pc-header__nav a {
    font-size: 16px;
    padding: 0 12px;
  }

  .pc-header__nav--4 a {
    padding: 0 10px;
  }

  .pc-header__nav.pc-header__nav--5 a {
    padding: 0 6px;
    font-size: 14px;
  }

  .pc-header__search-input {
    width: 120px;
    max-width: 32vw;
    height: 32px;
    font-size: 14px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 500px) {
  .pc-header {
    display: none;
  }

  .page-home > .site-footer {
    display: none;
  }

  .page-home .phone .footer-block {
    display: block;
  }
}

.page-home .phone .footer-block {
  display: none;
}

.home .btns .item {
  text-decoration: none;
  color: inherit;
}

.home .btns .item .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.home .btns .item .info p {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  .home .btns .item .info p {
    font-size: 0.43rem;
  }

  .home .btns .item .info {
    align-items: center;
    text-align: center;
  }
}

.perform-app a.download {
  text-decoration: none;
  color: #1a1a1a;
}

.perform-list.is-reloading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s;
}

@media screen and (max-width: 1100px) {
  .perform-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 720px) {
  .perform-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 500px) {
  .perform {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .perform-down {
    padding: 0.4rem 0 0.2rem;
  }

  .perform-down .perform-title {
    font-size: 0.4rem;
    margin-bottom: 0.36rem;
  }

  .perform > .perform-title {
    font-size: 0.36rem;
    padding: 0.36rem 0 0.28rem;
  }

  .perform-list {
    margin: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .perform-list li {
    width: 100%;
    margin: 0;
  }

  .perform-list li.perform-empty {
    max-width: none;
  }

  .perform-app {
    width: 100%;
    justify-content: flex-start;
    gap: 0.2rem;
    flex-wrap: wrap;
  }

  .perform-app .download {
    flex: 1 1 calc(50% - 0.12rem);
    min-width: 0;
    max-width: calc(50% - 0.06rem);
    height: 1.12rem;
    padding: 0 0.2rem;
    font-size: 0.28rem;
  }

  .perform-app .download p {
    font-size: 0.28rem;
  }
}
