        body {
            padding-top: 0px !important;
        }

        /* Founder页面内容样式 */
        .founder-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: flex;
            gap: 60px;
        }

        /* 左侧肖像区域 */
        .founder-portrait {
            flex: 0 0 33%;
            text-align: center;
        }

        .portrait-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin-bottom: 20px;
        }

        .portrait-caption {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 5px;
        }

        .portrait-title {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        /* 右侧信件区域 */
        .founder-letter {
            flex: 0 0 67%;
            background: white;
            padding: 60px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #eaeaea;
            position: relative;
            /* 信纸背景效果 */
            background-image:
                linear-gradient(to bottom, transparent 95%, rgba(0, 0, 0, 0.03) 95%),
                linear-gradient(to right, #f9f9f9 0%, white 5%, white 95%, #f9f9f9 100%);
            background-size: 100% 30px, 100% 100%;
        }

        /* 信件正文样式 */
        .letter-content {
            font-size: 17.6px;
            line-height: 1.8;
            color: #333;
        }

        .letter-content p {
            margin-bottom: 24px;
        }

        .letter-content h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin: 32px 0 16px;
            font-weight: 600;
        }

        .letter-content ul {
            margin-bottom: 24px;
            padding-left: 24px;
        }

        .letter-content li {
            margin-bottom: 12px;
        }

        /* 签名区域 */
        .letter-signature {
            margin-top: 60px;
            text-align: left;
        }

        .signature-name {
            font-family: 'Great Vibes', cursive;
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 10px;
            line-height: 1;
        }

        .signature-title {
            font-size: 16px;
            color: #666;
            margin-bottom: 5px;
        }

        .signature-date {
            font-size: 14px;
            color: #888;
        }

        /* 行动按钮区域 */
        .founder-actions {
            max-width: 1200px;
            margin: 0 auto 80px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .action-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #eaeaea;
            text-align: left;
            /* 英文文本左对齐更自然 */
            display: flex;
            flex-direction: column;
        }

        .action-card h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .action-card p {
            font-size: 16px;
            color: #666;
            margin-bottom: 24px;
            line-height: 1.6;
            flex-grow: 1;
            /* 使段落填充可用空间，保持按钮在底部 */
        }

        /* 品牌按钮样式 - 优化英文版 */
        .btn-brand {
            display: inline-block;
            padding: 14px 24px;
            /* 左右内边距减小，适应英文宽度 */
            background-color: #DB0058;
            /* 玫红色 */
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            /* 字体稍小，适应英文长度 */
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 180px;
            white-space: nowrap;
            /* 防止按钮文字换行 */
            align-self: flex-start;
            /* 按钮左对齐，与文字对齐 */
            width: auto;
            /* 宽度自适应内容 */
        }

        .btn-brand:hover {
            background-color: #c4004a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(219, 0, 88, 0.3);
        }

        /* 响应式设计优化 */
        @media (max-width: 992px) {
            .founder-actions {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 60px;
            }

            .action-card {
                text-align: center;
                /* 移动端居中 */
            }

            .btn-brand {
                align-self: center;
                /* 移动端按钮居中 */
            }
        }

        @media (max-width: 672px) {
            .action-card {
                padding: 30px;
            }

            .btn-brand {
                padding: 12px 20px;
                font-size: 14px;
                min-width: 160px;
            }
        }

        @media (max-width: 420px) {
            .action-card {
                padding: 20px;
            }

            .btn-brand {
                padding: 10px 18px;
                font-size: 13px;
                min-width: 140px;
            }
        }

        /* 页面导语 */
        .page-intro {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
            font-size: 18px;
            color: #555;
            line-height: 1.6;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .founder-content {
                flex-direction: column;
                gap: 40px;
                padding: 40px 20px;
            }

            .founder-portrait {
                flex: 0 0 auto;
            }

            .founder-letter {
                flex: 0 0 auto;
                padding: 40px;
            }

            .founder-actions {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 60px;
            }
        }

        @media (max-width: 672px) {
            .founder-letter {
                padding: 30px;
            }

            .letter-content {
                font-size: 16px;
            }

            .signature-name {
                font-size: 36px;
            }

            .action-card {
                padding: 30px;
            }

            .btn-brand {
                padding: 12px 24px;
                font-size: 15px;
                min-width: 160px;
            }
        }

        @media (max-width: 420px) {
            .founder-letter {
                padding: 20px;
            }

            .letter-content {
                font-size: 15px;
            }

            .action-card {
                padding: 20px;
            }
        }

        /* 禁用page-header和page-intro的动画效果 */
        .page-header,
        .page-intro {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }

        .page-header .banner-content,
        .page-header .page-subtitle,
        .page-intro .intro-content,
        .page-intro p {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }

        /* 页面导语 - 调整宽度与founder-content等宽 */
        .page-intro {
            max-width: 1200px;
            /* 与founder-content等宽 */
            margin: 0 auto;
            padding: 40px 20px;
            /* 与founder-content上下边距一致 */
            text-align: center;
            font-size: 18px;
            color: #555;
            line-height: 1.6;
        }

        /* 移除原来的.container嵌套 */
        .page-intro .container {
            max-width: 100%;
            padding: 0;
        }

        /* 页面导语 - 调整宽度与founder-content等宽 */
        .page-intro {
            max-width: 1200px;
            /* 与founder-content等宽 */
            margin: 0 auto;
            padding: 40px 20px;
            /* 与founder-content上下边距一致 */
            font-size: 18px;
            color: #555;
            line-height: 1.6;
            text-align: justify;
            /* 添加两端对齐 */
        }

        /* 确保段落也两端对齐 */
        .page-intro p {
            text-align: justify;
            margin: 0;
            /* 移除默认外边距 */
        }

        /* 移动端调整为左对齐以获得更好阅读体验 */
        @media (max-width: 768px) {
            .page-intro {
                text-align: left;
            }

            .page-intro p {
                text-align: left;
            }
        }

/* 渐入动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Founder内容区动画 */
.founder-content {
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* 行动按钮区域初始状态 */
.founder-actions {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 行动按钮区域激活状态 */
.founder-actions.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Founder页面内容样式 */
.founder-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 60px;
    opacity: 0; /* 初始透明 */
    animation: fadeInUp 1s ease 0.3s forwards; /* 延迟0.3秒开始，持续1秒 */
}

/* 行动按钮区域 */
.founder-actions {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 0; /* 初始透明 */
    transform: translateY(30px); /* 初始位置下移 */
    transition: opacity 0.8s ease, transform 0.8s ease; /* 平滑过渡效果 */
}

/* 行动按钮区域激活状态 */
.founder-actions.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 渐入动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 左侧肖像区域 - 添加sticky效果 */
.founder-portrait {
    flex: 0 0 33%;
    text-align: center;
    position: sticky;
    top: 120px; /* 距离顶部的距离，可根据需要调整 */
    align-self: flex-start; /* 确保元素顶部对齐 */
    height: fit-content; /* 高度适应内容 */
}

/* 为了确保sticky效果正常工作，需要设置父容器高度 */
.founder-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 60px;
    opacity: 0; /* 初始透明 */
    animation: fadeInUp 1s ease 0.3s forwards; /* 延迟0.3秒开始，持续1秒 */
    min-height: 800px; /* 确保内容足够高以显示sticky效果 */
}

/* 签名区域 */
.letter-signature {
    margin-top: 60px;
    text-align: left;
}

.signature-name {
    font-family: 'Dancing Script', 'Great Vibes', cursive; /* 优先使用Dancing Script，更自然的手写体 */
    font-size: 52px; /* 稍大一点，看起来更自然 */
    color: #333; /* 深灰色代替绿色 */
    margin-bottom: 8px;
    line-height: 1.1;
    font-weight: 400; /* 正常字重，不加粗 */
    letter-spacing: 0.5px; /* 稍微增加字母间距，看起来更自然 */
}

.signature-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.signature-date {
    font-size: 14px;
    color: #888;
}

/* 行动按钮区域 */
.founder-actions {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 0; /* 初始透明 */
    transform: translateY(30px); /* 初始位置下移 */
    transition: opacity 0.8s ease, transform 0.8s ease; /* 平滑过渡效果 */
}

/* 行动按钮区域激活状态 */
.founder-actions.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 响应式设计优化 - 移动端垂直布局 */
@media (max-width: 992px) {
    .founder-actions {
        grid-template-columns: 1fr; /* 改为单列布局 */
        gap: 20px;
        margin-bottom: 60px;
        max-width: 500px; /* 限制最大宽度，避免按钮过宽 */
    }
    
    .action-card {
        text-align: center;
        padding: 30px; /* 移动端稍小内边距 */
        width: 100%; /* 确保卡片占满容器宽度 */
    }
    
    .btn-brand {
        align-self: center;
        width: 80%; /* 移动端按钮宽度80%，留出边距 */
        max-width: 250px; /* 最大宽度限制 */
        margin: 0 auto; /* 居中 */
    }
}

/* 小屏幕手机优化 */
@media (max-width: 576px) {
    .founder-actions {
        max-width: 100%; /* 小屏幕使用全宽 */
        padding: 0 15px; /* 减少左右内边距 */
        gap: 15px; /* 减少卡片间距 */
    }
    
    .action-card {
        padding: 25px 20px; /* 进一步减少内边距 */
    }
    
    .btn-brand {
        width: 90%; /* 小屏幕按钮更宽 */
        max-width: 280px;
        padding: 12px 20px; /* 调整按钮内边距 */
        font-size: 14px; /* 调整字体大小 */
    }
    
    .action-card h3 {
        font-size: 18px; /* 标题字体稍小 */
        margin-bottom: 12px;
    }
    
    .action-card p {
        font-size: 15px; /* 描述文字稍小 */
        margin-bottom: 20px;
    }
}

/* 超小屏幕手机优化 */
@media (max-width: 420px) {
    .founder-actions {
        gap: 12px;
    }
    
    .action-card {
        padding: 20px 15px;
    }
    
    .btn-brand {
        width: 95%;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .action-card h3 {
        font-size: 17px;
    }
    
    .action-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* 愿景列表样式 */
.vision-list {
    margin: 30px 0 40px;
    padding-left: 0;
    list-style-type: none;
}

.vision-list li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
    line-height: 1.7;
    color: #444;
}

.list-marker {
    position: absolute;
    left: 0;
    color: #DB0058; /* 使用品牌玫红色 */
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    top: 2px;
}

/* 调整列表项的间距和字体 */
.vision-list li {
    font-size: 17px;
    margin-bottom: 22px;
}

/* 移动端调整 */
@media (max-width: 768px) {
    .vision-list li {
        padding-left: 25px;
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .list-marker {
        font-size: 22px;
        top: 1px;
    }
}

/* TRCS模型高亮样式 - 与导航栏一致 */
.trcs-highlight {
    position: relative;
    font-weight: 600;
    color: #DB0058; /* 玫红色文字 */
}

/* 品牌按钮样式 - 优化英文版 */
.btn-brand {
    display: inline-block;
    padding: 14px 24px; /* 左右内边距减小，适应英文宽度 */
    background-color: #DB0058; /* 玫红色 */
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px; /* 字体稍小，适应英文长度 */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    white-space: nowrap; /* 防止按钮文字换行 */
    align-self: flex-start; /* 按钮左对齐，与文字对齐 */
    width: auto; /* 宽度自适应内容 */
    position: relative;
    overflow: hidden; /* 确保扫光效果在按钮边界内 */
    z-index: 1;
}

/* 扫光效果的伪元素 */
.btn-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.7s ease;
    z-index: -1;
}

/* 悬停状态 - 按钮颜色加深和扫光效果 */
.btn-brand:hover {
    background-color: #c4004a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 0, 88, 0.3);
}

/* 悬停时触发扫光动画 */
.btn-brand:hover::before {
    left: 100%;
}

/* 点击状态 - 按钮按下效果 */
.btn-brand:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(219, 0, 88, 0.3);
}

/* 移动端调整 */
@media (max-width: 992px) {
    .btn-brand {
        align-self: center; /* 移动端按钮居中 */
    }
    
    /* 移动端悬停效果简化 */
    .btn-brand:hover {
        transform: translateY(-1px);
    }
}

/* 响应式尺寸调整 */
@media (max-width: 672px) {
    .btn-brand {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 160px;
    }
}

@media (max-width: 420px) {
    .btn-brand {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 140px;
    }
}

/* 左侧肖像区域 - 添加sticky效果 */
.founder-portrait {
    flex: 0 0 33%;
    text-align: center;
    position: sticky;
    top: 120px; /* 距离顶部的距离，可根据需要调整 */
    align-self: flex-start; /* 确保元素顶部对齐 */
    height: fit-content; /* 高度适应内容 */
    transition: all 0.3s ease; /* 平滑过渡效果 */
}

/* 响应式设计 - 移动端移除sticky效果 */
@media (max-width: 992px) {
    .founder-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
        min-height: auto; /* 移动端移除最小高度 */
    }
    
    .founder-portrait {
        flex: 0 0 auto;
        position: static; /* 移动端恢复静态定位 */
        top: auto;
        width: 100%; /* 确保占据整行 */
        max-width: 400px; /* 限制最大宽度 */
        margin: 0 auto; /* 居中显示 */
    }
    
    .portrait-image {
        max-width: 300px; /* 移动端图片稍小 */
    }
    
    .founder-letter {
        flex: 0 0 auto;
        padding: 40px;
    }
    
    .founder-actions {
        grid-template-columns: 1fr; /* 改为单列布局 */
        gap: 20px;
        margin-bottom: 60px;
        max-width: 500px; /* 限制最大宽度，避免按钮过宽 */
    }
}

