
.container {
    margin-top: 150px;
    margin-bottom: 88px;
    text-align: justify;
    width: 90%;
    max-width: 800px;
    background: white;
    padding: 10%;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.disclaimer {
    line-height: 3.5;
}
h1, h2 {
    font-size: 13px;
    color: #333;

}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    text-align: justify;
}

ul {
    list-style-type: none; /* 移除默认的项目符号 */
    padding-left: 0; /* 移除列表的内边距 */
    margin-left: 0; /* 移除列表的外边距 */
    counter-reset: list-counter; /* 初始化计数器 */
}

li {
    counter-increment: list-counter; /* 递增计数器 */
    padding-left: 2em; /* 为序号和文本留出空间 */
    position: relative;
    font-size: 12px;
}

li::before {
    content: counter(list-counter) "."; /* 显示计数器值 */
    position: absolute;
    left: 0; /* 序号位置 */
}

.important {
    color: #1a1a1a;
    font-weight: bold;
}

p {
    font-size: 13px;
}

.container a {
    color: inherit; /* 使用父元素的颜色 */
    text-decoration: none; /* 去掉下划线 */
}

.container a:hover {
    color: #007BFF; /* 可选：为悬停状态设置颜色 */
    text-decoration: underline; /* 可选：悬停时添加下划线 */
}
