.content{
    width: 100%;
    height: auto;
    display: flex;
    overflow: hidden;
    padding: 4.167vw 8.542vw 0 8.542vw;
    flex-direction: column;
}
.album-list{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 3vw; /* 子项间的间距 */
}
.album-item{
    width: 18vw;
    height: 20vw;
    cursor: pointer;
    flex: 0 0 auto; /* 保持每个子项的大小 */
}
.album-list::after {
    content: "";
    flex: auto; /* 填充剩余空间 */
}
.album-item-image{
    width: 100%;
    height: 12vw;
    position: relative;
    display: flex;
    justify-content: center;
}
.album-item-image img{
    width: 100%;
    height: 100%;
    border-radius: 0.5vw;
    object-fit: cover;
}
.album-item-image:before{
    content: "";
    display: inline-block;
    width: 75%;
    height: 11vw;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 3.2vw;
    border-radius: 0.5vw;
    box-shadow: 0px 2px 20px  rgba(0, 88, 189, 0.1);
    z-index: -1;
}
.album-item-image:after{
    content: "";
    display: inline-block;
    width: 85%;
    height: 11vw;
    background-color: #ffffff;
    position: absolute;
    top: 2.2vw;
    border-radius: 0.5vw;
    box-shadow: 0 2px 20px  rgba(0, 88, 189, 0.1);
    z-index: -1;
}
.album-item-content{
    width: 100%;
    height: 8vw;
    padding: 3vw 1vw 0 1vw;
}
.album-item-content label{
    font-size: 1.2vw;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(51, 51, 51, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2vw;
    display: block;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}
.album-item-content p{
    display: flex;
}
.album-item-content p>span{
    font-size: 0.6vw;
    font-weight: 400;
    letter-spacing: 0;
    color: rgba(51, 51, 51, 0.6);
    display: flex;
    align-items: center;
    margin-right: 1vw;
}
.album-item-content p>span>img{
    width: 0.8vw;
    height: 0.8vw;
    margin-right: 0.5vw;
}