/* 右侧信件区域 - 优化信纸样式 */
.founder-letter {
    flex: 0 0 67%;
    background: #fefefe;
    padding: 70px 80px;
    border-radius: 4px;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 2px 10px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid #f0f0f0;
    position: relative;
    /* 信纸背景效果 - 更微妙的横线 */
    background-image: 
        linear-gradient(to bottom, transparent 95%, rgba(0,0,0,0.03) 95%),
        linear-gradient(to right, #f9f9f9 1px, transparent 1px);
    background-size: 100% 30px, 10px 100%;
    background-position: 0 20px, 0 0;
    overflow: hidden;
}

/* 信纸装饰元素 */
.founder-letter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #DB0058 0%, #9B1B5A 50%, #DB0058 100%);
    opacity: 0.8;
}

.founder-letter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* 信纸角落装饰 */
.founder-letter .corner-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.05;
}

.founder-letter .corner-1 {
    top: 15px;
    left: 15px;
    border-top: 1px solid #DB0058;
    border-left: 1px solid #DB0058;
}

.founder-letter .corner-2 {
    top: 15px;
    right: 15px;
    border-top: 1px solid #DB0058;
    border-right: 1px solid #DB0058;
}

.founder-letter .corner-3 {
    bottom: 15px;
    left: 15px;
    border-bottom: 1px solid #DB0058;
    border-left: 1px solid #DB0058;
}

