body{
    background: #ffffff;
}
.mains{
    margin-top: 30px;
}
/*面包屑*/
.mbx{
    margin: 0 0 10px 0;
}
.mbx > ol{
    margin: 0;
    padding: 8px 0;
    font-size: 14px;
}
.mbx > ol a{
    color: #333;
    text-decoration: none;
}
.mbx > ol a:hover{
    color: #26caac;
}
@media (max-width: 767px) {
    .mains{
        margin-top: 10px;
    }
    .mbx{
        margin: 0 0 2px 0;
    }
    .mbx > ol{
        font-size: 12px;
    }
}

/*分类选择*/
.s-nav{
    background: #f8f8f8;
    padding: 15px 5px;
}
.s-nav li{
    float: left;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin: 2px 0;
}
.s-nav li > a{
    text-decoration: none;
    color: #333;
    display: block;
    height: 30px;
    position: relative;
    padding: 0 20px 0 40px;
}
.s-nav li > a > img{
    position: absolute;
    top: 7px;
    left: 20px;
    width: 16px;
    height: 16px;
}
.s-nav li > a:hover{
    color: #26caac;
}
.s-nav li.active > a{
    background: #26caac;
    color: #ffffff;
}
.s-nav li.active > a:hover{
    color: #ffffff;
}

@media (max-width: 767px) {
    .s-nav{
        padding: 10px 5px;
    }
    .s-nav li{
        height: 24px;
        line-height: 24px;
        font-size: 13px;
    }
    .s-nav li > a{
        padding: 0 14px 0 30px;
        height: 24px;
    }
    .s-nav li > a > img{
        position: absolute;
        top: 5px;
        left: 14px;
        width: 13px;
        height: 13px;
    }
}

/*排序*/
.sort-wrap{
    margin-top: 40px;
    border: 1px solid #ddd;
    height: 36px;
    padding: 10px 0;
	background: #f4f4f4;
}
.sort-wrap > ul.sort-l{
    float: left;
}
.sort-wrap > ul.sort-r{
    float: right;
}
.sort-wrap li{
    float: left;
    height: 16px;
    line-height: 16px;
    padding: 0 14px;
    font-size: 14px;
    position: relative;
}
.sort-wrap li:after{
    content: '';
    position: absolute;
    width: 1px;
    height: 12px;
    top: 2px;
    right: 0;
    background: #ddd;
}
.sort-wrap li:last-child:after{
    display: none;
}
.sort-wrap li > a{
    color: #333;
    text-decoration: none;
}
.sort-wrap li > a:hover,.sort-wrap li.active > a{
    color: #26caac;
}
@media (max-width: 767px) {
    .sort-wrap{
        margin-top: 20px;
        height: auto;
        padding: 16px 0;
    }
    .sort-wrap > ul.sort-r{
        float: left;
        margin-top: 10px;
        width: 100%;
    }
    .sort-wrap li{
        height: 14px;
        line-height: 14px;
        padding: 0 10px;
        font-size: 13px;
    }
    .sort-wrap li:after{
        height: 10px;
    }
}

/*列表*/
.list-wrap{
    margin-top: 20px;
}


/*右侧*/
.main-right.pos-fixed{
    position: fixed;
    top: 20px;
}
@media (max-width: 767px) {
    .main-right{
        margin-bottom: 30px;
    }
}

/*广告位*/
.gg-seat{
    margin-bottom: 20px;
}
.gg-seat img{
    width: 100%;
}
/*课程热度排行*/
.hot-course-wrap > .titles{
    position: relative;
    font-size: 18px;
    color: #333;
    padding-left: 10px;
}
.hot-course-wrap > .titles:before{
    position: absolute;
    content: '';
    width: 3px;
    height: 16px;
    top: 5px;
    left: 0;
    background: #26caac;
}

.hot-course-wrap > .lists{
    margin-top: 10px;
}
.hot-course-wrap .list-item{
    margin-bottom: 20px;
    position: relative;
    height: 80px;
}
.hot-course-wrap .list-item .pic{
    position: absolute;
    top: 0;
    left: 0;
}
.hot-course-wrap .list-item .pic span{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: linear-gradient(135deg, #aaa 50%, rgba(0,0,0,0) 51%);
    color: #ffffff;
    padding: 5px 0 0 7px;
}
.hot-course-wrap .list-item:first-child .pic span{
    background-image: linear-gradient(135deg, #e96155 50%, rgba(0,0,0,0) 51%);
}
.hot-course-wrap .list-item:nth-of-type(2) .pic span{
    background-image: linear-gradient(135deg, #ff8a42 50%, rgba(0,0,0,0) 51%);
}
.hot-course-wrap .list-item:nth-of-type(3) .pic span{
    background-image: linear-gradient(135deg, #ffb11b 50%, rgba(0,0,0,0) 51%);
}
.hot-course-wrap .list-item .datas{
    width: 100%;
    height: 100%;
    position: relative;
}
.hot-course-wrap .list-item .datas > a{
    text-decoration: none;
    color: #333;
    font-size: 14px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}
.hot-course-wrap .list-item .datas > a:hover{
    color: #26caac;
}
.hot-course-wrap .list-item .datas > span{
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    color: #999;
    height: 14px;
    line-height: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}
@media (max-width: 1200px) {
    .hot-course-wrap .list-item{
        height: 65px;
    }
}
@media (max-width: 992px) {
    .hot-course-wrap .list-item{
        height: 52px;
    }
    .hot-course-wrap .list-item .datas > a{
        font-size: 13px;
        line-height: 120%;
    }
}
@media (max-width: 767px) {
    .hot-course-wrap > .titles{
        font-size: 16px;
    }
    .hot-course-wrap > .titles:before{
        width: 3px;
        height: 13px;
    }
    .hot-course-wrap .list-item{
        height: 80px;
    }
}











