/* ========== 响应式基础 ========== */
    * { margin:0; padding:0; box-sizing:border-box;}
    body { font-family:'Microsoft YaHei',sans-serif; overflow-x:hidden; background:#fff; color:#222;}

    /* ========== 加载动画 ========== */
        #loading-ink {
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            font-family: "KaiTi", "SimHei", serif;
            opacity: 1;
            transition: opacity 0.8s ease-out;
        }

        /* 加载内容容器 - 确保垂直居中排列 */
        #loading-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px; /* 元素之间的间距 */
            width: 100%;
            max-width: 500px;
            padding: 20px;
            margin-top: 20vh; /* 向下移动20% */
        }

        #loading-message {
            margin-bottom: 30px;
            font-size: 1.8rem;
            font-weight: bold;
            color: #333;
            text-align: center;
        }

        /* 加载进度条样式 */
        #loading-progress {
            width: 300px;
            height: 4px;
            background: rgba(0,0,0,0.1);
            border-radius: 2px;
            margin: 20px auto;
            overflow: hidden;
        }

        #loading-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #0078ff, #00d4ff);
            border-radius: 2px;
            width: 0%;
            transition: width 0.3s ease;
        }

        /* 跳过按钮样式 */
        #skip-loading {
            margin-top: 20px;
            padding: 8px 20px;
            background: rgba(0,0,0,0.1);
            border: 1px solid rgba(0,0,0,0.2);
            border-radius: 20px;
            color: #666;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        #skip-loading:hover {
            background: rgba(0,0,0,0.2);
            color: #333;
        }

        .floating-text {
            position: absolute;
            font-size: 20px;
            opacity: 0;
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
            transition: transform 1s linear, opacity 0.4s linear;
            color: rgba(0, 0, 0, 0.6);
            font-family: "KaiTi", "SimHei", serif;
        }

        #loading-ink.hidden {
            opacity: 0;
            transition: opacity 0.8s ease-out;
            pointer-events: none;
        }

        .page-content {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease;
            /* 确保页面内容完全隐藏，防止闪烁 */
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

        .page-content.show {
            opacity: 1;
            visibility: visible;
            /* 显示时恢复正常定位 */
            position: static;
            top: auto;
            left: auto;
        }

        /* Hello动画容器样式 - 固定在进度条上方 */
        #hello-animation-container {
            position: fixed;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
            pointer-events: none;
        }

        .hello-svg {
            width: 100%;
            max-width: 600px;
            height: auto;
        }

    /* ========== 响应式布局 ========== */
    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    }

    .small-text {
    font-size: 1.2rem;
    }

    /* 响应式图片和视频 */
    img, video {
    max-width: 100%;
    height: auto;
    }

    /* 顶部全屏大图板块 */
    #hero {
    width: 100%;
    height: 100vh;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    }

    /* 顶部导航 */
    header, .nav-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    }

    /* 本杰明文段 */
    .quote-author {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
    }

    /* 顶部全屏区 */
    .fullscreen {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: var(--hero-image, url('../images/he.webp'));
        background-color: #333; /* 默认背景色 */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* 首页首屏：视频背景（不加任何遮罩层） */
    .hero-video-hero {
        background: none !important;
        overflow: hidden;
    }
    .hero-video-hero .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        pointer-events: none;
    }
    .hero-video-hero .title-container,
    .hero-video-hero #decorativeHellos {
        position: relative;
        z-index: 2;
    }

    /* ===== 首页：书籍漂流摘要（编辑式区块） ===== */
    .bc-journey-section {
        width: 100%;
        padding: 84px 24px 92px;
        background:
            radial-gradient(circle at 18% 18%, rgba(244, 114, 182, 0.08), transparent 24%),
            radial-gradient(circle at 82% 28%, rgba(59, 130, 246, 0.08), transparent 22%),
            linear-gradient(180deg, #faf7f3 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }
    .bc-journey-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(120deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 35%, transparent 60%),
            radial-gradient(circle at 12% 78%, rgba(0,0,0,0.025), transparent 18%),
            radial-gradient(circle at 92% 78%, rgba(0,0,0,0.02), transparent 16%);
        pointer-events: none;
    }
    .bc-journey-section::after {
        content: '';
        position: absolute;
        right: -58px;
        top: 52px;
        width: 1px;
        height: 1px;
        pointer-events: none;
        user-select: none;
    }
    .bc-journey-wrap {
        position: relative;
        z-index: 1;
        max-width: 1100px;
        margin: 0 auto;
    }
    .bc-journey-head {
        text-align: center;
        margin-bottom: 28px;
    }
    .bc-journey-title {
        font-family: 'Noto Serif SC', "Microsoft YaHei", serif;
        font-size: clamp(2rem, 3.6vw, 3rem);
        font-weight: 700;
        color: #2a2a2a;
        line-height: 1.28;
        margin: 0 auto;
        position: relative;
        max-width: 14em;
        text-align: center;
    }
    .bc-journey-title::after {
        content: '';
        display: block;
        width: 78px;
        height: 4px;
        background: linear-gradient(90deg, #111827, #6b7280);
        margin: 22px auto 0;
        border-radius: 999px;
        opacity: 0.82;
    }
    .bc-journey-lead {
        max-width: 720px;
        margin: 22px auto 0;
        font-size: 1.03rem;
        line-height: 1.9;
        color: #5b5b5b;
        text-align: center;
    }
    .bc-journey-banner {
        display: flex;
        align-items: center;
        gap: 16px;
        justify-content: center;
        max-width: 860px;
        margin: 0 auto 34px;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(148, 163, 184, 0.22);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
        backdrop-filter: blur(10px);
    }
    .bc-journey-banner-text {
        font-size: 0.86rem;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #111827;
    }
    .bc-journey-banner-line {
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(17,24,39,0.55), transparent);
        flex: 0 0 auto;
    }
    .bc-journey-banner-note {
        font-size: 0.92rem;
        color: #6b7280;
    }
    .bc-journey-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 48px;
        align-items: stretch;
    }
    .bc-journey-main,
    .bc-journey-aside {
        min-width: 0;
        display: flex;
        flex-direction: column;
    }
    .bc-journey-summary {
        font-family: 'Noto Serif SC', "Microsoft YaHei", serif;
        font-size: 1.15rem;
        line-height: 2;
        color: #333;
        margin: 0 0 36px;
        padding-left: 18px;
        border-left: 3px solid rgba(51, 51, 51, 0.18);
    }
    .bc-journey-trail {
        position: relative;
        padding-left: 16px;
        margin-left: 8px;
    }
    .bc-journey-trail::before {
        content: none;
    }
    .bc-trail-item {
        position: relative;
        padding-bottom: 28px;
    }
    .bc-trail-item:last-child { padding-bottom: 0; }
    .bc-trail-marker {
        position: absolute;
        left: -24px;
        top: 6px;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #fefefe;
        border: 2px solid #555;
        box-shadow: 0 0 0 4px rgba(51,51,51,0.06);
    }
    .bc-trail-item:first-child .bc-trail-marker {
        background: #333;
        border-color: #333;
    }
    .bc-trail-meta {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        color: #999;
        margin-bottom: 6px;
    }
    .bc-trail-title {
        font-size: 1rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 4px;
    }
    .bc-trail-desc {
        font-size: 0.88rem;
        line-height: 1.65;
        color: #666;
    }
    .bc-trail-placeholder,
    .bc-trail-empty {
        font-size: 0.92rem;
        color: #999;
        line-height: 1.7;
        font-style: italic;
    }
    .bc-journey-aside {
        padding-top: 8px;
        justify-content: flex-start;
    }
    .bc-journey-stats {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
        flex: 1;
    }
    .bc-journey-stat {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        row-gap: 2px;
        column-gap: 16px;
        padding: 22px 0;
        border-bottom: 1px solid rgba(0,0,0,0.07);
        align-items: start;
    }
    .bc-journey-stat:first-child { padding-top: 0; }
    .bc-journey-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .bc-journey-stat-num {
        grid-column: 2;
        grid-row: 1 / span 2;
        font-family: 'Noto Serif SC', "Microsoft YaHei", serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #222;
        line-height: 1.2;
        min-width: 2.4ch;
        text-align: center;
        justify-self: center;
        align-self: start;
        padding-top: 1px;
    }
    .bc-journey-stat-name {
        grid-column: 1;
        font-size: 0.95rem;
        font-weight: 700;
        color: #333;
        letter-spacing: 0.04em;
        align-self: start;
    }
    .bc-journey-stat-hint {
        grid-column: 1;
        font-size: 0.78rem;
        color: #999;
        align-self: start;
    }
    .bc-journey-route {
        display: none;
    }
    .bc-journey-foot {
        margin-top: 56px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .bc-journey-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 0 22px;
        border-radius: 999px;
        font-size: 0.98rem;
        font-weight: 800;
        color: #fff;
        text-decoration: none;
        letter-spacing: 0.04em;
        background: linear-gradient(135deg, #111827, #374151);
        border: 1px solid rgba(17,24,39,0.2);
        box-shadow: 0 16px 32px rgba(17,24,39,0.18);
        transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    }
    .bc-journey-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 36px rgba(17,24,39,0.22);
        opacity: 0.98;
    }
    .bc-journey-updated {
        font-size: 0.78rem;
        color: #aaa;
        letter-spacing: 0.02em;
    }

    @media (max-width: 860px) {
        .bc-journey-section { padding: 58px 18px 70px; }
        .bc-journey-section::after {
            right: -34px;
            top: 110px;
            opacity: 0.6;
        }
        .bc-journey-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .bc-journey-aside {
            padding-top: 0;
            border-top: 1px solid rgba(0,0,0,0.06);
            padding-top: 28px;
        }
        .bc-journey-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 18px;
        }
        .bc-journey-stat {
            padding: 16px 0;
        }
        .bc-journey-stat-num {
            font-size: 1rem;
        }
        .bc-journey-route { display: none; }
        .bc-journey-banner {
            flex-wrap: wrap;
            gap: 8px 14px;
            border-radius: 22px;
            text-align: center;
        }
        .bc-journey-banner-line {
            width: 52px;
        }
    }
    @media (max-width: 480px) {
        .bc-journey-section { padding: 42px 12px 56px; }
        .bc-journey-head { margin-bottom: 28px; }
        .bc-journey-title {
            font-size: 1.55rem;
        }
        .bc-journey-lead { font-size: 0.92rem; }
        .bc-journey-summary {
            font-size: 0.96rem;
            line-height: 1.8;
            margin-bottom: 22px;
            padding-left: 14px;
        }
        .bc-journey-stats {
            grid-template-columns: 1fr;
            gap: 0;
        }
        .bc-journey-stat {
            padding: 14px 0;
        }
        .bc-journey-stat-num {
            position: static;
            transform: none;
            display: inline-block;
            margin-top: 4px;
            min-width: 0;
            font-size: 0.98rem;
        }
        .bc-journey-stat-name {
            font-size: 0.9rem;
        }
        .bc-journey-stat-hint {
            font-size: 0.75rem;
        }
        .bc-journey-foot { margin-top: 34px; }
        .bc-journey-link {
            width: 100%;
            min-height: 48px;
            padding: 0 18px;
            font-size: 0.94rem;
        }
        .bc-journey-banner {
            padding: 10px 12px;
            border-radius: 16px;
            margin-bottom: 26px;
        }
        .bc-journey-banner-text {
            letter-spacing: 0.12em;
            font-size: 0.78rem;
        }
        .bc-journey-banner-line {
            display: none;
        }
        .bc-journey-banner-note {
            font-size: 0.85rem;
        }
    }
    @media (prefers-reduced-motion: reduce) {
        .bc-journey-link { transition: none; }
    }

    /* 主标题 */
    .main-title {
        font-size: 8.5rem;
        font-weight: 900;
        letter-spacing: 3px;
        color: rgba(255, 255, 255, 0.92);
        position: relative;
        text-align: center;
        margin: 0 auto;
        transition: transform 0.1s linear;
        line-height: 1.05;
        padding: 0.15em 0.22em;
        border-radius: 22px;
        text-shadow: 0 10px 30px rgba(0,0,0,0.35);
        -webkit-font-smoothing: antialiased;
        text-rendering: geometricPrecision;
    }

    /* 主标题底部柔光底板，让标题更“立” */
    .main-title::before {
        content: "";
        position: absolute;
        inset: -0.18em -0.35em -0.22em -0.35em;
        border-radius: 26px;
        background: radial-gradient(120% 140% at 50% 0%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0) 72%);
        filter: blur(1px);
        opacity: 0.9;
        z-index: -1;
        pointer-events: none;
    }

    /* 逐字入场动效 */
    .main-title.is-enhanced {
        display: inline-block;
        isolation: isolate;
    }
    .main-title.is-enhanced .title-char {
        display: inline-block;
        opacity: 0;
        transform: translateY(18px) scale(0.98);
        animation: titleCharIn 720ms cubic-bezier(.2,.9,.2,1) forwards;
        animation-delay: calc(var(--i) * 45ms + 80ms);
        will-change: transform, opacity;
    }
    @keyframes titleCharIn {
        0% { opacity: 0; transform: translateY(18px) scale(0.98); filter: blur(3px); }
        60% { opacity: 1; transform: translateY(-3px) scale(1.01); filter: blur(0); }
        100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    }

    /* 光泽扫过（轻量、不刺眼） */
    .main-title.is-enhanced::after {
        content: "";
        position: absolute;
        inset: -0.2em -0.4em;
        border-radius: 26px;
        background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 36%, rgba(255,255,255,0) 66%);
        transform: translateX(-120%) skewX(-12deg);
        animation: titleSheen 2.1s cubic-bezier(.16,.9,.2,1) 0.65s 1 forwards;
        pointer-events: none;
        mix-blend-mode: screen;
    }
    @keyframes titleSheen {
        to { transform: translateX(120%) skewX(-12deg); }
    }

    /* 悬停微呼吸 */
    @media (hover: hover) and (pointer: fine) {
        .main-title.is-enhanced:hover {
            text-shadow: 0 14px 34px rgba(0,0,0,0.42);
        }
        .main-title.is-enhanced:hover .title-char {
            transform: translateY(-1px);
            transition: transform 220ms ease;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .main-title.is-enhanced .title-char {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
        .main-title.is-enhanced::after { animation: none !important; display: none !important; }
    }

    /* 欢迎语容器 */
    .welcome-text {
        font-size: 3.5rem;
        font-weight: 600;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        white-space: nowrap;
    }

    /* 左上角：logo + 联系作者（并排） - 调整位置与右侧菜单对齐 */
    .logo-container {
        position: fixed;
        top: 22px; /* 向下移动，使中心点与右侧菜单对齐 */
        left: 30px;
        z-index: 101;
        display: flex;
        align-items: center;
        gap: 15px; /* 减小间距，防止旋转圆圈与联系冠恩重叠 */
    }

    /* 联系作者样式 */
    .logo-author {
        cursor: pointer;
        display: inline-block;
        margin-left: 50px;
        font-weight: bold;
        color: #333;
        transition: color 0.3s;
    }

    .logo-author:hover {
        color: #ff6600;
    }

    /* 文章按钮（以及导航栏内其他按钮） */
    .logo-article {
        cursor: pointer;
        display: inline-block;
        margin-left: 10px;
        font-weight: bold;
        color: #333;
        transition: color 0.3s;
        text-decoration: none; /* ！！！已添加：去除下划线！！！ */
    }

    .logo-article:hover {
        color: #ff6600;
    }

    /* logo 样式 */
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: transform 0.3s ease;
        position: relative;
    }
    .logo:hover { transform: scale(1.05); }

    .logo-img {
        width:42px; height:42px; border-radius:50%; overflow:hidden;
        box-shadow:0 2px 6px rgba(0,0,0,0.2); display:flex;
        justify-content:center; align-items:center; background:#f0f0f0;
        transition: transform 0.3s ease;
    }
    .logo:hover .logo-img { transform: scale(1.1); }
    .logo-img img{ width:100%; height:100%; object-fit:cover; }

    .logo-text {
        font-size:1.2rem; font-weight:700; color:#111; letter-spacing:2px;
        transition: transform 0.3s ease;
    }
    .logo:hover .logo-text { transform: scale(1.05); }

    /* logo tooltip */
    .logo-tooltip {
        position: absolute;
        top: 60px;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 0.9rem;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        pointer-events: none;
        z-index: 150;
    }
    .logo:hover .logo-tooltip {
        opacity: 1;
        transform: translateY(0);
    }

    /* 独立的"联系作者"文本 */
    .logo-author {
        font-size: 1.05rem;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        position: relative;
        padding: 6px 10px;
        border-radius: 6px;
        transition: color .18s ease, background .18s ease, transform .12s ease;
        user-select: none;
    }
    .logo-author:hover {
        color: #0078ff;
        background: rgba(0,0,0,0.02);
        transform: translateY(-1px);
    }

    /* 弹窗样式已移除，联系作者按钮直接跳转到页面底部 */

    /* 右上角菜单 */
    .menu { position:fixed; top:22px; right:30px; z-index:100; display:flex; gap:12px; }
    .menu-btn {
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        color: #333;
        transition: transform 0.3s ease;
        background: none;
        border: none;
        padding: 6px 10px;
        font-size: 1.05rem;
    }
    .menu-btn:hover { transform: scale(1.1); }

    /* 移动端响应式按钮优化 */
    @media (max-width: 768px) {
        /* 主头部布局调整 - 保持两边排列 */
        .main-header {
            padding: 8px 12px !important;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            background: transparent !important;
            background-color: transparent !important;
        }
        
        /* 左侧logo容器 - 保持在左侧 */
        .logo-container {
            position: static !important;
            display: flex !important;
            align-items: center !important;
            gap: 6px !important; /* 进一步减小间距，防止旋转圆圈与联系冠恩重叠 */
            flex-wrap: nowrap !important;
            margin: 0 !important;
        }
        
        .logo {
            display: flex !important;
            align-items: center !important;
            gap: 6px !important; /* 减小间距更紧凑 */
        }
        
        .logo-text {
            font-size: 0.9rem; /* 略微减小字体 */
            white-space: nowrap;
        }
        
        /* 联系冠恩和冠恩书屋 - 横向并排且更紧凑 */
        .logo-author, .logo-article {
            font-size: 0.8rem; /* 减小字体 */
            padding: 4px 6px; /* 减小内边距 */
            white-space: nowrap;
            margin: 0 !important;
        }
        
        /* 右侧菜单按钮 - 保持在右侧 */
        .menu {
            position: static !important;
            display: flex !important;
            align-items: center !important;
            gap: 4px !important; /* 减小间距更紧凑 */
        }
        
        .menu-btn {
            padding: 4px 6px; /* 减小内边距 */
            font-size: 0.8rem; /* 减小字体 */
            min-width: 40px; /* 减小最小宽度 */
            text-align: center;
        }
        
        /* 超小屏幕下的优化 - 仍然保持两边排列，更加紧凑 */
        @media (max-width: 480px) {
            .main-header {
                padding: 6px 8px !important;
                flex-wrap: nowrap;
                background: transparent !important;
                background-color: transparent !important;
            }
            
            .logo-container {
                gap: 6px !important;
            }
            
            .logo {
                gap: 4px !important;
            }
            
            .logo-text {
                font-size: 0.8rem;
            }
            
            .logo-author, .logo-article {
                font-size: 0.7rem;
                padding: 3px 5px;
            }
            
            .menu {
                gap: 3px !important;
            }
            
            .menu-btn {
                padding: 3px 5px;
                font-size: 0.7rem;
                min-width: 35px;
            }
        }
    }

    /* ========== 横向滚动展示区 ========== */
    .horizontal-scroll-section {
        padding: 80px 0;
        background: linear-gradient(to bottom, #fff);
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #decorativeHellos {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: 1;
    }
    .hello-bubble {
        position: absolute;
        font-size: 1rem;
        color: rgba(0,0,0,0.45);
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
        animation: floatUp 5s linear;
    }
    @keyframes floatUp {
        0% { transform: translateY(0) scale(1); opacity: 1; }
        100% { transform: translateY(-100px) scale(1.12); opacity: 0; }
    }

    .scroll-container { max-width: 100%; margin: 0 auto; padding-top: 20px; }
    .scroll-title {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 50px;
        color: #333;
        position: relative;
    }
    .scroll-title:after {
        content: '';
        display: block;
        width: 80px;
        height: 5px;
        background: #333;
        margin: 20px auto;
        border-radius: 3px;
    }

    .horizontal-scroll {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 30px 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }
    .horizontal-scroll::-webkit-scrollbar { display: none; }

    .scroll-content { display:flex; gap: 35px; padding: 0 50px; }

    .photo-item {
        scroll-snap-align: start;
        flex: 0 0 auto;
        width: 600px;
        height: 400px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        background: #f5f5f5;
        position: relative;
    }
    .photo-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
    .photo-item:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 20px 45px rgba(0,0,0,0.25); }
    .photo-item:hover img { transform: scale(1.12); }

    /* 图片标题 */
    .photo-caption {
        position: absolute; bottom: 0; left:0; right:0; color:#fff; padding:15px;
        transform: translateY(100%); transition: transform 0.4s ease; text-align:center;
        font-size:16px; font-weight:500; text-shadow: 0 2px 4px rgba(0,0,0,0.8); z-index: 2;
    }

    .photo-item:hover .photo-caption { transform: translateY(0); }

    /* 版权归作者所有*/
    .copyright-note {
        text-align: center;
        font-size: 0.85rem;
        color: rgba(0,0,0,0.5);
        margin-top: 25px;
        margin-bottom: 1px;
    }

    /* 渐变覆盖 */
    .photo-item::after {
        content:''; position:absolute; bottom:0; left:0; right:0; height:40%;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
        opacity:0; transition:opacity .4s ease; z-index: 1;
    }
    .photo-item:hover::after { opacity: 1; }

    /* 自定义滚动条 */
    .custom-scrollbar { width: 80%; height: 6px; background: rgba(0,0,0,0.08); border-radius:3px; margin:30px auto 0; position:relative; overflow:hidden; 
        display:block; /* ！！！已添加：将none改为block，让其显示出来！！！ */
    }
    .scroll-track { width:100%; height:100%; position:relative; }
    .scroll-thumb {
        position:absolute; height:100%; background: rgba(0,0,0,0.5); border-radius:3px; cursor:pointer; transition:background .3s ease; min-width:50px;
    }
    .scroll-thumb:hover { background: rgba(0,0,0,0.7); }

    /* 小光标样式 */
    .cursor { display:inline-block; width:2px; height:1.2em; background:#111; margin-left:4px; vertical-align:middle; animation: blink 1s steps(2,start) infinite; }
    @keyframes blink { 50% { opacity:0; } }

    /* ========= 中心文字展示 ========= */
    .center-text-section {
        width: 100%;
        min-height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 20px;
        background-color: #fefefe;
    }

    .center-text-container {
        max-width: 900px;
    }

    .center-text {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.8;
        color: #222;
        opacity: 0;
        transform: scale(0.7);
        transition: opacity 1s ease, transform 1s ease;
        word-break: break-word;
        white-space: normal;
        text-align: left;
    }

    /* 激活状态：淡入放大 */
    .center-text.show {
        opacity: 1;
        transform: scale(1);
    }

    /* 新增引用区块样式 */
    .quote-section {
        width: 100%;
        padding: 60px 20px;
        background-color: #f9f9f9;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quote-container {
        max-width: 1000px;
        width: 100%;
        text-align: center;
    }

    .highlight-quote {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
        line-height: 1.6;
        margin: 0;
        font-family: "Microsoft YaHei", Arial, sans-serif;
    }

    /* 用户评价模块样式 */
    .bg-background {
        background-color: #f9f9f9;
        position: relative;
        overflow: hidden;
    }

    /* 横三竖三布局 */
    .testimonials-grid-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        animation: scrollUp 30s linear infinite;
        position: relative;
        will-change: transform;
    }

    /* 设置一个容器来实现无缝循环滚动 */
    .testimonials-wrapper {
        position: relative;
        height: 500px; /* 设置固定高度，显示3行 */
        overflow: hidden;
        margin: 0 auto;
    }

    .testimonial-row {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    /* 实现更流畅、更慢的永久反复滚动效果 */
    @keyframes scrollUp {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-50%);
        }
    }

    /* 调整响应式布局 */
    @media (max-width: 1024px) {
        .testimonials-wrapper {
            height: 450px;
        }
        .testimonial-item {
            width: 280px;
        }
    }

    @media (max-width: 768px) {
        .testimonials-wrapper {
            height: 400px;
        }
        .testimonial-item {
            width: 220px;
        }
        .testimonial-row {
            gap: 20px;
        }
    }

    .testimonial-item {
        background: white;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 320px; /* 设置固定宽度，确保三列布局 */
    }

    .testimonial-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px;
        font-family: "Microsoft YaHei", Arial, sans-serif;
    }

    .testimonial-author {
        display: flex;
        justify-content: center;
        padding-top: 15px;
    }

    /* 额外的动画优化 */
    .testimonials-wrapper {
        position: relative;
        height: 500px; /* 设置固定高度，显示3行 */
        overflow: hidden;
        margin: 0 auto;
        perspective: 1000px;
    }

    /* 响应式设计 - 针对用户评价模块的优化 */
    /* 桌面端（永久滚动动画） */
    @media (min-width: 769px) {
        .testimonials-wrapper {
            position: relative;
            height: 500px; /* 设置固定高度，显示3行 */
            overflow: hidden;
            margin: 0 auto;
            perspective: 1000px;
        }
        
        /* 自动滚动动画 */
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        
        .testimonials-grid-container {
            will-change: transform;
            backface-visibility: hidden;
            transform: translateZ(0);
            animation: scrollUp 30s linear infinite;
        }
    }

    .testimonial-name {
        font-weight: bold;
        color: #111;
        font-size: 0.95rem;
    }

    .testimonial-role {
        color: #666;
        font-size: 0.85rem;
        margin-top: 2px;
    }

    /* InteractiveHoverButton基础样式 */
    .interactive-hover-button {
        background-color: #fff;
        color: #333;
        border: 1px solid #ddd;
    }

    .interactive-hover-button:hover {
        background-color: #f5f5f5;
    }

    /* 优雅样式的按钮 - 更长的UI和增强的动画效果 */
    .elegantly-styled-button {
        /* 增加按钮长度 - 使UI更长 */
        width: 220px !important;
        padding: 12px 24px !important;
        
        /* 更优雅的外观 */
        border-radius: 30px;
        border: 2px solid #333;
        background: linear-gradient(135deg, #ffffff, #f5f5f5);
        box-shadow: 0 6px 12px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
        color: #333;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        
        /* 增强的过渡动画 */
        transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

    /* 添加装饰性元素 */
    .elegantly-styled-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
        transition: all 0.6s;
    }

    .elegantly-styled-button:hover::before {
        left: 100%;
    }

    .elegantly-styled-button:hover {
        /* 悬停时的缩放和阴影效果 */
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 12px 20px rgba(0,0,0,0.18), 0 3px 6px rgba(0,0,0,0.12);
        border-color: #444;
        background: linear-gradient(135deg, #f5f5f5, #ffffff);
    }

    .elegantly-styled-button:active {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    /* 添加波纹动画效果 */
    .elegantly-styled-button span {
        position: relative;
        z-index: 2;
    }

    /* 点击波纹效果样式 */
    .elegantly-styled-button .ripple {
        position: absolute;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
        transform: scale(0);
        animation: buttonRipple 0.6s ease-out;
        pointer-events: none;
        z-index: 1;
    }

    /* 波纹效果的关键帧动画 */
    @keyframes buttonRipple {
        0% {
            transform: scale(0);
            opacity: 0.7;
        }
        100% {
            transform: scale(4);
            opacity: 0;
        }
    }

    /* 主标题栏样式 - 确保完全透明 */
    .main-header {
        background: transparent !important;
        backdrop-filter: none !important;
        border-bottom: none !important;
        background-color: transparent !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10050 !important;
        padding: 15px 30px !important;
        background-image: none !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
    }

    /* 确保所有元素对齐 */
    .logo-container,
    .menu {
        display: flex !important;
        align-items: center !important;
        background: transparent !important;
    }

    /* 修复logo容器和menu容器的样式冲突 */
    .logo-container {
        position: static !important;
        z-index: auto !important;
        background: transparent !important;
    }

    /* 确保所有顶部容器都是透明的 */
    header,
    .nav-container,
    .logo,
    .rotating-logo-wrapper,
    .central-logo {
        background: transparent !important;
        background-color: transparent !important;
    }

    /* 确保logo图片容器也是透明的 */
    .logo-img {
        background: transparent !important;
        background-color: transparent !important;
    }

    /* 额外的波纹效果 */
    .elegantly-styled-button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(0,0,0,0.1);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%, -50%);
        transform-origin: 50% 50%;
    }

    @keyframes ripple {
        0% {
            transform: scale(0, 0);
            opacity: 0.5;
        }
        100% {
            transform: scale(100, 100);
            opacity: 0;
        }
    }

    .elegantly-styled-button:focus:not(:active)::after {
        animation: ripple 0.6s ease-out;
    }

    /* 底部图标样式 */
    .footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    }

    .footer-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    }

    .footer-icons a,
    .footer-icons #wechat-icon {
        display: inline-block;
        margin: 0 12px;
        vertical-align: middle;
    }

    .footer-icons .footer-icon {
        width: 32px;
        height: 32px;
        display: block;
    }

    .footer-icons .footer-icon:hover {
    transform: scale(1.2) translateY(-3px);
    filter: brightness(1.2);
    }

    /* 底部图标链接样式 */
    .footer-icon-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 12px;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .footer-icon-link:hover {
        transform: scale(1.2) translateY(-3px);
        filter: brightness(1.2);
    }

    /* 微信容器样式 */
    .wechat-container {
        position: relative;
        cursor: pointer;
    }

    /* 微信弹出框样式 */
    .wechat-popup {
        display: none;
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 12px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        font-family: Microsoft YaHei, Arial, sans-serif;
        font-size: 14px;
        white-space: nowrap;
        margin-bottom: 8px;
        z-index: 1000;
    }

    .wechat-popup::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #fff transparent transparent transparent;
    }

    .wechat-container:hover .wechat-popup {
        display: block;
    }

    /* 备案信息样式 */
    footer {
        width: 100%;
        padding: 12px 8px;
        box-sizing: border-box;
        text-align: center;
        font-family: "Microsoft YaHei", Arial, sans-serif;
        color: #555;
        font-size: 0.8rem;
    }
    .beian-link {
        color: #555;
        text-decoration: none;
    }
    .beian-link:hover {
        text-decoration: underline;
    }
    .beian-icon {
        height: 16px;
        vertical-align: -3px;
        margin-right: 4px;
    }
    .divider {
        margin: 0 6px;
    }

    /* 页面底部按钮 */
    .to-bottom-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(0,0,0,0.8);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 99;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .to-bottom-btn:hover {
        transform: translateY(-5px);
        background: rgba(0,0,0,0.9);
    }

    /* ========== 响应式设计 ========== */
    /* 平板设备 */
    @media (max-width: 1024px) {
        .main-title {
            font-size: 6rem;
        }
        
        .welcome-text {
            font-size: 2.5rem;
        }
        
        .photo-item {
            width: 500px;
            height: 350px;
        }
        
        .scroll-title {
            font-size: 2.2rem;
        }
        
        .center-text {
            font-size: 1.8rem;
        }
        
        .logo-container {
            left: 20px;
            gap: 15px;
        }
        
        .menu {
            right: 20px;
        }
    }

    /* 大屏手机 */
    @media (max-width: 768px) {
        .main-title {
            font-size: 4rem;
        }
        
        .welcome-text {
            font-size: 2rem;
            white-space: normal;
        }
        
        .photo-item {
            width: 400px;
            height: 280px;
        }
        
        .scroll-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }
        
        .center-text {
            font-size: 1.5rem;
            text-align: center;
        }
        
        .logo-container {
            top: 15px;
            left: 15px;
            gap: 10px;
        }
        
        .logo-text {
            font-size: 1rem;
        }
        
        /* 优化手机端导航栏 - 保持透明背景 */
        .main-header {
            padding: 10px !important;
            background-color: transparent !important;
            backdrop-filter: none !important;
            box-shadow: none !important;
        }
        
        /* 优化logo和导航按钮布局 */
        .logo-container {
            flex-wrap: wrap;
            justify-content: center;
        }
        
        /* 调整导航按钮尺寸和间距 */
        .menu-btn {
            padding: 6px 10px;
            font-size: 0.9rem;
        }
        
        /* 隐藏桌面端的一些元素 */
        .logo-author, .logo-article {
            display: none;
        }
        
        /* 在小屏幕上显示更多空间 */
        .fullscreen {
            padding-top: 80px;
        }
        
        /* 用户评价模块在手机端的优化 */
        .testimonials-wrapper {
            height: auto !important;
            overflow-x: hidden !important; /* 自动滚动时通常隐藏手动滚动条，或者允许手动干预 */
            overflow-y: hidden !important;
            padding: 20px 0 !important;
            display: block !important;
        }
        
        .testimonials-grid-container {
            display: flex !important;
            flex-direction: row !important;
            gap: 15px !important;
            padding: 0 15px !important;
            width: max-content !important;
            animation: scrollLeft 80s linear infinite !important; /* 慢速自动滚动，从 60s 调整为 80s */
        }
        
        /* 鼠标悬停或触摸时暂停滚动 */
        .testimonials-wrapper:hover .testimonials-grid-container,
        .testimonials-wrapper:active .testimonials-grid-container {
            animation-play-state: paused !important;
        }
        
        .testimonial-row {
            display: flex !important;
            flex-direction: row !important;
            gap: 15px !important;
            width: auto !important;
        }

        /* 显示所有行（共9个卡片及其副本） */
        .testimonial-row:not(:first-child) {
            display: flex !important;
        }
        
        .testimonial-item {
            width: 280px !important;
            flex-shrink: 0 !important;
            margin: 0 !important;
            max-width: none !important;
        }
        
        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%); /* 滚动到一半，因为后半部分是副本 */
            }
        }
        
        .testimonial-text {
            font-size: 0.9rem;
        }
        
        .menu {
            top: 20px;
            right: 15px;
        }
        
        .horizontal-scroll-section {
            padding: 50px 0;
        }
        
        .to-bottom-btn {
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
        }
    }

    /* 小屏手机 */
    @media (max-width: 480px) {
        .main-title {
            font-size: 2.8rem;
        }
        
        .welcome-text {
            font-size: 1.5rem;
        }
        
        .photo-item {
            width: 320px;
            height: 220px;
        }
        
        .scroll-title {
            font-size: 1.5rem;
        }
        
        .center-text {
            font-size: 1.2rem;
            line-height: 1.6;
            word-break: keep-all; /* 防止单个汉字换行 */
            word-wrap: break-word;
            hyphens: auto;
        }
        
        /* 移动端文字换行优化 */
        .mobile-break {
            display: inline;
            white-space: nowrap;
        }
        
        .logo-container {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }
        
        .logo-author, .logo-article {
            margin-left: 0;
        }
        
        .menu {
            flex-direction: column;
            gap: 8px;
        }
        
        #loading-message {
            font-size: 1.4rem;
        }
        
        .floating-text {
            font-size: 16px;
        }
        
        .footer-icons {
            gap: 10px;
        }
        
        .footer-icon {
            width: 24px;
            height: 24px;
        }
        
        footer {
            font-size: 0.7rem;
        }
        
        .to-bottom-btn {
            bottom: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
        }
    }

    /* 超小屏设备 */
    @media (max-width: 360px) {
        .main-title {
            font-size: 2.2rem;
        }
        
        .welcome-text {
            font-size: 1.2rem;
        }
        
        .photo-item {
            width: 280px;
            height: 200px;
        }
        
        .scroll-title {
            font-size: 1.3rem;
        }
        
        .center-text {
            font-size: 1rem;
        }
        
        .logo-text {
            font-size: 0.9rem;
        }
        
        .logo-author, .logo-article {
            font-size: 0.8rem;
        }
    }

    /* 横屏模式 */
    @media (max-height: 500px) and (orientation: landscape) {
        .fullscreen {
            height: auto;
            min-height: 100vh;
            padding: 0;
        }
        
        .main-title {
            font-size: 4rem;
            margin: 20px 0;
        }
        
        .welcome-text {
            font-size: 1.8rem;
        }
    }

    /* 高分辨率设备 */
    @media (min-width: 1600px) {
        .container {
            max-width: 1400px;
        }
        
        .main-title {
            font-size: 10rem;
        }
        
        .welcome-text {
            font-size: 4rem;
        }
        
        .photo-item {
            width: 700px;
            height: 450px;
        }
    }

    /* ========= 移动端体验优化 ========= */

    /* 触摸目标优化 */
    @media (max-width: 768px) {
        /* 增强触摸目标大小 */
        a, button, .footer-icon-link, .photo-item, .menu-btn, .logo-author, .logo-article {
            touch-action: manipulation;
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 防止移动端双击缩放 */
        * {
            -webkit-tap-highlight-color: transparent;
        }
        
        /* 优化横向滚动体验 */
        .horizontal-scroll-wrapper {
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        
        .horizontal-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }
        
        /* 优化触摸反馈 */
        .interactive-hover-button:active {
            transform: scale(0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        /* 优化图片触摸效果 */
        .photo-item:active {
            transform: translateY(-2px);
        }
        
        /* 优化按钮触摸效果 */
        .menu-btn:active {
            transform: scale(0.95);
        }
        
        /* 优化打字机效果在小屏幕上的显示 */
        .cursor {
            height: 1.2em !important;
            width: 3px !important;
        }
        
        /* 优化悬浮文字在小屏幕上的显示 */
        .floating-text {
            font-size: 14px !important;
            padding: 8px 15px !important;
        }
    }

    /* 小屏幕设备优化 */
    @media (max-width: 480px) {
        /* 优化顶部区域布局 */
        .main-header {
            padding: 10px !important;
        }
        
        /* 优化欢迎语容器 */
        #welcomeContainer {
            font-size: 16px !important;
            padding: 15px;
            text-align: center;
        }
        
        /* 优化横向滚动容器 */
        .scroll-content {
            padding: 0 10px !important;
            gap: 15px !important;
        }
        
        /* 优化中心文字区域间距 */
        #centerText {
            margin-top: 80px !important;
            margin-bottom: 80px !important;
            padding: 0 15px;
            line-height: 1.8 !important;
        }
        
        /* 优化底部图标布局 */
        .footer-icons {
            gap: 15px;
            padding: 10px;
        }
        
        /* 优化备案信息显示 */
        footer {
            padding: 20px 10px !important;
            line-height: 1.8;
        }
        
        /* 优化分割线显示 */
        .divider {
            display: block !important;
            margin: 5px auto !important;
            width: 50px;
            height: 1px;
            background: #ddd;
        }
        
        /* 优化底部按钮位置 */
        .to-bottom-btn {
            bottom: 20px !important;
            right: 20px !important;
            z-index: 999;
        }
    }

    /* 超小屏幕设备优化 */
    @media (max-width: 360px) {
        /* 进一步优化文字大小 */
        #welcomeContainer {
            font-size: 14px !important;
        }
        
        #centerText {
            font-size: 1.1rem !important;
            margin-top: 50px !important;
            margin-bottom: 50px !important;
        }
        
        /* 优化滚动条显示 */
        .custom-scrollbar {
            width: 90% !important;
        }
        
        /* 优化图片尺寸 */
        .photo-item {
            min-width: 240px !important;
            height: 180px !important;
        }
        
        /* 优化底部图标大小 */
        .footer-icon {
            width: 28px !important;
            height: 28px !important;
        }
        
        /* 优化备案信息字体 */
        footer {
            font-size: 0.65rem !important;
        }
    }

    /* 横屏模式优化 */
    @media (max-height: 500px) and (orientation: landscape) {
        /* 优化顶部区域高度 */
        .fullscreen {
            height: 100vh !important;
            min-height: 300px;
        }
        
        /* 优化欢迎语容器位置 */
        #welcomeContainer {
            transform: translateY(-20%) !important;
        }
        
        /* 优化横向滚动区 */
        .horizontal-scroll-section {
            margin-top: 10px;
        }
        
        .photo-item {
            height: 120px !important;
        }
        
        /* 优化中心文字区域 */
        #centerText {
            margin-top: 40px !important;
            margin-bottom: 40px !important;
        }
    }

    /* 高分辨率设备优化 */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        /* 确保图像在高DPI屏幕上清晰显示 */
        .photo-item img {
            image-rendering: -webkit-optimize-contrast;
        }
        
        /* 优化SVG图标显示 */
        .footer-icon {
            image-rendering: optimizeQuality;
        }
    }

    /* 性能优化 */
    @media (max-width: 768px) {
        /* 减少动画复杂度 */
        .photo-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .photo-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        
        /* 减少过渡效果复杂度 */
        .elegantly-styled-button {
            transition: all 0.3s ease;
        }
        
        /* 优化渲染性能 */
        * {
            will-change: auto;
        }
        
        .main-title, .welcome-text, .photo-item {
            will-change: transform;
        }
    }

    /* ========== 汇总导航栏 ========== */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10050;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 15px 30px;
        background: transparent !important;
    }

    .header-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
        flex-shrink: 0;
    }

    .header-brand .logo-author {
        margin-left: 0 !important;
        white-space: nowrap;
    }

    .nav-mobile-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 10051;
        border: none;
        padding: 0;
        margin: 0;
        cursor: default;
        -webkit-tap-highlight-color: transparent;
    }

    body.nav-mobile-open .nav-mobile-backdrop {
        display: block;
    }

    body.nav-mobile-open .chat-widget.minimized {
        z-index: 9990;
    }

    .header-nav {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        position: relative;
        z-index: 10053;
    }

    .nav-section {
        position: relative;
    }

    .nav-section-toggle {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        color: #333;
        background: none;
        border: none;
        padding: 6px 12px;
        font-size: 1.05rem;
        border-radius: 6px;
        transition: color 0.18s ease, background 0.18s ease;
        white-space: nowrap;
    }

    .nav-section-toggle:hover,
    .nav-section.is-open > .nav-section-toggle {
        color: #0078ff;
        background: rgba(0, 0, 0, 0.04);
    }

    .nav-section-toggle::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        transition: transform 0.2s ease;
    }

    .nav-section.is-open > .nav-section-toggle::after {
        transform: rotate(180deg);
    }

    .nav-section-items {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 148px;
        padding: 8px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0, 0, 0, 0.06);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
        z-index: 120;
    }

    .nav-section.is-open > .nav-section-items {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-section-items .logo-article,
    .nav-section-items .nav-section-item {
        display: block;
        width: 100%;
        margin: 0 !important;
        padding: 10px 12px;
        text-align: left;
        border-radius: 8px;
        white-space: nowrap;
        border: none;
        background: none;
        font: inherit;
        color: inherit;
        -webkit-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: rgba(0, 120, 255, 0.12);
    }

    .nav-section-items .logo-article:hover,
    .nav-section-items .nav-section-item:hover {
        background: rgba(0, 120, 255, 0.06);
        color: #0078ff;
    }

    .nav-section--utils {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .nav-section--utils .menu-btn {
        position: static;
    }

    .nav-mobile-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 8px;
        border: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        cursor: pointer;
        flex-shrink: 0;
        position: relative;
        z-index: 10054;
    }

    .nav-hamburger-line {
        display: block;
        width: 100%;
        height: 2px;
        background: #333;
        border-radius: 2px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    body.nav-mobile-open .nav-hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-mobile-open .nav-hamburger-line:nth-child(2) {
        opacity: 0;
    }

    body.nav-mobile-open .nav-hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 768px) {
        .main-header {
            padding: 10px 14px !important;
        }

        .header-brand {
            gap: 8px;
            flex: 0 0 auto;
            min-width: 0;
        }

        .nav-mobile-toggle {
            display: flex;
        }

        .header-nav {
            position: fixed;
            top: 0;
            right: calc(-1 * min(320px, 88vw));
            width: min(320px, 88vw);
            height: 100vh;
            height: 100dvh;
            margin: 0;
            padding: 72px 16px 24px;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            background: #fff;
            box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
            transition: right 0.28s ease;
            transform: none;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            z-index: 10053;
            touch-action: manipulation;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        body.nav-mobile-open .nav-mobile-backdrop {
            right: min(320px, 88vw);
        }

        body.nav-mobile-open .header-nav {
            right: 0;
            transform: none;
        }

        body.nav-mobile-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        .nav-section {
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .nav-section-toggle {
            width: 100%;
            justify-content: space-between;
            padding: 14px 4px;
            font-size: 0.95rem;
        }

        .nav-section-items {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: none;
            background: transparent;
            padding: 0 0 8px 8px;
            display: none;
        }

        .nav-section.is-open > .nav-section-items {
            display: block;
        }

        .nav-section-items .logo-article,
        .nav-section-items .nav-section-item {
            font-size: 0.9rem;
            padding: 12px 10px;
            position: relative;
            z-index: 1;
            touch-action: manipulation;
            cursor: pointer;
        }

        .nav-section--utils {
            margin-top: 8px;
            padding-top: 8px;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            border-bottom: none;
        }

        .nav-section--utils .menu-btn {
            width: 100%;
            text-align: left;
            padding: 14px 4px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .header-nav {
            width: min(300px, 92vw);
            right: calc(-1 * min(300px, 92vw));
        }

        body.nav-mobile-open .header-nav {
            right: 0;
        }

        body.nav-mobile-open .nav-mobile-backdrop {
            right: min(300px, 92vw);
        }
    }

    /* 微信 X5 内核：避免 transform 导致 fixed 层点击失效 */
    html.is-wechat .header-nav {
        transform: none !important;
        -webkit-transform: translateZ(0) !important;
    }

    /* ========== 首页移动端留白优化（仅视觉，不改逻辑） ========== */
    @media (max-width: 768px) {
        .page-content {
            padding-left: env(safe-area-inset-left, 0);
            padding-right: env(safe-area-inset-right, 0);
        }

        #topSection.fullscreen {
            height: auto !important;
            min-height: 70svh !important;
            padding: 68px 20px 32px !important;
        }

        .title-container {
            width: 100%;
            max-width: 100%;
            padding: 0 6px;
        }

        .quote-section {
            padding: 36px 22px;
        }

        .highlight-quote {
            font-size: 1.22rem;
            line-height: 1.9;
            letter-spacing: 0.02em;
        }

        section.bg-background {
            padding-top: 28px;
            padding-bottom: 28px;
        }

        .container {
            padding-left: 1.15rem;
            padding-right: 1.15rem;
        }

        .testimonials-wrapper {
            padding: 20px 0 !important;
        }

        .testimonials-grid-container {
            gap: 12px !important;
        }

        .testimonial-row {
            gap: 12px !important;
        }

        .testimonial-item {
            width: 252px !important;
            padding: 16px 14px !important;
            border-radius: 10px;
        }

        .testimonial-text {
            font-size: 0.86rem;
            line-height: 1.78;
            margin-bottom: 12px;
        }

        .testimonial-author {
            padding-top: 10px;
        }

        .testimonial-button-container {
            margin-top: 24px !important;
            margin-bottom: 12px !important;
        }

        .horizontal-scroll-section {
            padding: 44px 0;
        }

        .scroll-container {
            padding-top: 12px;
        }

        .scroll-title {
            font-size: 1.5rem !important;
            margin-bottom: 22px !important;
            padding: 0 18px;
            line-height: 1.5;
        }

        .scroll-title:after {
            width: 44px;
            height: 3px;
            margin: 12px auto;
        }

        .horizontal-scroll {
            padding: 14px 10px;
        }

        .scroll-content {
            padding: 0 14px !important;
            gap: 16px !important;
        }

        .center-text-section {
            padding: 0 18px;
        }

        #centerText,
        .center-text {
            margin-top: 44px !important;
            margin-bottom: 44px !important;
            padding: 0 10px !important;
            line-height: 2 !important;
            font-size: 1.05rem;
        }

        .footer-icons {
            gap: 16px;
            margin-top: 24px;
            padding: 14px 18px 6px;
        }

        footer {
            padding: 18px 14px 24px !important;
            line-height: 1.9;
        }

        .bc-journey-section {
            padding-top: 48px;
            padding-bottom: 56px;
        }

        .bc-journey-head {
            margin-bottom: 22px;
        }

        .bc-journey-lead {
            margin-top: 16px;
            line-height: 1.85;
        }

        .bc-journey-foot {
            margin-top: 32px;
        }
    }

    @media (max-width: 480px) {
        #topSection.fullscreen {
            min-height: 64svh !important;
            padding: 60px 16px 28px !important;
        }

        .quote-section {
            padding: 30px 18px;
        }

        .highlight-quote {
            font-size: 1.08rem;
            line-height: 1.95;
        }

        .testimonial-item {
            width: 236px !important;
            padding: 14px 12px !important;
        }

        .scroll-title {
            font-size: 1.28rem !important;
            padding: 0 14px;
        }

        .photo-item {
            width: 300px;
            height: 210px;
        }

        #centerText,
        .center-text {
            margin-top: 36px !important;
            margin-bottom: 36px !important;
            font-size: 1rem;
        }

        .bc-journey-title {
            font-size: 1.42rem;
        }

        .bc-journey-lead {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 768px) {
        a.beian-link,
        footer .beian-link {
            min-width: 0;
            min-height: 0;
            display: inline;
        }

        .footer-icon-link {
            min-width: 44px;
            min-height: 44px;
        }
    }
    