.terms-section{
    margin-top: 5.72rem;
    padding: 2.86rem 0;
}

.terms-section .box{
    width: 100%;
}

.terms-section .box .title{
    font-size: 3.42rem;
}

.terms-section .box .line,
.terms-section .box .line-ul-box li{
    margin-top: 2.14rem;
    font-size: 1.28rem;
    line-height: 2.14rem;
}

.terms-section .box .line-ul-box{
    width: 100%;
    position: relative;
    padding-left: 1.42rem;
}

.terms-section .box .line-ul-box li{
    padding-left: .72rem; /* 调整文本与圆点的间距 */
    position: relative;
}

.terms-section .box .line-ul-box li:before{
    content: ""; /* 必须指定内容为空 */
    display: block;
    position: absolute;
    top: 10px; /* 调整圆点的垂直位置 */
    left: 0;
    width: 5px; /* 圆点的直径 */
    height: 5px; /* 圆点的直径 */
    border-radius: 50%;
    background-color: #000; /* 设置实心圆点的颜色 */
}

@media screen and (max-width: 768px){
    .terms-section .box .title{
        font-size: 26px;
        margin-top: 72px;
    }

    .terms-section .box .line, .terms-section .box .line-ul-box li{
        margin-top: 20px;
        font-size: 14px;
        line-height: 20px;
        padding-left: 8px;
    }

    .terms-section .box .line-ul-box li::before{
        top: 8px;
    }
}