nav {
    width: 100%;
    height: 50px;
    min-width: 1400px;
    background-color: #0E6EBB;
    margin-top: 3px;
    line-height: 50px;
    color: #fff;
    font-size: 18px;
    position: fixed;
    top: 95px;
    z-index:1000;

}

nav::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}

nav .menuul {
    margin: 0 auto;
    width: 1400PX;
    padding: 0;
}

nav a {
    color: #fff;
}

nav .nav-link-no-color:active {
    color: #fff;
    text-decoration: none;
}

nav .nav-link-no-color:hover {
    color: #fff;
    text-decoration: none;
}

nav>ul>li {
    float: left;
    overflow: hidden;
    text-align: center;
    width: 150px;
    border-left: 1px solid #bbb;
}

nav>ul>li:last-child {
    float: right;
    width: 300px;
    text-align: right;
    border-left: 0;
}

nav>ul>li>ul {
    width: 150px;
    font-size: 16px;
    z-index: 100;
    position: absolute;
    display: none;
}

nav>ul>li>ul li {
    background-color: #E2F0FB;
    border: #fff 1px solid;
}

nav .show-list-body {
    width: 150px;
    font-size: 16px;
    z-index: 100;
    position: absolute;
    left: 150px;
    top: 0;
    display: none;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
}

nav .show-list-body a,
nav .show-list a {
    font-size: 13px;
}

nav .show-list {
    position: relative;
}

nav img {
    height: 30px;
    vertical-align: middle;
}