*{
    box-sizing: border-box;
	-webkit-overflow-scrolling:touch !important; /* 当手指从触摸屏上移开，会保持一段时间的滚动 */
}
img{
    width: 100%;
    height: 100%;
}
#app{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
#content {
    height: 100%;
    position: relative;
    transition: all 0.5s;
    width: 100%;
}

/* 侧边栏 */
.sidenav{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    transition: all 0.5s;
    overflow-x: hidden;
    overflow-y: scroll;
}
.sidenav>a,.sidenav>.menu_list{
    display: block;
    width: 100%;
    line-height: .5rem;
    box-shadow: inset 0 -1px 0 0 #d0d0d0;
    font-weight: bold;
    font-size: .14rem;
    padding-left: .4rem;
}
.sidenav>.menu_list>span{
    display: none;
    padding-right: .37rem;
    transition: all 1s;
}
.sidenav>.menu_list>span>a{
    display: inline-block;
    width: .61rem;
    height: .21rem;
    font-size: .12rem;
    line-height: .21rem;
    border: 1px solid #000;
    text-align: center;
    margin-right: .11rem;
}
/* 头部 */
#header{
	height: .5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff
}
#header a{
    width: .16rem;
    height: .13rem;
}
#header .logo{
    width: .9rem;
    height: .27rem;
    margin-left: 0.8rem;
}
#header .schoolCode p:nth-of-type(2){
    color: #e0151b;
}

/* 内容 */
#main{
    position: absolute;
    top: .5rem;
    bottom: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}
/* 底部 */
#footer{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: .5rem;
    border-top: 1px solid #d9d9d9;
    display: flex;
    background: #444444;  
}
.foot_icon{
    width: .2rem;
}
#footer a{
    width: 25%;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: .09rem 0;
}
#footer a:hover{
    color: #e0151b;
}


/* 返回顶部 */
.GoToTop{
    position: fixed;
    right: .2rem;
    bottom: .6rem;
    width: .425rem;
    height: .425rem;
    display: none;
}

/* tel */
.tel{
    height: .5rem;
    line-height: .5rem;
    text-align: center;
}
.tel .tel_img{
    display: inline-block;
    width: .28rem;
    height: .17rem;
}
.tel span:nth-of-type(2){
    font-size: .16rem;
}
.tel span:nth-of-type(3){
    font-size: .14rem;
    color:#cc4853;
    font-weight:bold;
}


/* page */
.page{
    width: 100%;
    height: .35rem;
    line-height: .35rem;
    text-align: center;
    margin: .2rem 0;
}

/* 单行文本溢出 */
.txt_over{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

/* 多行文本溢出 */
.text_over{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


/* banner */
#banner{
    width: 100%;
    height: 1.7rem;
}