
html{
    font-size: 10px;
}
body {
    max-width: 450px;
    margin: auto;
    font-size: 16px;
    background-color: #e8e9eb;
}

#app {
    width: 100%;
    height: auto;
    padding: 50px 0;
    font-family: '微软雅黑';
}

.header {
    width: 100%;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.fontcolor{
    color: #fff;
}
.fontsize12{
    font-size: 12px;
}
.header-nav {
    width: 100%;
    height: 5rem;
    text-align: center;
    position: relative;
    line-height: 5rem;
}

.header-nav>a {
    position: absolute;
    left: 0.8rem;
}

.header-nav i {
    font-size: 24px;
}

.header-nav .home {
    position: absolute;
    top: 50%;
    right: 8px;
    margin-top: -20px;
    display: block;
    width: 4rem;
    height: 4rem;
    text-align: center;
    line-height: 4rem;

}

.header-nav .home i {
    font-size: 40px;
}



/* 主体部分-------------------- */
.main-content{
    width: 100%;
    padding: 2rem 2rem;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgb(0 0 0 0.2);
}

.schedule-box{
    width: 100%;
}

.schedule-title{
    width: 100%;
    background-color: #f0f0f0;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.schedule-title p{
    margin-top:0.4rem;
    font-size: 14px;
}

.schedule-title-btn{
    margin-top: 2rem;
}

.schedule-title-btn a{
    padding: 0.7rem 1rem;
    color: #fff;
    border-radius: 20px;
}

.schedule-title-btn a:not(:first-child){
    margin-left: 1rem;
}

.schedule-content{
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}


.schedule-list{

}


.schedule-list-item{
    padding: 15px;
    border-bottom: 1px solid #dadada;
}
.schedule-list-item>p{
    margin: 10px 0;
}
.schedule-list-item>p span{
    padding: 6px 9px;
    background-color: rgba(232, 51, 54, .2);
    border-radius: 20px;
    font-size: 12px;
}
.schedule-list-item>p span i{
    font-size: 12px;
}
.lecture-title{
    margin-top: 15px;
}


.lecture-people{
    border: 1px solid #eee;
    border-radius: 10px;
    background-image: linear-gradient(#fff, #f7f7f7);
    margin-top: 20px;
}
.host{
    position: relative;
}
.host-label{
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    padding: 0.3rem 1rem;
    font-size: 12px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
}
.host a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 0.5rem;
    box-sizing: border-box;
    position: relative;
}

.host a>div:nth-child(1){
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    overflow: hidden;
}
.host a>div:nth-child(1) img{
    width: 100%;
    height: 100%;
}
.host a>div:nth-child(2){
    width: 80%;
    line-height: 12px;
}

.name{
    font-size: 14px;
    margin-bottom: 0.5rem;
}


/* 菜单按钮导航css -------------------*/
.mask {
    display: none;
    position: fixed;
    width: 100vw;
    top: 0;
    padding: 50px 0 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
    height: 100vh;
}

.cd-nav-list {
    background-color: #fff;
    width: 50%;
    height: 100vh;
    overflow-y: auto;
    background-color: white;
    box-shadow: 5px 0 10px rgba(0, 0, 0, .2);
}

.cd-nav-item {
    width: 100%;
}

.cd-nav-item a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px 12px;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.cd-nav-item a i {
    font-size: 14px;
    margin-right: 4px;
}

