* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: #f4f8fd;
}

body {
    max-width: 1120px;
    margin: 0 auto;
    padding: 42px 48px 72px;
    color: #4a5565;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

body::before {
    content: "减乎后台管理系统";
    display: block;
    padding-bottom: 25px;
    color: #ff8a18;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    border-bottom: 1px solid #edf0f4;
}

body > p {
    margin: 0 0 16px;
}

body > p:first-of-type {
    margin: 38px 0 8px;
    color: #252b35;
    text-align: center;
}

body > p:first-of-type strong {
    color: #ff8a18;
    font-size: 30px;
    line-height: 1.35;
}

body > p:nth-of-type(2) {
    margin-bottom: 35px;
    color: #9aa3b0;
    font-size: 13px;
    text-align: center;
}

body > p strong {
    color: #343c48;
    font-weight: 700;
}

body > p:nth-of-type(2) strong {
    color: inherit;
}

a {
    color: #ef891e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 100% !important;
    margin: 24px 0 30px;
    border-collapse: collapse;
    table-layout: fixed;
    color: #566170;
    background: #fff;
    font-size: 13px;
    line-height: 1.65;
}

/* 宽表格保留内容所需宽度，外层容器横向滑动查看，避免列被压窄截断 */
.table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.table-scroll > table {
    width: auto !important;
    min-width: 100%;
    table-layout: auto !important;
}

th,
td {
    padding: 12px 10px;
    border: 1px solid #dfe6ee;
    vertical-align: top;
    overflow-wrap: anywhere;
    word-break: break-word;
}

th {
    color: #694a2c;
    background: #fff5e8;
    font-weight: 700;
}

@media (max-width: 720px) {
    body {
        padding: 24px 18px 48px;
        font-size: 14px;
        line-height: 1.8;
    }

    body::before {
        padding-bottom: 18px;
    }

    body > p:first-of-type {
        margin-top: 28px;
    }

    body > p:first-of-type strong {
        font-size: 23px;
    }

    .table-scroll > table th,
    .table-scroll > table td {
        min-width: 110px;
    }
}
