/* 重置一些默认的浏览器样式，让样式在不同浏览器表现更统一 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 导航栏整体样式 */
nav {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* 导航栏中的ul列表样式 */
nav ul {
    list-style-type: none;
    display: flex;
    float: none; /* 移除之前的左浮动 */
    align-items: center;
	margin-right: 10%;
}

/* 每个li列表项样式 */
nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: normal;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* logo样式，这里只是预留一个选择器，你后续把图片地址替换进去即可 */
.logo {
    width: 200px; /* 根据实际图片大小调整宽度 */
    height: auto;
	margin-top: 1%;
	margin-bottom: 2%;
	margin-left: 10%;
}