.terms__container {
    width: 100%;
    padding: 0.2rem;

    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.terms__item {
    padding: 0.44rem 0.24rem 0.38rem;
    background-color: #fff;
    border-radius: 0.1rem;

    font-weight: 400;
    font-size: 0.24rem;
    color: #1E1F20;
}

.terms__title {
    font-weight: bold;
    font-size: 0.3rem;
    color: #1472FF;
}

.terms__item ul {
    margin-top: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.24rem;
}

/* PC 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .terms__container {
        width: 13rem;
        margin: 0 auto;
        padding: 0.4rem 0 0;
    }

    .terms__item {
        border-radius: 0.16rem;
        padding: 0.36rem 0.24rem 0.5rem;
        font-size: 0.16rem;
    }

    .terms__title {
        font-size: 0.24rem;
    }

    .terms__item ul {
        margin-top: 0.3rem;
        gap: 0.12rem;
    }
}