.founder-letter .corner-4 {
    bottom: 15px;
    right: 15px;
    border-bottom: 1px solid #DB0058;
    border-right: 1px solid #DB0058;
}

/* 信件正文样式 */
.letter-content {
    font-size: 17.6px;
    line-height: 1.8;
    color: #333;
    position: relative;
    z-index: 1;
}

.letter-content p {
    margin-bottom: 24px;
    text-align: justify;
}

.letter-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 32px 0 16px;
    font-weight: 600;
}

.letter-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.letter-content li {
    margin-bottom: 12px;
}

/* 移动端调整信纸样式 */
@media (max-width: 992px) {
    .founder-letter {
        padding: 40px 30px;
        background-size: 100% 28px, 10px 100%;
        background-position: 0 15px, 0 0;
    }
}

@media (max-width: 672px) {
    .founder-letter {
        padding: 30px 20px;
        background-size: 100% 26px, 10px 100%;
        background-position: 0 10px, 0 0;
    }
    
    .letter-content {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .founder-letter {
        padding: 25px 15px;
        background-size: 100% 24px, 10px 100%;
    }
    
    .letter-content {
        font-size: 15px;
    }
}

/* 右侧信件区域 - 优化信纸样式 */
.founder-letter {
    flex: 0 0 67%;
    background: #fefefe;
    padding: 70px 80px;
    border-radius: 4px;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 2px 10px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid #f0f0f0;
    position: relative;
    /* 信纸背景效果 - 更微妙的横线 */
    background-image: 
        linear-gradient(to bottom, transparent 95%, rgba(0,0,0,0.03) 95%),
        linear-gradient(to right, #f9f9f9 1px, transparent 1px);
    background-size: 100% 30px, 10px 100%;
    background-position: 0 20px, 0 0;
    overflow: hidden;
}

/* 信纸装饰元素 */
.founder-letter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #DB0058 0%, #9B1B5A 50%, #DB0058 100%);
    opacity: 0.8;
}

.founder-letter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* 信纸角落装饰 */
.founder-letter .corner-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.05;
}

