/* 未能缩小。正在返回未缩小的内容。
(26,17): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
(53,25): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-border-radius'
 */
.albumn-lists {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.albumn-list-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    gap: 12px;
    color: #333333;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    width: 380px;
    box-shadow: 0 0 24px 0 #0000000a;
}

.albumn-list-item:hover{
    font-weight: 700;
    color: var(--design-theme-color, #12bfaf);
}

.albumn-list-img{
    width: 100%;
    height: 285px;
    object-fit: cover
    ;
}

.albumn-list-picture{
        padding-bottom: 12px;

}
.course-cate-title{
    position:relative;

}
.course-cate-title .album-anchor{
    position:absolute;
    top:-100px;
}


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