/*线上线下课程列表*/
.courseBoxMin{
    position: relative;
    margin: 1.25rem 0 0 1rem;
    padding-bottom: 1.25rem;
    height: auto;
    line-height: normal;
    background-color: #ffffff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.courseBoxMin::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #E0E0E0;
    transform: scaleY(.5);
}
.courseBoxMin:last-child::after{
    background: #fff;
}

.courseBoxMin .photo{
    float: left;
    position: relative;
    display: inline-block;
    width: 6.666667rem;
    height: 8.833333rem;
    background: #F3F3F3;
    background-size: cover;
    border-radius: 4px;
}
.courseBoxMin .photo .btm{
    position: absolute;
    display: inline-block;
    bottom:0;
    left: 0;
    padding: 0 0.83rem;
    width: 100%;
    height: 2.08rem;
    line-height: 2.08rem;
    background-color: rgba(0,0,0,0.7);
    font-size: 1rem;
    color: #ffffff;
}
.courseBoxMin .title .teachers{
    width: 100%;
    display: block;
    margin: 0.75rem 0;
    font-family: PingFangSC-Regular,'microsoft yahei';
    font-size: .916667rem;
    color: #999;
}
.courseBoxMin .title .courseAdd,
.courseBoxMin .title .buyCount{
    font-family: PingFangSC-Regular,'microsoft yahei';
    font-size: .916667rem;
    color: #999999;
}

.courseBoxMin .title .buyCount {
    margin-top: .75rem;
}
.courseBoxMin .title .price{
    position: absolute;
    right: 1.25rem;
    top: .15rem;
    font-size: 1rem;
    font-family: PingFangSC-Regular,'microsoft yahei';
    color: #FF8B00;
}
.courseBoxMin .title {
    position: relative;
    float: left;
    padding:  0 1rem;
    font-size: 1rem;
    display: inline-grid!important;
    line-height: normal;
    text-align: left;
    color: #2F2F2F;
    font-weight: normal;
    /*两行文本加省略号*/
    /*overflow : hidden;*/
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.courseBoxMin .date{
    font-family: PingFangSC-Medium,'microsoft yahei';
    font-size: 1.166667rem;
    overflow : hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 6rem;
    box-sizing: border-box;
}