.founder-letter .corner-1 {
    top: 15px;
    left: 15px;
    border-top: 1px solid #DB0058;
    border-left: 1px solid #DB0058;
}

.founder-letter .corner-2 {
    top: 15px;
    right: 15px;
    border-top: 1px solid #DB0058;
    border-right: 1px solid #DB0058;
}

.founder-letter .corner-3 {
    bottom: 15px;
    left: 15px;
    border-bottom: 1px solid #DB0058;
    border-left: 1px solid #DB0058;
}

.founder-letter .corner-4 {
    bottom: 15px;
    right: 15px;
    border-bottom: 1px solid #DB0058;
    border-right: 1px solid #DB0058;
}

/* 信件正文样式 */
.letter-content {
    font-size: 17.6px;
    line-height: 1.8;
    color: #333;
    position: relative;
    z-index: 1;
}

.letter-content p {
    margin-bottom: 24px;
    text-align: justify;
}

.letter-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 32px 0 16px;
    font-weight: 600;
}

.letter-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.letter-content li {
    margin-bottom: 12px;
}

/* 移动端调整信纸样式 */
@media (max-width: 992px) {
    .founder-letter {
        padding: 40px 30px;
        background-size: 100% 28px, 10px 100%;
        background-position: 0 15px, 0 0;
    }
}

