/* 顶部横幅样式 */
.Banner {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 10;
}

/* 顶部横幅中的无序列表样式 */
.Banner ul {
    width: 100%;
    height: 20%;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(245,245,245,0.85);
    list-style-type: none;
}

/* 列表左部元素样式 */
.Banner li.left {
    width: 20%;
    height: 90%;
    display: flex;
}

/* 左部按钮样式 */
.Banner button.left_button {
    font-family: system-ui;
    font-size: 20px;
    font-weight: bold;
    border: 0px;
    background-color: rgba(255,255,255,0);
    color: rgba(220,38,38,1.0);
}

/* 列表右部元素样式 */
.Banner li.right {
    width: 30%;
    height: 90%;
    display: flex;
    justify-content: space-around;
}

/* 右部按钮样式 */
.Banner button.right_button {
    font-family: system-ui;
    font-size: 16px;
    border: 0px;
    background-color: rgba(255,255,255,0);
    color: black;
    transition: color 0.3s;
}

/* 使右部按钮变色 */
.Banner button.right_button:hover {
    color: rgb(235, 51, 51);
}