/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background: #f8f8f8;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 悬浮二维码 */
.floating-qrcode {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 10px;
    text-align: center;
    width: 140px;
}
.floating-qrcode-title {
    font-size: 13px;
    margin-bottom: 6px;
    color: #666;
}
.floating-qrcode-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

@media (max-width: 769px) {
    .floating-qrcode {
        display: none;
    }
}


/* 顶部导航 */
.top-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 70px;
    background: linear-gradient(90deg, #FF597D, #FF8E53);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-area .logo {
    height: 40px;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.link-a {
    font-weight: 500;
    color: #fff;
    transition: opacity 0.2s;
}
.link-a:hover {
    opacity: 0.8;
}


/* 主视觉区域 */
.header-content {
    position: relative;
    background: #f4ecd8 url('/img/bg.png') no-repeat center top;
    /* background-size: 100% auto; */
    padding: 30px 5% 40px;
}
.header-main {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
    align-items: stretch;          /* 使所有直接子元素等高 */
}

/* 左侧整体（视频 + 介绍） */
.header-left {
    flex: 3;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.header-left-main {
    /* 不再限制宽度，高度固定，宽度由视频比例决定 */
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}
.header-left-main video {
    height: 100%;
    width: auto;
    object-fit: contain;          /* 保持竖版比例，不裁剪 */
    display: block;
}
.header-middle {
    flex: 1;
    height: 700px;                 /* PC端固定高度 */
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;             /* 内容过多可滚动 */
}
.header-middle h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 4px;
}
.header-middle-sub {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
}
.header-middle p {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.7;
}

/* 右侧注册卡片 */
.header-right {
    flex: 1.2;
    height: 700px;                 /* PC端固定高度 */
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;       /* 内容垂直居中 */
    gap: 15px;
    position: relative;
    overflow-y: auto;             /* 防止内容溢出 */
}
.coupon {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 140px;                 /* PC端宽度 */
    height: auto;
    background: transparent;
    z-index: 5;
}
.logoTwo {
    width: 280px;
    margin-top: 30px;             /* 为优惠券留出空间 */
}
.qr-code {
    width: 280px;
    height: 280px;
}
.promotion-section {
    width: 100%;
    text-align: left;
}
.promotion-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}
.promotion-icon {
    font-size: 20px;
}
.scan-register-section {
    margin-top: 10px;
}
.scan-register-title {
    background: #e67e22;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s;
}
.scan-register-title:hover {
    background: #d35400;
}
@media (max-width: 769px) {
    .header-content {
        padding: 10px 5% 10px;
    }
    .header-main{
        gap: 10px;
    }
    .promotion-item{
        margin-bottom: 0px;
    }
    .scan-register-section{
        margin-top: -10px;
    }
    .scan-register-title {
    padding: 2px 25px;
    }
}




/* 服务区域 */
.service-section-wrap {
    background: #fff;
    padding: 60px 5%;
}
.service-section {
    max-width: 1200px;
    margin: 0 auto;
}
.service-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 6px;
}
.service-subtitle {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-bottom: 40px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.service-video {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.service-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 18px;
}
.service-desc-left h3 {
    font-size: 18px;
    margin-bottom: 4px;
}
.service-desc-left p {
    font-size: 13px;
    color: #777;
    margin-bottom: 2px;
}
.price {
    margin-top: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-one {
    font-size: 14px;
    color: #e67e22;
    font-weight: bold;
}
.price-two {
    font-size: 22px;
    color: #e67e22;
    font-weight: bold;
}
.price-three {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 6px;
}
@media (max-width: 769px) {
    .service-section-wrap {
        padding: 10px 5%;
    }
    .service-subtitle{
        display: none;
    }
}
/* 文章模块 */
.article-section {
    background: #fff;
    padding: 40px 5%;
}
.article-content {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

  /* ========== FAQ 专区样式 ========== */
  .faq-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
  }

  .faq-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #4a3c31;
  }

  .faq-list details {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    transition: background 0.2s;
  }

  .faq-list details[open] {
    background: #faf9f7;
  }

  .faq-list summary {
    font-weight: 500;
    cursor: pointer;
    color: #4a3c31;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-list summary::-webkit-details-marker {
    display: none;
  }

  .faq-list summary::after {
    content: "＋";
    font-size: 1.2rem;
    color: #aaa;
    transition: transform 0.2s;
  }

  .faq-list details[open] summary::after {
    content: "－";
    color: #4a3c31;
  }

  .faq-list details p {
    margin-top: 0.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  @media (max-width: 480px) {
    .faq-section {
      padding: 0 0.8rem;
      margin: 2rem auto;
    }
    .faq-section h2 {
      font-size: 1.5rem;
    }
  }

/* 评价区容器 */
.review-section {
  padding: 3rem 1rem;
  background: #f7f5f2;          /* 柔和暖色背景，呼应按摩放松感 */
}

.review-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: #4a3c31;
}

.review-sub {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 2rem;
}

/* 横向滚动卡片 */
.review-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  scroll-snap-align: start;
  transition: transform 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: #e8b44b;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.review-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 0.8rem;
  padding: 0;
  quotes: none;
  font-style: italic;
}

