/* 未能缩小。正在返回未缩小的内容。
(136,25): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-border-radius'
 */
/* 课程 */
.course-lists {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 4px;
    padding-bottom: 16px;
}

.course-list-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding: 16px 0 0;
    margin: 0 16px;
    border-top: 1px solid #EEEEEE;
}
.course-list-item:first-child{
    border: none;
    padding-top: 0;
}
.course-cover {
    width: 125px;
    aspect-ratio: 125/78;
    object-fit: cover;
    margin-right: 10px;
    border: 1px solid #EEE;
}

.course-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    min-height: 78px;
}

.course-info-name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-top: 4px;
}

.course-info-txt {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    margin-bottom: 6px;
    width: 100%;
}
.course-price{
    font-size: 14px;
    line-height: 14px;
    color: #FE6507;
}
.course-info-feature {
    color: #999;
    font-size: 12px;
    line-height: 12px;
}

/* 操作按钮 */
.course-btn {
    margin-top: 29px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.course-listen,
.course-consoult {
    border: 1px solid #FE6507;
    padding: 10px 32px;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.course-listen {
    color: #fff;
    background: #FE6507;
}

.course-consoult {
    color: #FE6507;
    background: #fff;
}

/* 右边其他信息 */
.course-opt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    height: 100%;
    min-height: 190px;
}

.course-opt-consult {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.course-opt-consult span:first-child {
    color: #FE6507;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.course-opt-consult span:last-child,
.course-opt-detail {
    color: #999;
    font-size: 14px;
    line-height: 20px;
    margin-top: 2px;
}

.course-opt-detail {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.course-cover {
    border-radius: var(--design-theme-border-radius);
}
