html {
    font-size: 10px;
}

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

#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;
}

/* 主体部分------------------------ */

.expert-info{
    width: 100%;
    background-color: #fff;
}
.info-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 3rem 2rem;
    box-sizing: border-box;
    position: relative;
}

.info-box>a{
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #349be0;
}
.info-box>div:nth-child(2){
    width: 20%;
    text-align: center;
}
.info-box>div:nth-child(2) img{
    width: 7rem;
    height: 7rem;
}
.info-box>div:nth-child(3){
    width: 70%;
}
.info-box>div:nth-child(3) h3{
    margin-top: -8px;
}
.info-box>div:nth-child(3) p{
    font-size: 1.4rem;
    margin-top: 2rem;
}

/* 切换栏导航部分------------------------ */
.expert-nav{
    width: 100%;
    background-color: #fff;
}
.expert-nav ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.expert-nav ul li{
    text-align: center;
    width: 50%;
    padding: 1rem 0;
    font-size: 16px;
    box-sizing: border-box;
}
.expert-nav ul li.active{
    color: #349be0;
    border-bottom: 3px solid #349be0;
}


/* 切换栏框体部分----------------------- */
.expert-content{
    background-color: #fff;
}
.expert-content ul li{
    display: none;
}
.expert-content ul li.current{
    display: block;
}
.expert-content-title{
    background-color: rgba(231, 76, 60, .1);
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    box-sizing: border-box;
    /* height: 4.5rem;
    line-height: 4.5rem; */
    font-size: 18px;
}
.expert-content-title span:nth-child(1){
    font-weight: 700;
}
.expert-content-title span:nth-child(1) i{
   font-size: 20px;
}
.expert-content-title span:nth-child(2){
    color: #fff;
    font-weight: 700;
    display: block;
    width: 3rem;
    height: 2.5rem;
    text-align: center;
    font-size: 16px;
    border-radius: 4px;
    line-height: 2.5rem;
}

.schedule-list{
    width: 100%;
}

.schedule-item{
    display: block;
    padding: 2rem 4rem 2rem 2rem;
    box-sizing: border-box;
    border: 1px solid #d0d0d0;
    position: relative;
}

.schedule-item>i{
    position: absolute;
    top: 50%;
    margin-top: -12px;
    font-size: 25px;
    right: 10px;
}


.brief{
    padding: 2rem 1.8rem 0;
    border-top: 1px solid #eee;
}
.brief p{
    padding: 0.6rem 1.2rem 0;
}


/* 菜单按钮导航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;
}