header {
    position: relative;
    height: 340px;
    line-height: 340px;
    background-color: rgba(34, 110, 147, 1);
    background-image: url("../images/bg-img.png");
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 85px;
    color: #fff;
    text-align: center;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background-color: rgb(33, 33, 33);
    }

}

p,
ul,
li {
    color: rgba(33, 33, 33, 1);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6667;
    margin-top: 24px;
}

ul,
li {
    color: rgba(33, 33, 33, 1);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6667;
    margin-top: 10px;
}

.terms-context-container,
.policy-context-container {
    padding: 24px 0;
}

/* 移动端适配 */
@media (max-width: 768px) {
    header {
        height: 200px;
        line-height: 200px;
        font-size: 36px;
        padding: 0 16px;
        background-position: center;
    }

    .pc-max-width {
        padding-left: 16px;
        padding-right: 16px;
    }

    p,
    ul,
    li {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 16px;
        word-wrap: break-word;
        word-break: break-word;
    }

    .terms-context-container,
    .policy-context-container {
        padding: 16px;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }

    /* 表格容器自动横向滚动 */
    .terms-context-container table,
    .policy-context-container table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}