.album-list-wrap{
    width:90%;
    max-width:1000px;
    margin:0 auto 60px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.add-btn-box{
    width:90%;
    max-width:1000px;
    margin:0 auto 20px;
    text-align:right;
}
.add-btn{
    background:#E88B9B;
    color:#fff;
    padding:8px 20px;
    border-radius:6px;
    text-decoration:none;
}
.album-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 8px #f1e2e5;
}
.album-img{
    width:100%;
    height:180px;
    object-fit:cover;
}
.album-name{
    padding:10px;
    font-size:14px;
    color:#666;
}
.album-op{
    padding:0 10px 10px;
    display:flex;
    justify-content:space-between;
}
.album-op a{
    font-size:13px;
    color:#999;
    text-decoration:none;
}
.album-op a:hover{
    color:#E88B9B;
}
@media (max-width:768px){
    .album-list-wrap{
        grid-template-columns:repeat(2,1fr);
    }
}