body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.big {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 20px;
    padding-bottom: 60px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    padding: 1em 0;
    background-color: #005A99;
    color: white;
    margin-bottom: 20px;
    border-radius: 5px;
}
header h1 {
    font-weight: 500;
}

.menu {
    text-align: center;
    margin-bottom: 20px;
    background:#e0e0e0;
    padding: 10px 0;
    border-radius: 5px;
}

.menu a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #005A99;
    border-radius: 5px;
    margin: 0 10px;
    font-weight: 900;
}

.menu a:hover {
    background-color: #0056b3;
    color:#fff;
}

.notice {
    background-color: #e0e0e0;
    padding: 10px;
    margin-bottom: 20px;
    border-left: 5px solid #bbb;
}

.container {
    overflow: hidden;
    margin-bottom: 25px;
}

.section {
    margin-bottom: 20px;
}

h2 {
    color: #005A99;
}

/* 链接列表样式 */
.links-list {
    list-style-type: none; 
    padding: 0;
}

.links-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.links-list li:last-child {
    border-bottom: none; /* 移除最后一项的分隔线 */
    padding-bottom: 0;
}
.links-list li a {
    color: #007bff; /* 修改链接颜色 */
    text-decoration: none;
    transition: color 0.3s ease-in-out; /* 添加颜色过渡效果 */
}

.links-list li a:hover {
    text-decoration: underline; /* 添加hover时的下划线效果 */
    color: #0056b3; /* 修改hover时的链接颜色 */
}

.link-list {
    list-style-type: none;
    padding: 0;
    display: grid; /* 使用 Grid 布局 */
    grid-gap: 10px; /* 设置网格项之间的间距 */
    grid-template-columns: repeat(4, 1fr); /* 电脑端一行显示 4 个 */
}

.link-list li {
    list-style:none;
}

.link-list li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd; 
    border-radius: 5px;
    margin-bottom: 8px; /* 稍微调整底部外边距 */
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* 添加轻微的阴影 */
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out; /* 添加边框颜色过渡 */
}

.link-list li a:hover {
    background-color: #f9f9f9;
    border-color: #bbb; /* hover 时改变边框颜色 */
}
#links-list li{float: left;
    margin: 5px 10px;
}
footer {
    text-align: center;
    padding: 1em 0;
    margin-top: 20px;
    background-color: #333;
    color: white;
}

.player {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width:100%;
    max-width: 940px;
    background-color:#4c4b4b;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    margin-top: 15px;
}

.player button {
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
}

.player span {
    font-size: 14px;
}

/* 针对小屏幕的样式调整 */
@media (max-width: 768px) {
    .big {
        width: 95%;
        padding: 10px;
    }
    .menu {
        text-align: center;
    }
    .menu a {
        display: inline-block; /* 修改为水平排列 */
        padding: 8px 15px;
        margin: 5px;
    }
    .player {
        flex-direction: row; /* 保持水平排列 */
        align-items: center; /* 保持垂直居中 */
        justify-content: center; /* 保持水平居中 */
        width:100%;
    }
    .player button {
        display: flex; /* 使用 Flexbox 布局 */
        flex-direction: column; /* 内部元素垂直排列 */
        align-items: center; /* 内部元素水平居中 */
        justify-content: center; /* 内部元素垂直居中 */
        width: auto; /* 宽度自适应内容 */
        margin: 5px; /* 调整外边距 */
        padding: 5px; /* 调整内边距 */
        font-size: 14px;
        border: 1px solid #005A99; /* 添加边框 */
        border-radius: 5px;
        white-space: nowrap; /* 防止文字折行，如果需要 */
    }
    .player span {
        font-size: 12px;
    }
}

/* 小屏幕下，调整歌曲列表的显示 */
@media (max-width: 768px) {
    .link-list {
        grid-template-columns: repeat(2, 1fr); /* 手机端一行显示 2 个 */
    }
}
