#main-menu {
    height: 90px;
    /*border-bottom: 2px solid #e6e9ee;*/
}

#main-menu > div {
    display: table;
    margin-left: 150px;
    margin-right: 150px;
}
#main-menu > div > div{
    display: table-cell;
}

#main-menu .logo {
    width: 212px;
    height: 100%;
    line-height: 90px;
    /*background-color: aliceblue;*/
    margin-right: 20px;
    cursor: pointer;
}
#main-menu .logo img{
    width: 100%;
    margin-bottom: 15px;
}

#main-menu .menu-list {
    display: flex;
    width: 750px;
    height: 88px;
    margin-left: 60px;
    position: relative;
}
#main-menu .menu-list .menu {
    width: 25%;
    text-align: center;
    height: 88px;
    line-height: 90px;
    font-size: 1.1rem;
    cursor: pointer;
}
#main-menu .menu-list .menu.selected,
#main-menu .menu-list .menu:hover {
    font-weight: bold;
    color: rgba(35, 118, 173, 1);
    /*border-bottom: 6px solid rgba(35, 118, 173, 1);*/
}


#main-menu .menu-list-detail.hide {
    display: none;
}
#main-menu .menu-list-detail {
    display: table;
    position: absolute;
    top: 80px;
    padding-top: 5px;
    /*left: -25px;*/
    width: 100%;
    background-color: white;
    z-index: 1000;
    -webkit-box-shadow: 1px 8px 6px 1px rgba(0,0,0,0.26);
    box-shadow: 1px 8px 6px 1px rgba(0,0,0,0.26);
    /*border-left: 1px solid #e6e9ee;*/
    /*border-bottom: 1px solid #e6e9ee;*/
    /*border-right: 1px solid #e6e9ee;*/
}
#main-menu .menu-list-detail > div{
    display: table-cell;
    width: 25%;
}
#main-menu .menu-list-detail > div > div{
    font-size: .95rem;
    height: 50px;
    text-align: center;
    cursor: pointer;
}
#main-menu .menu-list-detail > div > div:hover{
    color: rgba(35, 118, 173, 1);
}



#user-info {
    text-align: right;
    position: absolute;
    top: 0;
    right: 100px;
    width: 200px;
    height: 90px;
}
#user-info .user {
    display: none;
    height: 88px;
    line-height: 94px;
}
#user-info .user i {
    color: rgba(35, 118, 173, 1);
}
#user-info .user .user-name{
    font-weight: bold;
    color: #333;
}
#user-info .user .logout{
    margin-left: 24px;
    color: gray;
    cursor: pointer;
}
#user-info .login {
    display: none;
    height: 88px;
}
#user-info .login button {
    padding: 5px 15px;
    background-color: transparent;
    color: rgba(35, 118, 173, 1);
    border: 2px solid rgba(35, 118, 173, 0.2);
    border-radius: 5px;
    margin-top: 30px;
}
#user-info .login button:hover{
    background-color: rgba(35, 118, 173, 0.9);
    color: white;
    border: 2px solid rgba(35, 118, 173, 1);
}

#login-popup {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
#login-popup .window{
    position: relative;
    width: 500px;
    padding: 30px 40px;
    background-color: white;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}
#login-popup .window .close {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
#login-popup .window > div{
    height: 70px;
    text-align: center;
}
#login-popup .window > div.logo{
    height: 100px;
}
#login-popup .window img{
    height: 60px;
}
#login-popup .window > div input{
    height: 55px;
    width: 100%;
    border: 1px solid lightgrey;
    font-size: 1rem;
    padding-left: 10px;
}
#login-popup .window button {
    height: 60px;
    width: 100%;
    background-color: rgba(35, 118, 173, 1);
    color: white;
    border: 1px solid rgba(35, 118, 173, 1);
}
#login-popup .window .functions {
    line-height: 60px;
    font-size: 1rem;
}
#login-popup .window .functions span{
    color: gray;
    cursor: pointer;
}
#login-popup .window .functions span:hover{
    font-weight: bold;
}
#login-popup .window .functions span:nth-child(2){
    color: lightgrey;
    cursor: default;
    padding-left:10px;
    padding-right:10px;
}
#login-popup .window .functions span:nth-child(2):hover{
    font-weight: normal;
}



