/* 音乐作品区域整体样式 */
.layui-row.p_b40 {
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1200px;
}

/* 音乐作品标题样式 */
.section-title-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #007BFF;
}

/* 音乐作品卡片样式 */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-4.col-12 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

.custom-block {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
    height: 100%;
}

.custom-block:hover {
    transform: translateY(-5px);
}

.custom-block-image-wrap {
    position: relative;
    overflow: hidden;
}

.custom-block-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.custom-block-image-wrap audio {
    width: 100%;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
}

.custom-block-info {
    padding: 20px;
}

.custom-block-info h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.custom-block-info p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

/* 歌词容器样式 */
.lyrics-container {
    position: relative;
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 150px;
    overflow-y: auto;
    display: none;
}

.lyrics-container p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

.lyrics-container::-webkit-scrollbar {
    width: 8px;
}

.lyrics-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.lyrics-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

/* 社交分享按钮样式 */
.social-share {
    position: absolute;
    top: 10px;
    right: 10px;
}

.social-share a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.social-share a:hover {
    background-color: #0056b3;
}

/* 歌词容器样式 */
.lyrics-container {
    position: relative;
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 150px;
    overflow-y: auto;
    display: none;
}

/* 歌词文本样式 */
.lyrics-container p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

/* 滚动条样式 */
.lyrics-container::-webkit-scrollbar {
    width: 8px;
}

.lyrics-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.lyrics-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}