/* 云心声法律文档共享样式 - 简洁版 */

/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background: #fff;
    font-size: 14px;
}

/* 主容器 */
.legal-page {
    background: #fff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}

/* 页面标题 */
.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.update-date {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* 简介区域 */
.intro {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.intro p {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* 目录样式 */
.toc {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.toc h2 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #1a73e8;
}

.toc ol {
    margin-left: 15px;
}

.toc li {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.toc a {
    color: #1a73e8;
    text-decoration: none;
}

.toc a:hover {
    color: #1557b0;
    text-decoration: underline;
}

/* 章节样式 */
.section-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-item h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    padding-bottom: 8px;
    border-bottom: 2px solid #1a73e8;
}

.section-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 12px 0 8px;
    color: #333;
}

.section-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.section-item ul {
    margin: 8px 0;
    padding-left: 20px;
}

.section-item li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* 联系信息框 */
.contact-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 12px 0;
}

.contact-info p {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* 返回链接 */
.back-link {
    display: inline-block;
    margin-bottom: 15px;
    color: #1a73e8;
    text-decoration: none;
    font-size: 0.85rem;
}

.back-link:hover {
    color: #1557b0;
    text-decoration: underline;
}

.back-link::before {
    content: "← ";
}

/* 响应式设计 */
@media (max-width: 768px) {
    .legal-content {
        margin: 10px;
        padding: 15px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-item h2 {
        font-size: 1.1rem;
    }

    .section-item h3 {
        font-size: 0.95rem;
    }

    .toc {
        padding: 12px;
    }

    .toc h2 {
        font-size: 0.95rem;
    }

    .intro {
        padding: 10px;
    }

    .contact-info {
        padding: 12px;
    }
}