/* 整体页面背景色及字体设置 */
body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* 更新记录容器样式 */
.update-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* 标题样式 */
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* 更新记录列表样式 */
.update-log {
    list-style-type: none;
    padding: 0;
}

.update-log li {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.update-log li:last-child {
    border-bottom: none;
}

.update-log li strong {
    color: #009688;
    font-weight: bold;
    margin-right: 10px;
}

.update-log li ul {
    padding-left: 20px;
}

.update-log li ul li {
    list-style-type: circle;
    margin-bottom: 5px;
}

.update-log li p {
    color: #666;
    line-height: 1.5;
    margin-top: 5px;
}