﻿/*全局*/
* {
}
body {
    min-width: 375px;
}

a {
    /*链接*/
    color: #000000;
}

    a:hover {
        /*链接-激活伪类*/
        text-decoration: none;
        color: #000000;
    }

.layou-button {
    /*按钮*/
    display: inline-block;
    padding: 2px 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: rgb(0 0 0 / 10%) 1px solid;
    border-radius: 3px;
    margin-left: 5px;
    background-color: #FFFFFF;
}

.layou-button:hover {
    /*按钮-激活伪类*/
    background-color:rgb(0 0 0 / 10%);
}
.layou-input {
    /*输入框*/
    margin: 0px 20px 0px 5px;
    width:150px;
}
.layou-ul {
    /*列表*/
    margin-top:10px;
    list-style:none;
    padding:0px;
}
.layou-ul > li {
    /*列表项目*/
    margin-top:5px;
}
.layou-CheckBox {
    /*选择框input文本对齐*/
    top: 2px;
    position: relative;
}

/*顶部导航栏*/
.TopBar { /*导航栏div*/
    height: 50px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
    display: flex;
    z-index:101;
    position:fixed;
    width:100%;
}

    .TopBar > .UserMenu { /*用户菜单区域div*/
        width: 36px;
        height: 36px;
        margin: 10px 20px 0px auto;
        z-index: 101;
    }

@keyframes displaymenu {/*显示用户菜单事件*/
    100% {
        opacity: 100;
    }
}

.TopBar > .UserMenu:hover > .UserMenu-Meun {/*显示用户菜单伪类-显示菜单*/
    display: block;
    animation-name: displaymenu;
    animation-duration: 0.4s;
    animation-fill-mode: both;
}

.TopBar > .UserMenu:hover{ /*显示用户菜单伪*/
    margin: 10px 32px 0px auto;
    transition-property: margin;
    transition-duration: 0.4s;
}

.TopBar > .UserMenu:hover > img[name="UserMenu-UserAvatar"] { /*显示用户菜单伪*/
    width: 48px;
    height: 48px;
    border-radius: 24px;
    transition-property: width, height,border-radius;
    transition-duration: 0.4s, 0.4s, 0.4s;
}

.TopBar > .UserMenu > img[name="UserMenu-UserAvatar"] { /*用户菜单的图片img*/
    width: 32px;
    height: 32px;
    border-radius: 16px;
    box-shadow: 0 0px 10px 0 rgb(0 0 0 / 10%);
    z-index: 102;
    border: 1px solid rgb(0 0 0 / 10%);
    position: relative;
}

.TopBar > .UserMenu > .UserMenu-Meun { /*用户菜单的菜单div*/
    text-align: center;
    min-width: max-content;
    width: min-content;
    padding: 5px;
    background-color: #ffffff;
    box-shadow: 0 0px 10px 0 rgb(0 0 0 / 10%);
    border-radius: 4px;
    opacity: 0;
    display: none;
    z-index: 101;
    float: right;
    position: relative;
    top: -12px;
    right: -16px;
}
    .TopBar > .UserMenu > .UserMenu-Meun > div {/*用户菜单内的所有div*/
        padding: 2px 20px;
        border-radius: 2px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .TopBar > .UserMenu > .UserMenu-Meun > .Logint-div { /*用户菜单内的登录按钮div*/
        padding: 20px 20px 8px 20px;
        font-size: 16px;
        font-weight: bold;
    }
    .TopBar > .UserMenu > .UserMenu-Meun > .Logint-div > a[name="Login"]:hover { /*登录按钮div*/
        color:rgb(0 148 255);
    }
    .TopBar > .UserMenu > .UserMenu-Meun > .UserMenu-Meun-button {/*用户菜单内的所有菜单按钮div*/
        display: none;
    }

        .TopBar > .UserMenu > .UserMenu-Meun > .UserMenu-Meun-button:hover {/*用户菜单内的所有菜单按钮div伪类*/
            background-color: rgb(0 0 0 / 5%);
        }

div[name="ShowNavigationMenu"] { /*显示菜单按钮*/
    width: 50px;
    height: 50px;
    transform: rotate(90deg);
    transition: transform 0.4s;
}

    div[name="ShowNavigationMenu"] > i {
        font-size: 24px;
        margin: 12px;
        line-height: 48px;
        color: rgb(0 0 0 / 60%);
    }

/*导航菜单*/
.NavigationMenuDivClose { /*导航栏关闭层*/
    position: fixed;
    top: 50px;
    left: 0px;
    width: min-content;
    height: 100%;
    z-index:100;
}

.NavigationMenuDiv { /*导航菜单div*/
    position: fixed;
    top: 50px;
    left: -400px;
    transition: left 0.4s;
    min-width: 200px;
    background-color: #ffffff;
    border-top: solid 1px rgb(0 0 0 / 10%);
    height: calc(100% - 50px);
    box-shadow: 0 10px 10px 0 rgb(0 0 0 / 10%);

}
.NavigationMenuDiv ul {/*导航菜单内的所有菜单*/
    list-style:none;
    padding:0px;
}
.Menu-Item { /*所有菜单项目*/
    padding:0;
}
.Menu-Item-a { /*项目标题*/
    padding: 10px 20px;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
    .Menu-Item-a:hover { /*项目标题-伪类*/

        background-color: rgb(0 0 0 / 5%);
    }
.Menu-Item-ul { /*子菜单*/
    overflow: hidden;
    background-color: rgb(0 0 0 / 5%);
    transition:height 0.4s;
    height:0px;
}

/*网页主题body*/
.ViewContent {
    min-height: calc(100% - 50px - 60px);
}

/*底部内容*/
.BottomContent {
    height: 60px;
    line-height: 32px;
    text-align: center;
    font-size: 12px;
    color: #495770;
}

/*底部内容*/
    .BottomContent a {
        font-size: 12px;
        color: #495770;
    }

    .BottomContent a:hover {
        color: #3964b2;
    }