body {
    background: url(1.jpg) no-repeat center center; /* 背景图片 */
    background-size: cover; /* 覆盖整个背景 */
    background-attachment: fixed; /* 固定背景位置 */
    background-color: #CCCCCC; /* 背景颜色备用 */
    font-family: Arial, sans-serif; /* 字体系列 */
    text-align: center; /* 文本居中对齐 */
}
form {
    display: inline-block; /* 将表单显示为内联块 */
}
.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0; /* 移除不必要的外边距 */
    text-align: center;
}

.download-button:hover {
    background-color: #45a049;
}

.jp-playlist ul {
    list-style: none;
    padding: 0;
}

.jp-playlist ul li {
    display: flex;
    justify-content: flex-start; /* 使用Flexbox，使内容左对齐 */
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #ccc; /* 添加底部边框 */
}

.jp-playlist ul li .song-title {
    flex: 1;
    padding-right: 10px; /* 添加右填充，使按钮和标题间距适当 */
}

.jp-playlist ul li a.download-button {
    min-width: 60px; /* 设置按钮的最小宽度 */
    margin-left: auto; /* 确保按钮位于右侧 */
}