@media (max-width: 672px) {
    .founder-letter {
        padding: 30px 20px;
        background-size: 100% 26px, 10px 100%;
        background-position: 0 10px, 0 0;
    }
    
    .letter-content {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .founder-letter {
        padding: 25px 15px;
        background-size: 100% 24px, 10px 100%;
    }
    
    .letter-content {
        font-size: 15px;
    }
}

/* 品牌按钮样式 - 优化英文版 */
.btn-brand {
    display: inline-block;
    padding: 14px 24px; /* 左右内边距减小，适应英文宽度 */
    background-color: #DB0058; /* 玫红色 */
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px; /* 字体稍小，适应英文长度 */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    white-space: nowrap; /* 防止按钮文字换行 */
    align-self: flex-start; /* 按钮左对齐，与文字对齐 */
    width: auto; /* 宽度自适应内容 */
    position: relative;
    overflow: hidden; /* 确保扫光效果在按钮边界内 */
    z-index: 1;
    /* 添加边框确保悬停时有视觉变化但不改变背景色 */
    border: 2px solid transparent;
}

/* 扫光效果的伪元素 */
.btn-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.7s ease;
    z-index: -1;
}

/* 悬停状态 - 保留扫光效果但不改变背景色 */
.btn-brand:hover {
    /* 背景色保持不变 */
    background-color: #DB0058;
    /* 添加边框效果作为视觉反馈 */
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 0, 88, 0.4);
}

/* 悬停时触发扫光动画 */
.btn-brand:hover::before {
    left: 100%;
}

