/* 纯净的协议文档样式 - 无背景色、无边框 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    background: #fff;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* 标题样式 */
h1 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 30px 0 20px;
    padding-bottom: 15px;
}

h2 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 30px 0 15px;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px;
}

h4 {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin: 15px 0 8px;
}

/* 段落样式 */
p {
    margin: 10px 0;
    text-align: justify;
}

/* 列表样式 */
ul,
ol {
    margin: 10px 0;
    padding-left: 30px;
}

li {
    margin: 5px 0;
}

/* 强调文本 */
strong {
    font-weight: 600;
    color: #000;
}

/* 重要提示 */
.important {
    padding: 12px 0;
    margin: 15px 0;
}

/* 警告区块 */
.warning {
    padding: 12px 0;
    margin: 15px 0;
}

/* 信息区块 */
.info {
    padding: 12px 0;
    margin: 15px 0;
}

/* 元数据 */
.meta {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: 10px 0 30px;
    padding: 10px 0;
}

.meta span {
    display: inline-block;
    margin: 0 15px;
}

/* 联系信息 */
.contact-info {
    padding: 15px 0;
    margin: 15px 0;
}

.contact-info p {
    margin: 8px 0;
}

/* 链接样式 */
a {
    color: #1976d2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

th,
td {
    padding: 10px;
    text-align: left;
}

th {
    font-weight: 600;
}

/* 页脚 */
.footer {
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.back-to-top:hover {
    background: #000;
}

.back-to-top.show {
    display: flex;
}

/* 打印样式 */
@media print {
    body {
        padding: 0;
        max-width: none;
    }

    .back-to-top {
        display: none !important;
    }

    h1 {
        page-break-after: avoid;
    }

    h2,
    h3,
    h4 {
        page-break-after: avoid;
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    body {
        padding: 15px;
        font-size: 14px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 16px;
    }

    h3 {
        font-size: 15px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}