body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #333333; /* 可选，设置背景颜色 */
    padding: 1rem;
}
img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 1rem;
}

/* 让按钮看起来更现代 */
#download-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgb(121, 189, 154); /* 绿色背景 */
    color: white; /* 白色文字 */
    border: none; /* 去掉边框 */
    padding: 0.6rem 1.2rem; /* 上下内边距 12px，左右内边距 24px */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 去掉下划线 */
    display: inline-block; /* 让按钮不占满全宽 */
    font-size: 0.6rem; /* 设置字体大小 */
    border-radius: 2rem 0 2rem 0; /* 圆角效果 */
    cursor: pointer; /* 鼠标悬停时变为手型 */
    transition: background-color 0.3s ease, transform 0.2s ease; /* 添加过渡效果 */
}

#download-btn:hover {
    background-color: rgb(104, 187, 144); /* 鼠标悬停时改变背景色 */
    transform: translateY(-2px); /* 鼠标悬停时按钮轻微上移 */
    box-shadow: rgba(255, 255, 255, 0.3) 0px 4px 8px 0px;
}

#download-btn:active {
    transform: translateY(2px); /* 按钮按下时下移 */
}
