@charset "utf-8";
/* 用户隐私保护协议（无 Bootstrap 依赖） */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    background: #f2f4f3;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
        "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

/* ===== 页头 ===== */
.title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 32px 16px 6px;
}

.subtitle {
    text-align: center;
    font-size: 13px;
    color: #8a8a8a;
    margin: 3px 16px;
}

.subtitle a {
    color: #00a14c;
    text-decoration: none;
}

/* ===== 正文卡片 ===== */
.agreement {
    max-width: 800px;
    margin: 20px auto 48px;
    padding: 32px 32px 48px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.agreement p {
    margin: 0 0 16px;
    text-align: justify;
}

.agreement a {
    color: #00a14c;
    text-decoration: none;
}

.agreement ul {
    margin: 8px 0 20px;
    padding-left: 1.6em;
}

.agreement li {
    margin-bottom: 10px;
}

/* ===== 章节标题 ===== */
.protocol-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 34px 0 10px;
    padding: 2px 0 2px 12px;
    border-left: 4px solid #00C157;
}

.protocol-section-subtitle {
    color: #555;
    margin: 8px 0 12px;
}

/* ===== 敏感信息 ===== */
.sensitive-info {
    font-weight: 700;
    color: #c7254e;
}

/* ===== 第三方共享个人信息清单表格 ===== */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0 20px;
    border: 1px solid #e6ebe7;
    border-radius: 8px;
}

.info-table {
    width: 100%;
    min-width: 660px;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.6;
}

.info-table th,
.info-table td {
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.info-table th {
    background: #effaf3;
    color: #0a8a4a;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid #bfe8cd;
}

.info-table td {
    border-top: 1px solid #eef1ef;
}

.info-table tbody tr:nth-child(even) td {
    background: #fafbfa;
}

/* ===== 小屏适配 ===== */
@media (max-width: 480px) {
    .title {
        font-size: 19px;
        margin-top: 24px;
    }

    .agreement {
        margin: 12px 12px 32px;
        padding: 22px 20px 34px;
        border-radius: 10px;
    }

    .protocol-section-title {
        font-size: 16px;
    }

    /* 表格滚动贴卡片边缘 */
    .table-wrap {
        margin: 16px -20px 20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}
