.content-area {
    display: flex;
    width: 100%; /* 确保容器宽度正确 */
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden; /* 隐藏超出容器的内容 */
    position: relative; /* 添加定位上下文，以便分页器可以绝对定位 */
    color: rgba(255, 255, 255, 0.9); /* 标题颜色 */
}

.block-container {
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
    padding: 20px; /* 内边距 */
    border-radius: 5px; /* 圆角 */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); !* 阴影效果 *!*/
}

.title {
    margin-bottom: 15px;
}

.issue-date {
    margin-bottom: 20px;
}

.content {
    text-align: left;
    text-indent: 30px;
    line-height: 28px;
}

.content li {
    display: flex;
    justify-content: space-between;
    padding: 3px;
    color: rgba(255, 255, 255, 0.9);
}

.content a {
    color: rgba(255, 255, 255, 0.9);
}

.content a:hover {
    color: orange;
}

.content .first-span:before {
    content: "·";
    display: inline-block;
    margin-right: 10px; /* 你可以根据需要调整这个值来设置点和文本之间的间距 */
}
