/* ========================================
   歌手页面样式 - 匹配现代设计系统 v2.1
   ======================================== */

.singerbox{
    margin: 25px auto;
}

/* 字母检索栏 */
.zmsearch{
    background: var(--card-bg);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}
.zmsearch span{
    display: flex;
    align-items: center;
    margin-right: 8px;
    margin-bottom: 4px;
    height: 32px;
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
}
.zmsearch a{
    display: flex;
    align-items: center;
    width: 36px;
    justify-content: center;
    margin-right: 4px;
    margin-bottom: 4px;
    height: 32px;
    background: var(--bg-soft);
    padding: 0;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.zmsearch a:hover{
    background: var(--gradient-primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* 歌手列表 */
.singerlist{
    margin-top: 25px;
}
.singerlist a{
    display: flex;
    border-radius: var(--radius);
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    width: 130px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    padding: 10px;
}
.singerlist a:hover{
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-lighter);
}
.singerlist a .avatar{
    width: 110px;
    height: 110px;
    border-radius: var(--radius);
    overflow: hidden;
}
.singerlist a .avatar img{
    display: block;
    object-fit: cover;
    width: 110px;
    height: 110px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.singerlist a:hover .avatar img{
    transform: scale(1.05);
}
.singerlist a p{
    padding: 10px 0 4px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    text-align: center;
}
.singerlist a:hover p{
    color: var(--primary);
}

/* 歌手详情 */
.singerinfobox{
    display: flex !important;
    padding: 20px !important;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    margin: 0 16px;
}
.signerpic{
    width: 180px;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}
.signerpic img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.signerinfo{
    flex: 1;
    margin-left: 20px;
}
.signerinfo h1{
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}
p.area{
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
}
.info{
    margin-top: 10px;
    line-height: 170%;
    color: var(--text-secondary);
    font-size: 14px;
}
.singerdown{
    margin-top: 15px;
}
.singerdown span{
    display: flex;
    cursor: pointer;
    padding: 0 36px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
}
.singerdown span:hover{
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}
.gssjdown{ position: relative;}
.gssjdown em{
    display: flex;
    align-items: center;
    height: 42px;
    color: #fff;
    justify-content: center;
    width: 130px;
    background: #3b82f6;
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-sm);
}

.gssjdown:hover .showqrcode{ display: block;}

/* 歌手详情标题栏 */
.singerinfobox + h2{
    background: var(--bg-soft) !important;
    border-radius: var(--radius-sm);
    color: var(--text) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* ========================================
   响应式 - 移动端
   ======================================== */
@media screen and (max-width:600px) {
    .singerbox{ margin: 15px auto;}

    .zmsearch{
        width: 95%;
        margin: 0 auto 15px;
        padding: 12px;
    }
    .zmsearch a{
        width: 34px;
        height: 30px;
        margin-right: 3px;
    }

    .singerlist{
        margin-top: 15px;
        width: 95%;
        margin: 0 auto;
        justify-content: space-between;
    }
    .singerlist a{
        margin-right: 8px;
        margin-left: 0;
        margin-bottom: 12px;
        width: calc(33.33% - 6px);
        padding: 8px;
    }
    .singerlist a:nth-child(3n){ margin-right: 0;}
    .singerlist a .avatar{
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    .singerlist a .avatar img{
        display: block;
        object-fit: cover;
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
    }
    .singerlist a p{
        font-size: 13px;
        padding: 8px 0 4px;
    }

    .singerinfobox{
        display: block !important;
        padding: 16px !important;
        margin: 0 10px;
        text-align: center;
    }
    .signerpic{
        margin: 0 auto;
        width: 140px;
        height: 140px;
    }
    .signerinfo{
        margin-left: 0;
        margin-top: 15px;
    }
    .signerinfo h1{
        text-align: center;
        margin-top: 8px;
        font-size: 22px;
    }
    p.area{ text-align: center;}
    .info{ text-align: left;}

    .gssjdown{ display: none;}
    .singerdown span{ width: 100%; font-size: 15px;}
}
