/* banner */
#banner{
    width: 100%;
    height: 1.8rem;
}

/* 各种数字 */
.num{
    margin-top: .3rem;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.num section{
    padding: 0 .04rem;
    border-right: 1px solid #e4e4e4;
}
.num section p{
    font-size: .22rem;
    color: #de161c;
    font-weight: bold;
}
.num section:last-of-type{
    border-right: 0;
}

/* 课程内容 */
.Course_title{
    width: 100%;
    margin: .25rem 0;
}
.Course_txt{
    padding: 0 .15rem;
    line-height: .2rem;
}

/* 各种阶段 */
.stage{
    margin-top: .25rem;
    padding: 0 .15rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.stage figure .img_box{
    width: 1.65rem;
    height: 1.05rem;
}
.stage figure figcaption{
    width: 1.65rem;
    padding: .15rem 0;
}
.stage figure figcaption p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 妆典师生作品 */
.works_title{
    height: .29rem;
    margin-top: .25rem;
}
.works .tab_bar{
    height: .85rem;
    display: flex;
    align-items: center;
}
.works .tab_bar section{
    width: 100%;
    height: .33rem;
    display: flex;
    justify-content: space-between;
}
.works .tab_bar section p{
    width: 24.5%;
    text-align: center;
    line-height: .33rem;
    background: #efefef;
}
.works_img section{
    display: flex;
    flex-wrap: wrap;
    height: 7.4rem;
    justify-content: space-around;
    align-content: space-between;
    padding: 0 .1rem;
}
.works_img section a{
    width: 1.65rem;
    height: 2.4rem;
}
.works_img section{
    display: none;
}
.works_img .show {
    display: flex;
}
.works .tab_bar section .active{
    background: #de161c;
    color: #fff;
}

/* 承诺 */
.promise{
    width: 100%;
    height: .95rem;
    margin: .35rem 0;
}


/* 热门课程 */
.courses{
    width: 100%;
}
.courses_title,.works_title{
    width: 100%;
    height: .28rem;
}
.courses .courses_list{

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
    box-sizing: border-box;
    padding: .3rem 0.05rem;
}
.courses .courses_list figure{
    width: 1.76rem;
    height: 2.2rem;
    position: relative;
	margin-bottom:0.05rem;
} 
.courses .courses_list figure figcaption{
    position: absolute;
    width: 100%;
    height: .4rem;
    background: rgba(0, 0, 0, .5);
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
}
.courses .courses_list figure figcaption h3{
    font-weight: bold; 
}
.courses .courses_list figure .courses_txt{
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}
.courses .courses_list figure .courses_txt .courses_txt_content{
    position: absolute;
    width: 1.8rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
}
.courses .courses_list figure .courses_txt .courses_txt_content h3{
    font-size: .16rem;
    line-height: .4rem;
}
.courses .courses_list figure:hover .courses_txt{
    display: block;
}
.courses .courses_list figure:hover figcaption{
    display: none;
}

.advertising{
    width: 100%;
    height: 1.95rem;
    margin-bottom: .3rem;
}