


/*************************************************导**********航*************************************************/



* {
    margin: 0;
    padding: 0;
    list-style: none;      /* 列表项标记的类型 */
    /* border: 1px solid black; */  /* 导航框辅助线 */
}

ul {
    overflow-x: hidden;    /* 取消横轴滚动条 */
    overflow-y: auto;      /* 滚动纵轴滚动条 */
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}

::-webkit-scrollbar {
    background-color: transparent;  /* 滚动条透明 */
    width: 0px;
}

.title {                       /* ul里第一个li */
    /* z-index: 100; */
    position: fixed;
    color: #fff;
    background-color: #0099ff;
    width: 100%;
    height: 60px;
    line-height: 50px;
    text-align: center;
    font-size: 40px;
    border-radius: 50px;       /* 导航标题圆角 */
}

span p {
    /* position: fixed; */
    color: #fff;
    background-color: #0099ff;
    width: 100%;
    line-height: 25px;
    font-size: 15px;
    text-indent: 2em;          /* 段落首行缩进两个字 */
}

a {
    display: block;
    height: 30px;              /* a标签的边框跟li边框一样大 */
    line-height: 30px;
    color: #E1F5FE;
    font-size: 13px;
    text-decoration: none;     /* 链接去下划线 */
    transition: all .1s linear;
}

ul li.title + li {             /* 选择在第一个 li 元素之后的第一个兄弟元素。 */
    margin-top: 60px;          /* 为 0 时，下面的 li 会跟标题栏 li 重合 */
}

ul li:not(.title) {
    height: 30px;
    line-height: 30px;         /* 垂直居中 */
    width: 100%;
    text-align: center;        /* 水平居中 */
    overflow: hidden;          /* 滚动条在ul而不是li */
}

ul li:not(.title):hover {
    color: #E1F5FE; 
    background-color: #1976D2;
    transform: scale(1.3);     /* 鼠标移到 ul 中的除了第一个 li 之外的其他 li 元素上时，这些元素会被放大 1.3 倍。 */
}