body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 10px 0;
}

.logo-container {
    margin-bottom: 10px;
}

.logo-container img {
    max-width: 150px; /* 调整 Logo 大小 */
    height: auto;
}

main {
    padding: 20px;
}

#version-history h2 {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.version-list {
    display: flex; /* 使用 Flexbox 布局 */
    flex-direction: column;
    gap: 10px;
}

.version-item {
    display: flex;
    justify-content: space-between; /* 版本号和按钮左右对齐 */
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
}

/* 版本号链接颜色 */
.version-number {
    text-decoration: none;
    color: #3498db; /* 默认蓝色 */
}

/* 版本号链接hover颜色 */
.version-number:hover {
    color: #2980b9; /* hover 深蓝色 */
}

/* 下载按钮颜色 */
.download-button {
    background-color: #27ae60;
    color: white; /* 按钮文字颜色 */
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none; /* 去除下划线 */
    transition: background-color 0.3s ease; /* 添加过渡效果 */
}

/* 下载按钮 hover 效果 */
.download-button:hover {
    background-color: #219653;
}

footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed; /* 固定在底部 */
    bottom: 0;
    width: 100%;
}