/* 点击状态 - 按钮按下效果 */
.btn-brand:active {
    /* 背景色保持不变 */
    background-color: #DB0058;
    transform: translateY(0);
    box-shadow: 0 3px 15px rgba(219, 0, 88, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* 移动端调整 */
@media (max-width: 992px) {
    .btn-brand {
        align-self: center; /* 移动端按钮居中 */
    }
    
    /* 移动端悬停效果简化 */
    .btn-brand:hover {
        transform: translateY(-1px);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .btn-brand:active {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
}

/* 响应式尺寸调整 */
@media (max-width: 672px) {
    .btn-brand {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 160px;
    }
}

@media (max-width: 420px) {
    .btn-brand {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 140px;
    }
}

/* 品牌按钮样式 - 优化英文版 */
.btn-brand {
    display: inline-block;
    padding: 14px 24px; /* 左右内边距减小，适应英文宽度 */
    background-color: #DB0058; /* 玫红色 */
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px; /* 字体稍小，适应英文长度 */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    white-space: nowrap; /* 防止按钮文字换行 */
    align-self: flex-start; /* 按钮左对齐，与文字对齐 */
    width: auto; /* 宽度自适应内容 */
    position: relative;
    overflow: hidden; /* 确保扫光效果在按钮边界内 */
    z-index: 1;
    /* 添加边框确保悬停时有视觉变化但不改变背景色 */
    border: 2px solid transparent;
    /* 添加玫红色阴影增强立体感 */
    box-shadow: 0 4px 15px rgba(219, 0, 88, 0.25);
}

/* 扫光效果的伪元素 */
.btn-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.7s ease;
    z-index: -1;
}

/* 悬停状态 - 保留扫光效果但不改变背景色 */
.btn-brand:hover {
    /* 背景色保持不变 */
    background-color: #DB0058;
    /* 添加边框效果作为视觉反馈 */
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    /* 加深和扩大阴影 */
    box-shadow: 0 6px 25px rgba(219, 0, 88, 0.4);
}

/* 悬停时触发扫光动画 */
.btn-brand:hover::before {
    left: 100%;
}

/* 点击状态 - 按钮按下效果 */
.btn-brand:active {
    /* 背景色保持不变 */
    background-color: #DB0058;
    transform: translateY(0);
    /* 点击时缩小阴影 */
    box-shadow: 0 2px 10px rgba(219, 0, 88, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* 移动端调整 */
@media (max-width: 992px) {
    .btn-brand {
        align-self: center; /* 移动端按钮居中 */
    }
    
    /* 移动端悬停效果简化 */
    .btn-brand:hover {
        transform: translateY(-1px);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .btn-brand:active {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
}

/* 响应式尺寸调整 */
@media (max-width: 672px) {
    .btn-brand {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 160px;
    }
}

@media (max-width: 420px) {
    .btn-brand {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 140px;
    }
}

/* 品牌按钮样式 - 优化英文版 */
.btn-brand {
    display: inline-block;
    padding: 14px 24px; /* 左右内边距减小，适应英文宽度 */
    background-color: #DB0058; /* 玫红色 */
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px; /* 字体稍小，适应英文长度 */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    white-space: nowrap; /* 防止按钮文字换行 */
    align-self: flex-start; /* 按钮左对齐，与文字对齐 */
    width: auto; /* 宽度自适应内容 */
    position: relative;
    overflow: hidden; /* 确保扫光效果在按钮边界内 */
    z-index: 1;
    /* 添加边框确保悬停时有视觉变化但不改变背景色 */
    border: 2px solid transparent;
    /* 增强玫红色阴影，提升立体感 - 增加模糊半径和透明度 */
    box-shadow: 0 5px 20px rgba(219, 0, 88, 0.35);
}

/* 悬停状态 - 保留扫光效果但不改变背景色 */
.btn-brand:hover {
    /* 背景色保持不变 */
    background-color: #DB0058;
    /* 添加边框效果作为视觉反馈 */
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    /* 加深和扩大阴影，提升立体感 */
    box-shadow: 0 8px 30px rgba(219, 0, 88, 0.5);
}

/* 点击状态 - 按钮按下效果 */
.btn-brand:active {
    /* 背景色保持不变 */
    background-color: #DB0058;
    transform: translateY(0);
    /* 点击时阴影更集中但保持明显 */
    box-shadow: 0 3px 15px rgba(219, 0, 88, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

