@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;
}

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

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

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

    .manualEntry {
        font-size: 16px;
    }
}
