/* 内容页样式：保留首页视觉语言，支持滚动阅读 */

body.content-page {
    display: block;
    height: auto;
    min-height: 100vh;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.content-page .title a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.content-page .title img {
    float: none;
}

.content-page .title p {
    float: none;
}

.content-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 88px 24px 120px;
    color: #1a1a1a;
    line-height: 1.75;
}

.content-wrap h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 12px;
}

.content-wrap .lead {
    color: #00000083;
    font-size: 16px;
    margin-bottom: 32px;
}

.content-wrap h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 36px 0 12px;
}

.content-wrap h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 8px;
}

.content-wrap p,
.content-wrap li {
    font-size: 15px;
    color: #333;
}

.content-wrap ul,
.content-wrap ol {
    padding-left: 1.25em;
    margin: 8px 0 16px;
}

.content-wrap li {
    margin-bottom: 6px;
}

.content-wrap a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cta-box {
    margin: 40px 0 24px;
    padding: 24px;
    border: 2px solid #000;
    border-radius: 16px;
    text-align: center;
}

.cta-box p {
    margin-bottom: 16px;
    color: #00000083;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

.cta-button:hover {
    background: #222;
}

.answer-groups {
    display: grid;
    gap: 20px;
}

.answer-group h3 {
    margin-bottom: 10px;
}

.answer-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.answer-chip {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.site-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid #eee;
    backdrop-filter: blur(8px);
    z-index: 50;
}

.site-nav a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
    color: #111;
    text-decoration: underline;
}

.meta-line {
    font-size: 13px;
    color: #999;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .content-wrap {
        padding: 72px 16px 110px;
    }

    .content-wrap h1 {
        font-size: 24px;
    }
}
