/* 在文件顶部添加或修改以下样式 */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 84px;
    width: 100%;
    background: rgba(14, 12, 21, 1);
    flex-shrink: 0; /* 防止 header 被压缩 */
}

.logo {
    padding-left: 40px;
    width: 141.5px;
    height: 25px;
}

.version {
    color: #ffffff;
    font-size: 20px;
    margin-right: auto;
    margin-left: 20px;
}

.menu-content {
    display: flex;
}

.menu-item {
    padding: 0 48px;
    text-decoration: none;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    height: 84px;
    line-height: 84px;
    color: rgba(255, 255, 255, 0.5);
}

.menu-item-active {
    color: #ffffff;
    background: transparent;
}

.normal-link {
    align-content: center;
}

.login {
    padding-right: 40px;
    width: 98px;
    height: 44px;
}

.logout {
    padding-right: 40px;
    width: 98px;
    height: 44px;
}

.styled-button.active {
    border: 2px solid transparent;
    border-image: url('../images/border.png') 5 round;
}

