/* 未能缩小。正在返回未缩小的内容。
(32,25): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-border-radius'
 */

.albumn-lists-wrap{
    display: flex;
    flex-direction: column;
    background: #fff;
}
.albumn-lists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 9px;
    padding: 0 16px 10px;
}

.albumn-list-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #333333;
    text-align: center;
    font-size: 14px;
    line-height: 14px;
    width: 100%;
}
.albumn-list-img{
    width: 100%;
    aspect-ratio: 167/125;
    object-fit: cover;
}

/* 默认圆角 */
.albumn-list-img {
    border-radius: var(--design-theme-border-radius);
}
