.registrations_agree {
    max-width: 1080px;
    margin: 0 auto;
    padding: 8px 15px;
}

.registrations_agree h1 {
    margin-bottom: 20px;
    font-size: 20px!important;
}

.registrations_agree h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 18px 0;
}

.registrations_agree p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 1em;
}

.registrations_personal_agree p.brief-description {
    font-weight: bolder;
}

.registrations_agree ol {
    margin-left: 20px;
}

.registrations_agree ol li {
    list-style: decimal;
    background-image: none;
}

.registrations_agree ol li p {
    margin-bottom: 0;
}

.registrations_agree ol.sub-ol {
    list-style: none; /* 移除默认的序号样式 */
    counter-reset: list; /* 创建一个计数器 */
    margin-left: 0;
}

.registrations_agree ol.sub-ol li {
    counter-increment: list; /* 每个 li 元素递增计数器 */
    position: relative;
    padding-left: 2em; /* 留出空间来显示括号 */
    list-style: none;
    background-image: none;
}

.registrations_agree ol.sub-ol li::before {
    content: "(" counter(list) ")"; /* 生成括号和序号 */
    position: absolute;
    left: 0;
}
