/* 音乐列表页面内联样式分离 */
/* 版本: 20231010 */

/* Banner 区域样式 */
.indx_title_main_wrapper {
    background: linear-gradient(to bottom, rgba(30, 30, 40, 0.95), rgba(18, 18, 18, 0.9)), url('/static/musica/images/inner_bg.jpg') 50% 0 repeat-y;
    background-position: center 0;
    background-size: cover;
    background-repeat: no-repeat;
    float: left;
    width: 100%;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.indx_title_main_wrapper .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(170, 60, 255, 0.15) 0%, transparent 50%, rgba(255, 83, 180, 0.1) 100%);
    z-index: 1;
}

.indx_title_main_wrapper .banner-content {
    position: relative;
    z-index: 2;
}

.indx_title_left_wrapper {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.indx_title_left_wrapper ul {
    font-weight: bolder;
}

/* 主要内容区域 */
.album_inner_list {
    position: relative;
    z-index: 3;
    margin-top: -20px;
}

.album_list_wrapper_shop {
    font-family: 'Oswald' !important;
}

/* 筛选下拉框默认隐藏 */
.music_list_dropdown_box {
    display: none;
}

/* 当前筛选条件区域默认隐藏 */
.music_list_current_filters {
    display: none;
}

/* 卡片式列表容器 */
.custom-music-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* 音乐卡片 */
.custom-music-card {
    border-radius: var(--card-radius);
}

.custom-card-header {
    position: relative;
}

.custom-play-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.custom-play-overlay a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.custom-play-no {
    position: absolute;
    color: white;
    font-weight: bold;
}

.custom-play-hover {
    display: none;
}

/* 专辑封面链接 */
.cover-link {
    display: block;
    width: 100%;
    height: 100%;
}

.cover-container {
    display: block;
    width: 100%;
    height: 100%;
}

/* 价格标签 */
.custom-price-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ffd800;
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
}

/* 卡片内容 */
.custom-card-content {
    padding: 15px;
}

/* 音乐元信息容器 */
.custom-music-meta-container {
    margin: 12px 0;
    font-size: 13px;
}

/* 流派标签 */
.custom-genre-tag {
    display: inline-block;
    background: rgba(170, 60, 255, 0.15);
    color: #aa3cff;
    padding: 3px 10px;
    border-radius: 12px;
    margin-right: 8px;
    margin-bottom: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.genre-link {
    text-decoration: none;
    color: inherit;
}

/* 作者信息 */
.custom-artist-info {
    display: inline-flex;
    align-items: center;
    color: #ff53b4;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.artist-icon {
    margin-right: 4px;
    font-size: 14px;
}

.artist-link {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

/* 音乐属性信息 */
.custom-music-properties {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    padding: 8px 12px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 6px;
    border: 1px solid rgba(170, 60, 255, 0.1);
}

.property-item {
    display: inline-flex;
    align-items: center;
    color: #b0b0b0;
    transition: all 0.2s ease;
}

.bpm-icon {
    margin-right: 10px;
    color: #7b61ff;
    font-size: 14px;
}

.key-icon {
    margin-right: 8px;
    color: #ff73c4;
    font-size: 14px;
}

.bpm-link, .key-link {
    text-decoration: none;
    color: #d0d0d0;
    margin-left: 6px;
    transition: color 0.2s ease;
}

/* 音乐时长 */
.custom-music-duration {
    margin: 0 auto 15px;
    padding: 6px 10px;
    background: rgba(170, 60, 255, 0.08);
    border-radius: 6px;
    font-size: 13px;
    color: #c294ff;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.duration-icon {
    margin-right: 6px;
    font-size: 14px;
}

/* 操作按钮 */
.custom-music-actions {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.action-link {
    color: #fff;
    transition: color 0.3s;
    text-decoration: none;
}

/* 分页区域 */
.blog_pagination_section {
    margin-bottom: 80px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .custom-music-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 8px;
    }
    
    .custom-card-content {
        padding: 10px;
    }
    
    .custom-music-properties {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .custom-music-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 6px;
    }
    
    .custom-card-content {
        padding: 8px;
    }
    
    .custom-music-meta-container {
        font-size: 12px;
    }
} 