.content-container {
	height: 980px;
    text-align: center;
    position: relative;
    z-index: 1; /* 确保内容在背景之上 */
}

.background-container {
    width: 100%;
    padding-bottom: 20%; /* 保持宽高比，根据实际背景图片调整 */
    position: relative;
    background-image: url('../img/background/sky.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%; /* 根据需要调整 */
    height: 50%;
}

.download-text {
    margin-top: 20px;
    font-size: 24px;
    color: #333;
}

.platform-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.platform-link {
    padding: 20px 40px;
    background-color: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
	float: left;
    transition: all 0.5s ease;
}

.platform-link:hover {
	transform: translate(-5px,-5px);
    background-color: #007bff;
	box-shadow: 10px 10px rgba(0, 0, 0, 0.2);
    color: white;
}
.icon{
	width: 50px;
	height: 50px;
}
.platform-link-container {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 10px;
    border-radius: 5px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content p {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
}

.platform-link-container:hover .dropdown-content {
    display: block;
}
.update-log {
    margin-top: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.update-log h2 {
    text-align: center;
    margin-bottom: 20px;
}
.botm{
	
	z-index: 1;
}
#log-content {
    white-space: pre-wrap; /* 保留换行和空格 */
    font-family: monospace; /* 使用等宽字体显示日志 */
    max-height: auto; /* 设置最大高度 */
    padding: 10px;
    border: 1px solid #ddd; /* 添加边框 */
    border-radius: 5px; /* 添加圆角 */
    background-color: #fff; /* 背景颜色 */
}
