.privacy__container {
    width: 100%;
}

.privacy__header {
    width: 100%;
    height: 0.49rem;
    background: #1472FF;
    border-radius: 0.01rem;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    font-size: 0.24rem;
    color: #FFFFFF;
}

.privacy__content {
    /* margin: 0.5rem 0.26rem; */
    padding: 0.5rem 0.26rem;

    font-weight: 400;
    font-size: 0.24rem;
    color: #1E1F20;
}

.privacy__content p {
    margin: 0.12rem 0;
    line-height: 0.34rem;
}

.privacy__content .title {
    margin: 0.26rem 0;
}

.privacy__content ul {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

/* PC 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .privacy__container {
        width: 13.6rem;
        margin: 0.5rem auto 0;
        background-color: #FFFFFF;
    }

    .privacy__content {
        font-size: 0.16rem;
        color: #1E1F20;

        padding: 0.45rem 0.2rem;

    }
}