/* 清除默认样式 */
*  {
    margin: 0;
    padding: 0;
}
.daohang {
    /* 居中 */
    margin: 50px auto;
    width: 640px;
    height: 50px;
    background-color: #ffc0cb;
}

ul {
    /* 清除a标签圆点 */
    list-style: none;
}

.daohang li {
    float: left;
    color: aquamarine;
}

.daohang li a {
    display: inline-block;
    /* 清除A标签下划线 */
    text-decoration: none;
    /* 水平居中 */
    text-align: center;
    /* 垂直居中 */
    line-height: 50px;
    width: 80px;
    height: 50px;
    font-size: 16px;
    color: rgb(9, 9, 9);
}
/* a标签鼠标停留变颜色 */
.daohang li a:hover {
    background-color: green;
}

.dibu {
   text-align: center;
}