.reviewer {
  text-align: right;
  color: #888;
  font-size: 0.8rem;
  border-top: 1px solid #f0ece6;
  padding-top: 0.6rem;
}




/* 城市站点容器（仅非主站显示，已通过模板控制） */
.city-station-container {
    background: linear-gradient(to right, #E0F2FF 0%, #FFE3DE 100%);
    padding: 50px 5%;
    text-align: center;
}
.city-station-title {
    font-size: 24px;
    margin-bottom: 5px;
}
.city-station-sub {
    color: #666;
    font-size: 13px;
    margin-bottom: 30px;
}
.city-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    /* max-width: 900px; */
    margin: 0 auto;
}
.city-item {
    background: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}
.city-item:hover {
    background: #e67e22;
    color: #fff;
}

/* 页脚 */
.footer {
    background: linear-gradient(90deg, #FF597D 0%, #FF7055 100%);
    color: #fff;
    padding: 40px 5% 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 30px;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}
.footer-about {
    flex: 2;
}
.footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}
.footer-qrcode {
    flex: 1;
    text-align: center;
}
.footer-qrcode-item img {
    width: 120px;
    height: 120px;
    margin: 0 auto 8px;
    border-radius: 8px;
}
.footer-qrcode-item span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}
/* 友情链接 */
.friend-links {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
}
.friend-links-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}
.friend-links-title {
    font-weight: bold;
    color: #fff;
}
.friend-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.friend-links-list a {
    color: #FFE5B4;
    transition: color 0.2s;
}
.friend-links-list a:hover {
    color: #fff;
    text-decoration: underline;
}


/* 版权 */
.copyright {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
    font-size: 13px;
}
.copyright-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    color: rgba(255,255,255,0.75);
}
.copyright-inner a {
    color: #FFE5B4;
}
.copyright-inner img {
    display: inline-block;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

/* ---------- 响应式设计 ---------- */
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
    }
    .header-left {
        flex-direction: column;
        width: 100%;
    }
    /* 移动端隐藏平台介绍 */
    .header-middle {
        display: none;
    }
    .header-left-main {
        height: auto;              /* 高度自适应 */
        width: 100%;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
    }
    .header-left-main video {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
    }
    .header-right {
        width: 100%;
        margin: 0 auto;
        order: 1;
        height: auto;             /* 高度自适应内容 */
        background: rgba(255,255,255,0.85);
        padding: 10px;
    }
    .header-right .coupon {
        width: 100px;             /* 移动端宽度 */
    }
    
    .nav-links {
        gap: 16px;
    }
    .service-video {
        height: 280px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .floating-qrcode {
        width: 110px;
        right: 10px;
        bottom: 10px;
    }
    .floating-qrcode-img {
        width: 90px;
        height: 90px;
    }
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    .header-right .logoTwo,
    .header-right .qr-code {
    display: none;
}
}

@media (max-width: 480px) {
    .top-banner {
        padding: 0 3%;
        height: 60px;
    }
    .logo-area .logo {
        height: 30px;
    }
    .link-a {
        font-size: 13px;
    }
}

